Answer:
Remote Desktop
Explanation:
This is a software, that enable you to connect with a remote computer with all access. e.g. Team Viewer
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.
Answer:
folders
Explanation:
it is a very good way to keep your desktop organized and keep tidy
Answer:A
Explanation:Conceptual notetaking is the act of writing down information in the order it is given.