C++ MCQ -7

Question 1

A variable is/are

a.    String that varies during program execution

b.    A portion of memory to store a determined value

c.    Those numbers that are frequently required in programs

d.    None of these

 
Question 2

Which of the following can not be used as identifiers?

a.    Letters

b.    Digits

c.    Underscores

d.    Spaces

Question 3

Which of the following identifiers is invalid?

a.    papername

b.    writername

c.    typename

d.    printname

Question 4

Which of the following can not be used as valid identifier?

a.    bitand

b.    bittand

c.    biand

d.    band

Question 5

The difference between x and ΓÇÿxΓÇÖ is

a.    The first one refers to a variable whose identifier is x and the second one refers to the character constant x

b.    The first one is a character constant x and second one is the string literal x

c.    Both are same

d.    None of above

Question 6

Which of the following is not a valid escape code?

a.    \t

b.    \v

c.    \f

d.    \w

Question 7

Which of the following statement is true?

a.    String Literals can extend to more than a single line of code by putting a backslash sign at the end of each unfinished line.

b.    You can also concatenate several string constants separating them by one or several blank spaces, tabulators, newline or any other valid blank character

c.    If we want the string literal to explicitly made of wide characters, we can precede the constant with the L prefix

d.    All of above

Question 8

Regarding #difine which of the following statement is false?

a.    It is not C++ statement but the directive for the preprocessor

b.    This does not require a semicolon at the end of line

c.    It is a C++ statement that declares a constant in C++

d.    None of the above

Question 9

Regarding following statement  which of the statements is true?

const int pathwidth=100;

a.    Declares a variable pathwidth with 100 as its initial value

b.    Declares a construction pathwidth with 100 as its initial value

c.    Declares a constant pathwidth whose value will be 100

d.    Constructs an integer type variable with pathwidth as identifier and 100 as value

Question 10

In an assignment statement

a.    The lvalue must always be a variable

b.    The rvalue might be a constant, a variable, an expression or any combination of these
c.    The assignment always takes place from right to left and never the other way

d.    All of above

Answers

1.     b. A portion of memory to store a determined value

2.     d.  Spaces

3.     c. Typename

4.     a. Bitand

5.     a. The first one refers to a variable whose identifier is x and the second one refers to the character constant x

6.     d. \w

7.     d. All of above

8.     c. It is a C++ statement that declares a constant in C++

9.    c. Declares a constant pathwidth whose value will be 100

10. d. All of above

Similar Posts

  • C++ MCQ-11

    Q.31  Use of virtual functions implies (A)  overloading.  (B)  overriding. (C)  static binding.  (D)  dynamic binding. Ans: D   Q.32   this pointer      (A)  implicitly points to an object.    (B)  can be explicitly used in a class. (C)  can be used to return an object.   (D)  All of the above.    Ans: D…

  • C++ MCQ-16

    Q.91   What will be the result of the expression 13 & 25? (A) 38  (B)  25 (C)  9  (D)  12      Ans:C  Q.92   Which of the following operator can be overloaded through friend function? (A)  ->   (B)  = (C)  ( )   (D)  *        Ans:D   Q.93  To access the public function…

  • C++ MCQ -8

    Question 1 Identify the correct statement a. Programmer can use comments to include short explanations within the source code itself. b. All lines beginning with two slash signs are considered comments. c. Comments very important effect on the behaviour of the program d. both   Question 2 The directives for the preprocessors begin with a.   …

  • C++ MCQ-15

    Q.76   Which of the following expressions is illegal? (A)  ( ) 6 10 .  (B)  (false && true) (C)  bool (x) = (bool)10;  (D)  float y = 12.67;       Ans:C   Q.77  The actual source code for implementing a template function is created when   (A) The declaration of function appears. (B) The…

  • C++ MCQ-12

    Q.1   The address of a variable temp of type float is          (A) *temp  (B) &temp     (C) float& temp  (D) float temp&     Ans: B   Q.2   What is the output of the following code           char symbol[3]={ΓÇÿaΓÇÖ,ΓÇÿbΓÇÖ,ΓÇÿcΓÇÖ};            for (int index=0; index<3; index++)         cout << symbol…

  • C++ MCQ -9

    Question 1: A function can not be overloaded only by its return type. a. True b. False   Question 2: A function can be overloaded with a different return type if it has all the parameters same. a. True b. False   Question 3: Inline functions involves some additional overhead in running time. a. True…

Leave a Reply

Your email address will not be published. Required fields are marked *