In PowerPoint terms, shapes include lines, rectangles, stars, and more.

Answer the following statement true (T) or false (F)


True

Computer Science & Information Technology

You might also like to view...

From the above code - which function call sets the size to 19?

``` class Television { private: int size, model; string make; public: Television() {size= 27; model = 2; make = “RCA”;} void SetSize(int s){size = s;} void SetModel(int mo){model = mo;} void SetMake(string ma){make = ma;} }; int main() { Television TV; return 0; } ``` A. TV.setSize(19); B. TV.SetSize(19.5); C. TV.SetSize(19); D. TV.size is a private variable, it cannot be set this way.

Computer Science & Information Technology

________ is a good way to create a table when you know exactly how you want to set up your fields

A) Form view B) Layout view C) Datasheet view D) Design view

Computer Science & Information Technology

A(n) ____ gives us information about how the method works.

A. method header B. constructor C. parameter D. instance variable

Computer Science & Information Technology

Cell A2 contains the regular price $100. Cell B2 contains the discount rate 15%. Cell C3 contains =A2*(1-B2) to calculate the sale price of $85. Which of the following formulas produces the same result?

What will be an ideal response?

Computer Science & Information Technology