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

1. The base class access specification can be viewed as a filter that base class members must pass through when becoming inherited members of a derived class.
2. When arguments must be passed to the base class constructor, they are passed from the derived class constructor's header line.
3. A base class cannot contain a pointer to one of its derived classes.
4. To declare a C-string, you should use the type expression string *.


1. TRUE
2. TRUE
3. TRUE
4. FALSE

Computer Science & Information Technology

You might also like to view...

Suppose you would like your code to perform several tasks: Use a For…Next loop with an InputBox to prompt the user four times for the price of four different T-shirts, then display each shirt price with a 25% discount in the ListBox lstResult. Which of the following code segments correctly performs these tasks?

a. ```Dim intIndex As Integer Dim sngPrice, sngDiscountPrice As Single For intIndex = 1 To 4 sngPrice = CSng(InputBox("Enter price of shirt " & intIndex.ToString)) sngDiscountPrice = sngPrice * 0.75 lstResult.Items.Add(sngDiscountPrice) Next ``` b. ```Dim intIndex As Integer Dim sngPrice, sngDiscountPrice As Single For intIndex = 0 To 4 sngPrice = CSng(InputBox("Enter price of shirt " & intIndex.ToString)) sngDiscountPrice = sngPrice - (.75 * sngPrice) Next lstResult.Items.Add(sngDiscountPrice) ``` c. ```Dim intIndex As Integer Dim sngPrice, sngDiscountPrice As Single For intIndex = 1 To 4 sngPrice = CSng(InputBox("Enter price of shirt " & intIndex.ToString)) sngDiscountPrice = sngPrice * (.25 - sngPrice) lstResult.Items.Add(sngDiscountPrice) Next ``` d. ```Dim intIndex As Integer Dim sngPrice, sngDiscountPrice As Single For intIndex = 0 To 4 sngPrice = CSng(InputBox("Enter price of shirt " & intIndex.ToString)) sngDiscountPrice = sngPrice * 0.25 lstResult.Items.Add(intIndex & " " & sngDiscountPrice) Next ```

Computer Science & Information Technology

An Excel ________ is a workbook that provides a starting point for building similar workbooks

A) outline B) template C) pattern D) master

Computer Science & Information Technology

ThecharAt()method can extract long text strings.

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

Computer Science & Information Technology

________ Analysis is the built-in tool which automatically builds a recommended pivot table based on your dataset.

What will be an ideal response?

Computer Science & Information Technology