C++
1 class Dog: public X, public Y is an instance of
2 Which of the following specifiers is NOT a format flag of a stream ?
3 Which of the following operators have the same precedence and group left of right ?
4 Which of the following mode arguments to the function open tells it not to create a file if the named file is not found ?
5 Which of the following operators has right to left associativity ?
6 Which of the following statement is TRUE in view of a private member of any given
class ?
7 Which of the following statements is TRUE ?
8 Identify the operator that cannot be overloaded in C++
9 Which of the following storage class specifiers can be used in the declaration of class members ?
10 Which of the following manipulators is not- parameterized ?
11 The function fwrite returns
12 A function which is automatically invoked when an object is created is known as
13 Which of the following statements is FALSE in view of polymorphism in C++
14 Assuming that n is an integer variable, identify a legal declaration of a reference from the following options
15 Which of the following operators cannot be overloaded ?
16 Which of the following statements is TRUE ?
17 Which of the following functions can be called before any objects are instantiated ?
18 Which of the following calls is one of the possible ways to change a stream's format flags ?
19 What is the maximum number of constructors a class may have ?
20 Which header file must be included to use the operator delete in a C++ program ?
21 Which of the following function prototype is in-correct ?
22 Which of the following statements is FALSE in view of reference ?
23 A derived class inherits all members of its base class, but can only use the
24 In C++, the keyword auto can be used for
25 Which of the following is a parameterized manipulator ?
26 An exception is processed using
27 Which of the following operator is used to access a structure member through a pointer ?
28 In n is initialized to 7, the expression n<<4>>3<<2 evaluates to
29 What is the return type of a constructor ?
30 When an object of a derived class is destroyed then
31 Let "i" be a public static integer member of a class "X" and "a","b" are objects of type "X". Which of the following statements is not a valid way to access "i" ?
32 A private member function of a class can be called by
33 A variable declared within a block { } has the following scope
34 C++ provides signed and unsigned character data type because
35 A value that is automatically passed to function when no explicit argument is specified in the function call is called
36 Reference to an object behaves like
37 Which of the following declarations of reference type variables is flawless ?
38 Which is true ?
39 Which is true ?
40 A function can
41 When a nonmember function needs to refer to instances of two different classes, then
42 A forward reference
43 When a function tries to access an object's private data member
44 The prototypes for all functions that are friends of a class are listed with the other function prototypes
45 A class may
46 you use data hiding when you create
47 Creating a class definition when one class is granting friendship to a function that is a member of another class requires first
48 If MyClass is a friend of Your-Class, which is true ?
49 If MissysClass is a friend of HarryClass, then which is true ?
50 You need to multiply two private data members of two separate objects that are of the same class. You would
51 When you declare a member of another class to be a friend, you must use
52 You need to display two private data members from one object of a class. You would
53 Forcing a variable type to become another type before accessing an appropriate function is known as
54 Without overloading of the +operator,
55
56 The name of the operator function that overloads the * symbol is
57 Assuming you have properly overloaded the
*operator to perform multiplication for a Number class, and that a,b and c are three members of the Number class, which expression is legal ?
58 Which of the following is the best function prototype for an overloaded -- for a Number class ?
59 When you overload an operator for use with you classes, you
60 When you overload operators, you may change
61 Assuming you have properly overloaded the ! Operator for a Number class, and that a and b are two members of the Number class, which expression is legal ?
62 if the >> operator is overloaded properly for use for input with a Number class, and a and b are member of the Number class, which of the following statements is allowed ?
63 If the << operator has been overloaded appropriately for the class Number, and a and b are members of the Number class, then which statement is legal ?
64 Which of the following is the best prototype to overload the << operator for a Number class ?
65 If the subscript operator has been correctly overloaded for a Number class to accept an integer value, and num is a member of the number class, which of the following statements is correct ?
66 Which of the following statement is true ?
67 When the >> operator is overloaded for input, one parameter that should be passed to the function is a
68 If you use a filename as an argument when calling an ofstream constructor,
69 In the statement if (x) cout<<"File opened!",, X must be a
70 If you create an array of objects, the write( ) function can work with
71 if you don't provide a filename as an argument when you instantiate an ofstream object then
72 Inheritance is the principle that
73 To be called object-oriented, a programming language must allow
74 Which is a correct class definition for class Child, which inherits from Mother and Father classes ?
75 You may override the class access specifier for
76 The prototype for a derived class constructor may include arguments for
77 A default constructor
78 If you want to override constructor default values for an object you are instantiating, you must also override
79 Reference variables and const class member
80 In heritance is a way to
81 In an exception is thrown and no catch block matches the type of the thrown parameter, then
82 If two types of errors may be thrown, you should write
83 A function can make
84 The primary purpose of exception specification is
85 A default exception block must be placed
86 The program can access the private members of the class
87 To hide a data member from the program, you must declare the data member in the
section of the class
88 The best-written classes have
89 If you declare two objects as Customer firstCust, secondCust: which of the following must be true
90 The feature in object-oriented programming that allows the same operation to be carried out differently, depending on the object, is
91 The function printDataMembers( ) is most likely a(n)
92 Which of the following is a good guideline for creating function names ?
93 A function's purpose is to print customer data. Which of the following is the best name for this function ?
94 Reserving memory during program execution is known as reserving it
95 With communicational cohesion
96 Which of the following is true ?
97 If a derived class uses the public access specifier, then
98 When a class serves as a base class to others,
99 Which of the following constructor function prototypes would be correct in the declaration section of a class named Product that contains one data member, prodNum ?
100 The most common operation used in constructors is
101 A constructor initialization list is preceded by
102 The statement double total = 0.0; performs
103 Static variables are sometimes called
104 you must precede the destructor name with
105 The dot operator (or class member access operator) connects the following two entities (reading from left to right):
106 When you create a derived class and instantiate on object
107 Advantages of inheritance include
108 A derived class override attributes of a parent class
109 A function in a derived class that has the same name as a function in the parent class
110 Before object-oriented exception handling was practiced
111 One drawback to returning an error code from a function is
112 The difference between a return and a throw is that
113 The general principle underlying object- oriented error handling is that a called function should
114 Another drawback to returning an error code from a function is that any error code returned by the function
115 If a class object is thrown with a throw statement, then a subsequent catch block has a usable match if the type of the catch argument is
116 Any exception specification appears in
117 When the function int someFunction(char c) throw( ) is executed,
118 If you want to use a class to define objects in many different programs, you should define the class in a C++ file
119 The name of the constructor function for a class named animal is
120 Which of the following creates an animal object named dog ?
121 Which of the following tells C++ that the displayBreed function is a member of the animal class ?
122 You place the constructor's prototype in the section of the class
123 Making class members inaccessible to nonmember functions is an example of
124 Which (if any) of the following is NOT a programmer-defined type ?
125 To use the this pointer with a member function, you
126 An auxiliary function
127 A data member holds a 1 or 0 depending on whether taxes have been paid. The best identifier for this member is
128 Many programmers separate a class into two files:
129 C++ allows you to define the same functions more than once in the same program
130 If you create a class named SaleItem and each instantiation of the class requires 50 bytes, which of the following allocates enough memory for one SaleItem object, assuming that ptr is properly defined ?
131 Procedural cohesion is similar to sequential cohesion, except that with procedural cohesion
132 The best functions have
133 Which of the following statements is true ?
134 The weakest form of cohesion is
135 The code class Desendant : virtual public Ancestor indicates that
136 A program that predicts the exact sequence in which events will take place is said to be
137 Which of the following are good reasons to use an object-oriented language
138 When two types are used in a function template and one is labeled T, the other
139 The compiler determines the type uses in a template function via
140 Each generic type in a template function definition is preceded by the keyword
141 If you create an instantiation of a class template with an int, and then create a second instantiation with a double, then
142 With a template class, type is generic
143 Variable names known only to the procedure in which they are declared are
144 Paying attention to the important properties while ignoring inessential details is know as
145 In C++, a function contained within a class is called
146 You overload function templates
147 Function templates
148 Before you code a template function, you include a
149 A function that is prototyped as double calculate(int num); may
150 Overloading involves writing two or more functions with
151 A major advantage of inheritance is
152 The rules to any programming language are its
153 If container classes are carefully constructed, then these tools are available to work with structures that are not
154 A function that can access private members of a class, even though it is not a member of the class itself, is
155 In C++ a function contained within a class is called
156 the break statement causes an exit
157 A list of data items, usually words or bytes, with the accessing restriction that elements can be added or removed at one end of the list only, is known as
158 Consider a linked list of n elements. What is the time taken to insert an element after an element pointed by some pointer ?
159 Which of the following sorting method is stable?
160 A widget is to the blueprint for a widget as an object is to
161 A search procedure whichassociates an address with a key value and provides a mechanism for dealing withtwo or more values assigned to the same address is called
162 A variable defined within a block is visible
163 The liabrary function exit() causes an exit from
164 The extra key inserted at the end of the array is called a
165 The function scanf() reads
166 The basic unit of informatiion is the
167 The most widely used method for interpreting bit settings as nonnegative integers is the
168 The method used by computers to represent real number is
169 The vaiables which can be accessed by all modules in a program, are known as
170 The postfix from of (A+B)*C is
171 The goto statement causes control to go to
172 The postfix form of A-B/(C*D$E) is
173 The prefix form of A-B/(C*D$E) is
174 The prefix of (A+B) *(C-D) is
175 A sort whichrelatively passwes through a list to exchange the first element withany element less than if and then repeats with a new first element is called
176 A sort which compares adjacent elements in a list and swithces where necessary is a
177 A characertistic of the data that binary search uses but the linear search ignores is the
178 The postfix form of A+(B*C) is
179 the directive required in any program that useseither cin or cout is;
180 Which of the following is a valid identifier?
181 Write a single C++ statement that subracts the sum of x and y from z and then increments y.
182 Write a single C++ statement that decrementsthe variable h and then adds it tio total
183 In m *= n ++; expressioin, assume that m ahs the value 5 and n has the value 2 before the statement executes. Tell what the the values of m and n will be after the statement executes.
184 The most C++ progtrammers
185 The symbols used with input stream cin I.e. "console input" are:
186 If you wanted to sort many large objects or structutres it would be most efficient to
187 In C++ programming, which of the following operator is used for "not equal to"
188 The function abort() is declare in the header file
189 The fput() function is declare in the header file
190 The function isalpha() is declare in the header file
191 In m +=--n; expression assume that ma has the value 5 and n has the value 2 before the statement executes. Tell what the values of m andn will be after the statement executes.
192 A default arguments hasa value that
193 When according a structure members, the identifier to the left of the dot operator is the name of
194 A function's single most important role is to
195 A function argument is
196 Which of the following is not a valid identifier?
197 The expression *test can be said to
198 The type of variable a pointer points to mustbe part of gthe pointer's definition so that
199 The first element in a string is
200 The new operator
201 In a linked list
202 In linked lists with multiple pointers,
203 The comma operator(,) is primarily used in conjunction with
204 The 'continue' statement is used to
205 The traditional way to create an infinite loop in C is
206 The difference between the declaration of an external variable and its definition is
207 The comma operator(,) is used to
208 In the library of standard I/O function definitions, data structure of a file is defined as
209 In a circular linked list
210 The malloc () function
211 While incrementing a pointer, its values get increased by the length of the dta type to which its points. This length is called
212 The process of calling a function using pointers to pass the addresses of variable is known as
213 C inclueds two types of modifiers(access modifiers) that affect the way variables are accessed by both user's program and the compiler. These modifiers are
214 Which one of the following I/O functions can be used to write a set of data values to a file?
215 The function ftell()
216 The operators<< (left shift) and >> (right shift) are
217 Which of the folowing is not a linked data structure?
218 Any program in c has access to three standard files:
219 A single character input from the keyboard can be obtained by using the function
220 The string containing certain required formatting information is called
221 'The' meaning of conversion character h for data input is
222 The conversion character for data input which indicates that the data item is a floating-point value is
223 The conversion character 'i' for data output means that the data item is displayed as
224 In printf()' the appearance of the output can be affected by
225 The advantage of a 'switch' statement over an 'else-if'
226 The general form of the conditional expression is
227 In which statement does a to directly to the test condition and then conditue the loopeing process?
228 In C, the NULL statement which does nothing is just
229 The general form of do while statement is
230 The two statements that can be used to change the flow of control are
231 In a simple 'if' statement with no 'else' what happens 9 if he condition following the 'if' is fasle
232 A while loop is more appropriate than a for loop when
233 The statement following else in an 'if -else' construct are executed when
234 The newline character is always included between
235 Which of the following statements is incorrect for the gets() and put () functions?
236 If c and y are int type of variables and y is a member of astructure x, then the statement c=x.(y);
237 in the following pair of statement in a program char x; x-65;
238 If a =5 and b=7 then the statement p= (a>):a?b;
239 Between an if statement and the corresponding else clausem we should have
240 The number of relational operator in C language is
241 The switch variable can be of
242 The function that sets the position to desired point in the file is
243 An array of structures is
244 The following statement where T is true and F is false T&&T II F&&T
245 Auto type of variables
246 The global variables by default belong to
247 The scope of a variable is
248 In the following declaration enum metal
{ gold=2, silver, brass iron}; brass represents the value
249 The void type of variable
250 We can declare thefollowing type of variable as the extern variables
251 Typedef is a
252 The use of the break statement in a switch statement is
253 The symbol for the address operator is
254 If a printf() function contains more than one control strings
255 One of the valied escape sequences used in C language
256 The include the double quotes as part of the control sring we use the symbol
257 The int tyupe of constants are whole numbers in the range
258 The lvalue is the value
259 Out of the following, thecorrect name of a variable of the int type is
260 The conversion specification for int type of data is
261 The tetchar function is used to
262 The first argument of a scamf()function is
263 The outcome of a false statement is
264 The preprocessor directive always ends with
265 The cast operator for the float type is
266 The print a percent % sign in the control string we use symbol
267 In the C language, the Character type of constant is delimited by using
268 If p=5 and q=6 then the following expression p<-q
269 One of the logical operators in the C language is represented by the symbol
270 An expresion contains relationsal, assignemnt and arithmetic operators. In the absence of prentheses, the order of evaluation will be
271 The conversion specification is
272 In C, how many parameters can be passed to a function?
273 All of the following are disadvantage of RPG except
274 Which of the following is not one of the processes that a high-level langauage program must go through before it is ready tobe exectued?
275 Which of the following is not true of FORTRON
276 All of the following are division of the COBOL program except
277 In C Programming language, which of the following type of operators have the highest precedence
278 In C, What is the the effect of a negative number in a field width specifier?
279 In C language, the bit wise operators can c applied to which of the following operands
280 One disadvantage of a direct access file is
281 In C, what would be the effect of passing a parameter of type float to a function whose dummy parameter is declared tobe type int
282 Which of the following statements provide a means of immediately terminating the execution of a loop?
283 C Programming langage provides operations which deal directly with object such
284 C programming language by itself provides
285 Which of the following are not provided inC
286 Which of the following relational operators in C means " not equal to"?
287 The values that can legally appear to the right of the assignment operator are called
288 In C programming lanuage, if the first and the second operands of operator+are of types int and float, respectively, the result will be of type
289 Write a statement to do the following " Make list point to empy list"
290 Convert the following infix expression to postfix notation ((A+2)*(B+4))-1
291 Which fo the followng can describe as a pointer
292 Which of the following can be describe as a array?
293 Which of the following can be describe as an integer?
294 Which of the following is most oriented to scientific programming?
295 Write a statement to dothe following "make list point to the node containing 45"
296 All computer execute
297 Write a statement to do the following "set the key value of the node containing 45 to 46"
298 Electronic speradsheets are most useful in a situation where relatively data must be input, and but calculations are required
299 The two basic types of record-access method are
300 Sequential file organisation is most appropriate for which of following applications?
301 Which of the following file organisationis most efficient for a file with a high degree of file activitiy?
302 The language generally used for scientific engineering and mathematical engineering
303 Whichof the following can be describe as a pointer?
304 The statement i*-3 is equivalent to
305 Declaring varibales is advantageous because it
306 A comment
307 The first digit of a decimal constant must be
308 Floating point numbers are used instead of integers to
309 Assume that your version of C can recognize only the first 8 character of an identifier name, though identifier names may be arbitrarily long. Which of the following identifier names is not distinet
310 Which of the following are valied characters constants?
311 In C language, if numbe of singel character information is being entered by means information is being entered by means the scant function, what symbols must precede the corresponding variable name?
312 A field width specifier in a printf() function
313 The math library is set up for the user by the file
314 Which of the following does not have an unary operator?
315 The library files that come with C are
316 Assume x,y and z are floating point variable and they have been assigned the values x=8.8, y=3.5and z=-5.2. The value of arithmetic expression 2*x/(3*y)is
317 The single character input/output functions are
318 Precedence determines which operator
319 A computer programming language often used by children is
320 Egoless programming means that
321 The computer langauge generally unsuitbale for a programmers is
322 What is no true about FORTRAN
323 The statement for I - I to N' belongs to the language
324 Which of the following langauge uses Do Statement to create a loop
325 Which of the following is not a very useful langauge for business applications
326 # directives must be present
327 Programs written in COBOL are organised into
328 An identifier in C
329 A required entry within the IDENTIFICATION DIVISION IS
330 The READ INTO statement involves
331 Almost every c program begins with the statement
332 The commands that send or "redirect" output of a program to a disk file or another system device such as the printer are
333 The structured data types that are built in to Pascal are:
334 Two computer programs A and B give same results. A takes much more time to execute
335 Arrays can be initialized provided they are
336 Arrays are passed as arguments to a function by
337 Which of the fillowing statements is true after execution of the program
int a[10], I, *p; a[0] = 1;
a[1] = 2;
p = a (*p)++;
338 It is necessary to declare the type of a function in the calling program if
339 The declaration void function1(int) indicates the function1 is a function which
340 Recursive functions are executed in a
341 When a function is recursively called, all automatic variables
342 A static variable is one
343 An external variable is one
344 Consider the following program fragment main( )
{
int a,b,c; b=2 a=2*(b++); c=2*(++b);
}
which one of the given answers is correct?
345 Given the following program fragment, which one of the alternatives is correct? main()
{
char status; int balance;
balance=1000; status=(balance>=1000)? 'C' : 'O';
}
346 What will be value of count after the following program is executed?
Main()
{
int count, digit=0; count=1; while(digit<=9){ printf("%d\n,++count);
++digit:}
}
347 If the following loop is implemented
{int num; num=0;
do {- - num;
printf("%",num); num++;
}while (num > 0)
}
348 What is the final value of digit? Main()
{
int digit;
for (digit=0; digit<=9;++digit) printf("%d\n",digit);
digit=2*digit;
--digit;
}
349 What is the final value of sum? Main()
{
int sum=1;
for (;sum <=9;)
printf("%d\n,++sum);
}
350 What is the value of variable POLYGON? Main( )
{
int POLYGON,L, B; L=B=2;
POLYGON=(L==b)?1:0;
}
351 # define max(x,y)x=(x>y)?x:y is a macro defination. Which can find the maximum of two numbers x and y if
352 Consider the macro definitions
#define square(x) x*x
and # define square (x) (x*x)
when used in a program statement B= ++ square(C)
353 #define two(x) 2*x
#define ddouble(x) x+x main()
{
int num,sum,product; num=1;
sum=-two(num); -sum; product=-ddouble(num); priintf("%d%d\n", sum,(product);
}
The output of the above program is
354 The following program fragment
{
int sum,index; index=50; while(index>=0) {
sum=sum/index;
-index;
}
}
355 main()
{
float balance, loan; balance = 1000.0; laon=balance/10;
if((balance>500) || (loan<500)) printf("good account\n"); if(balance,500) || (loan<500)
printf("caution !\n");
}
What is the output of ht above program?
356 The following lines, if included in a program, will cause one of the following errors, Indicate the correct one.
{double c;
scanf("%c",c);
}
357 A "switch" statement is used do
358 If the following variables are set to the values as shown below, then what is the value of the expression following it? answer=2;
marks=10;
!((anser<5) || 9marks>2))
359 What is the following program doing? main( )
{
int digit=0; do
printf("%d\n".digit++); while (digit<=9);
360 Consider the program fragment switch (choice){
case 'R' : printf("RED");
case 'W' : printf("WHITE");
case 'B' : printf("BLUE"); dafult' : printf("ERROR");
break;
}
What would be the output if choice ='R'?
361 If c is a variable initialised to 1, how many times will the following loop be executed? While((c>0)&&(c<60)){
loop body c++;}
362 The statement # include is written at the top of a program to indicate
363 if x and y are variables as declared below double x = 0.005, y=-0.01;
What is the value of ceil(x+y), where ceil is a function to computing ceiling of a number?
364 The for statement which can precede a loop to be executed 50 times or till a boolean variable "found" becomes false is given by
365 The declarations
typedef float height [100]; heigh men, women;
366 Consider the following declarations typedef strut{
char name[20];
char middlename[5]; char surname[20];
}NAME
NAME class [20];
367 what would be the values assigned to a,b,c if the statement scanf("%d %d %d",
&a,&b,&c) is extended with inpur data item 123456?
368 What would be the values assigned to a,b and c if the statement scanf("%3d,%3d,% 3d", &a,&b,&c) is executed with inputn data as 1234b5678b9(b denotes blank)?
369 What would be the values of i, x and c if scanf("%3d, %5f, %c",&I, &x, &c) is executed with input data 10b256.875bT ?
370 What would be the assignments if char s[100]; int d; float f;
scanf("%s, %*d, %f, s &d, &f) is executed with input data fastner b12345b5
371 What would be the output of the following program fragment?
{
int I=12345;
float x=145.678; printf("3d,%5d,%8d",,i,i,i);
}
372 The function fprintf is used in a program
373 In the following satement
fprintf(fpt, "%n",I), the variables fpt is
374 Consider the following declaration stru list{
int x;
struct list *next;
}*head;
The statement head.x=100
375 How many times will the following loop be executed?
C1='a';
while (c1>='a' && c1<='z')
{ c1++;
}
376 What is the following function computing? Test(n)
int n;
{
int I;
long int prod =1; if (n>1)
for (I=2; I<=n;I++)
prod * =I; return(prod);
}
377 What is the following function doing? test(a,b)
int a,b;
{
int z=(abs(a)>=abs(b)) ? a:b; return (z);
}
378 void summation(n) int n;
{
int I; sum =0; I=1;
for (I=1;I<=n;I++)
sum +=1;
}
The above program returns
379 void Test(void)
{
char c;
if ((c=getchar()!=EOLN) Tes t(); putchar©;
return;
}
The above function
380 What will be the output of the following program?
{
int I=1234; j=0177, k=0xa08c; printf("%8d %80x\n",I,j,k);
}
381 What is the following function doing ? Main ()
{
char line [80]; gets (line); puts (line);
}
382 If i,j,k are integers, the scanf function to enter i,j,k such that i is decimal, j is octal and k is hexadecimal would be
383 How many times will the following loop be executed if the input data item is 01234? Whil (c=getchar() ! =0) {
}
384 The declaration " unsigned u" indicates
385 A declaration "short int" is used for variables
386 In case of ordinary int variables
No comments