Answer:
Posts on FB can affect a person's professional identity.
Employers will expect to view your job history if you have a profile on Linkedin.
Explanation:
You don't need a tool to place images in Word. Simply paste them in your document.
Answer:
The solution code is written in Python:
- mystery_string = "Programming"
- output = ""
-
- for x in mystery_string:
- output += x
- print(output)
Explanation:
Firstly, create a variable mystery_string to hold a random string (Line 1).
Create an output variable to hold an output string (Line 2).
Create a for-loop to traverse the mystery_string character by character (Line 4). In the iteration, get a character from the mystery_string, and concatenate it with output string (Line 5). Print the output string (Line 6) before proceed to the next iteration.
R markdown notebook describes a notebook format in R programming which supports R programmers to run codes while also writing documents or explanation alongside. Hence, the missing option is Dashboard.
- R markdown may be compared to jupyter notebooks which also supports writing in markdown language.
- The R markdown notebooks can be created using the R studio, which allows the conversion notebooks of these notebooks into several different formats including the creation of dashboards.
Hence, R markdown notebooks can be converted to <em>HTML</em><em> </em><em> </em><em> </em><em>PDF</em><em>,</em><em> </em><em>word</em><em> </em><em>document</em><em>,</em><em> </em><em>slide</em><em> </em><em>presentation</em><em> </em><em>and</em><em> </em>dashboards.
Learn more :brainly.com/question/25575402