To change the author name, you click Options on the FILE tab and enter the new author name

Indicate whether the statement is true or false

FALSE

Computer Science & Information Technology

You might also like to view...

Data stored in ________ format contains no formatting such as bold or italics

Fill in the blank(s) with correct word

Computer Science & Information Technology

What is the output of the following code given the function definition below?

string word = “Hello”; mystery (word); cout << word; void mystery (string &p) // function definition { int size = p.length (); for (int c = 0; c < size; c++) p.insert(0, “*”); } a) Hello b) *Hello c) Hello***** d) *****Hello

Computer Science & Information Technology