Answer:
Explanation:
When working with different software such as Microsoft Word or Microsoft excel you can click Margins in the Page Setup group on the Page Layout tab and then click on Normal. This will auto adjust all the margins of the document in order to fit perfectly for on a standard printing page. The standard for printing paper is A4 size which measures 210mm x 297mm.
Answer:
<u>Create a small, collapsible navigation bar at the top of the home page so users can see new topics without scrolling</u>
Explanation:
By so doing the user experience on the website would be improved because, instead of struggling through several pages to read through discussion threads, they can simply click on the navigation bar and pick a discussion topic that interests them.
The TCP/IP protocol provides access to internally and externally I.e. The internet.
Answer:
The solution code is written in Python 3
1. output = ""
2. with open("text1.txt") as file:
3. data = file.readlines()
4.
5. for r in data:
6. output += r.upper()
7.
8. with open("text2.txt", "w") as file:
9. file.write(output)
Explanation:
Firstly, let's ready a variable output to hold the read data from the first text file (Line 1).
Next, use open function to create a file stream object and use its readlines() method to read all rows of data from text1 (Line 2 -3)
Next create a for loop to traverse through every row of the read data and use upper() function to change all characters in the current row to uppercase and append it to output variable.
Once the entire output string is ready, use open function again to create a file stream object but add "w" as second parameter of the open function (Line 8).
Lastly, use write method to copy the uppercase text held by the output variable, to the new file, text2 (Line 9).