Global knowledge is like common sense, people know these things, but their may be someone else with the same idea. One person can come up with the idea but their is also another with same so don't give someone to much credit.
Answer:
a. click on View, then ruler
Explanation:
If you want to add ruler to the document following is the procedure to do it:
Click on View.
Then check the ruler in the group called show.
You will get the ruler in your document.You can also remove it by unchecking the ruler box.
Ruler is used to measure and line up objects.
Hence the answer to this question is option A.
Answer:
The output is "<class 'str'> ".
Explanation:
In the given python code a print() function is defined. Inside this function, a type() function will use, in which a numeric value is passed in the double quotes (" ") as a function parameter. Double quotes are normally used for print value as a message but in this code, value is not printed because we use the type() function.
- The type() function Returns the parameter class type of the argument(object).
- This function is used for debugging. In this function, we pass a single parameter that will return the type of given object.