Explore topic-wise InterviewSolutions in Current Affairs.

This section includes 7 InterviewSolutions, each offering curated multiple-choice questions to sharpen your Current Affairs knowledge and support exam preparation. Choose a topic below to get started.

1.

How many integers are there between 1 and 100 which have 4 as a digit and also divisible by 4?1. 72. 113. 124. 13

Answer» Correct Answer - Option 1 : 7

Solution:

Numbers divisible by 4 between 1 to 100 are:

Out of these, numbers containing one digits as 4 are:

⇒ 4, 24, 40, 44, 48, 64, and 84.

∴ Total  number is 7.

2.

What is the largest 4-digit number that is divisible by each of 16, 24 and 28?1. 99142. 97643. 97444. 9864

Answer» Correct Answer - Option 3 : 9744

Given:

Numbers are 16, 24 and 28

Calculation:

Smallest 5 digit number = 10000

Now, we will have to find LCM of 16, 24 and 28 by prime factorization method

16 = 2 × 2 × 2 × 2

24 = 2 × 2 × 2 × 3

28 = 2 × 2 × 7

LCM = 2 × 2 × 2 × 2 × 3 × 7

⇒ 336

Now, after dividing 10000 by 336

10000 = 336 × 29 + 256

Required number = 10000 – 256

⇒ 9744

∴ The required number is 9744

3.

a) What is the output of the following program?# include void main ( ) {int a;a = 5+3*5; cout << a; } b) How do 9, ‘9’ and “9” differ in C++ program?

Answer»

(a) Here multiplication operation has more priority than addition. 

hence a = 5 + 15 = 20 

(b) Here 

9 is an interger 

‘9’ is an character 

“9” is a string

4.

A digit n > 3 is divisible by 3 but not divisible by 6. Which one of the following is divisible by 4?1. 2n2. 3n3. 2n + 44. 3n + 1

Answer» Correct Answer - Option 4 : 3n + 1

Given:

n is a number where n > 3 and divisible by 3 but not divisible by 6.

Calculation:

Let assume a number which satisfies above condition.

9 is divisible by 3 but not divisible by 6 and greater than 3.

Now, go through options.

Option 1)

⇒ 2 × 9 = 18

Not divisible by 4.

Option 2)

⇒ 3 × 9 = 27

Not divisible by 4.

Option 3)

⇒ 2 × 9 + 4 = 22

Not divisible by 4.

Option 4)

⇒ 3 × 9 + 1 = 28

Divivible by 4.

∴ Option 4) 3n + 1 is divisible by 4.

5.

Write a program to input a word(say COMPUTER) and create a triangle as follows. C C O C O M C O M P C O M P U C O M P U T C O M P U T E C O M P U T E R

Answer»

#include<iostream>

#include<cstring>//for strlen()

using namespace std; 

int main() 

charstr[20];

cout<<“enter a word(eg.COMPUTER):”; 

cin>>str; 

int ij;

for(i=0;i<strlen(str);i++) 

{

for(j=0;j<=i;j++)

cout<<str[j]<<“\t”;

cout<<endl; 

}

6.

Write a program to input a line of text and display the first characters of each word. Use only console I/O functions. For example, if the input is “Save Water, save Nature”, the output should be “SWSN”.

Answer»

#include<iostream>

#include<cstdio>

using namespace std; 

int main() 

int i;

charstr[80];

cout<<“Enter a string\n”; 

gets(str); 

if(str[0]!=32) 

cout<<str[0];

for(i=0;str[i]!=’\0′;i++) 

if(str[i]==32 && str[i+1]!=32) 

cout<<str[i+1];

}

7.

Write the difference between x = 5 and x ==5 in C++.

Answer»

x = 5 means the value 5 of the RHs is assigned to the LHS variable x . Here = is the assignment operator. But x ==5, ==this is the relational (comparison) operator. Here it checks whether the value of RHS is equal to the value of LHS and this expression returns a boolean value as a result. It is the equality operation.

8.

If 1 litre of water weighs 1 kg, then how many cubic millimetres of water will weigh 0.1 gm?1. 12. 103. 1004. 1000

Answer» Correct Answer - Option 3 : 100

Given:

1 liter = 1 kg

Concept used:

1 liter = 0.001 m3 = 1000000 mm3

Calculation:

⇒ 1 liter = 1 kg

⇒ 1 kg = 1000000 mm3

⇒ 1000 g = 1000000 mm3

⇒ 0.1 g = (1000000/10000) mm3

⇒ 0.1 g = 100 mm3

∴ 0.1 gram is equal to 100 cubic millimetres

9.

Describe in detail about the unformatted console I/O functions.

Answer»

1. Single character functions: This function is used to read or print a character at a time, 

(i) getchar(): 

It reads a character from the keyboard and

tore it in a character variable. 

eg: 

char ch; 

ch=getchar(); 

(ii) putchar(): 

This function is used to print a character on the screen. 

eg: 

char ch; 

ch = getchar(); 

putchar(ch);

2. String functions: This function is used to read or print a string. 

(i) gets(): 

This function is used to read a string from the keyboard and store it in a character variable. 

eg: 

charstr[80]; 

gets(str);

(ii) puts(): 

This function is used to display a string on the screen. 

eg: 

char str[80]; 

gets(str); 

puts(str);

10.

Write a program to count the number of words in a sentence.

Answer»

#include<iostream>

#include<cstdio>

using namespace std; 

int main() 

int i,words=1; 

char str[80];

cout<<“Enter a string\n”; 

gets(str); 

for(i=0;str[i]!=’\0′;i++) 

if(str[i]==32)

words++; 

cout<<“The number of words is “<<words; 

}

11.

Consider the following C++ statements : char word (20] cin&gt;&gt;word; cout&lt;&lt;word; gets(word);puts(word); If the string entered is “HAPPY NEW YEAR”, predict the output and justify your answer.

Answer»

cin>>word; 

cout<<word;

It displays “HAPPY” because cin takes characters upto the space. That is space is the delimiter for cin. The string after space is truncated. To resolve this use gets ( ) function. Because gets ( ) function reads character upto the enter key. 

Hence gets (word);

puts (word); 

Displays “HAPPY NEW YEAR”

12.

“With the same size we can change the sign and range of data”. Comment on this statement.

Answer»

With the help of type modifiers we can change the sign and range of data with same size. The important modifiers are signed, unsigned, long and short.

13.

A frog tries to come out of a dried well 4.5 m deep with slippery walls. Every time the frog jumps 30 cm, slides down 15 cm. What is the number of jumps required for the frog to come out of the well?1. 282. 293. 304. 31

Answer» Correct Answer - Option 2 : 29

Given:

Depth of well is 4.5 meter.

The frog jumps 30 cm but slides down 15 cm.

Formula used:

Total number of terms = (last term – first term)/difference

Calculation:

Let frog takes n jumps to climb the wall.

Actual distance covered by frog = 30 – 15 = 15 cm

After his last jump frog will climb the wall.

So, no sliding back for last 30 cm.

Now, we will subtract 30 cm from 450 cm to get sliding distance

⇒ n – 1 = (450 – 30)/15 

⇒ n – 1 = (420)/15 

⇒ n – 1 = 28

⇒ n = 29

∴ Frog will take 29 jumps to climb the wall.

14.

Write a program to input a string and replace all lowercase vowels by the corresponding uppercase letters.

Answer»

#include<iostream>

#include<cstdio>

using namespace std; 

int main() 

char str[100];

int i,

cout<<“Enter a string:”; 

gets(str); 

for(i=0;str[i]!=\0′;i++)

if(str[i]>=65 && str[i]<=90 || str[i]>= 97 && str[i]<=122) 

switch(str[i])

case ‘a’:

str[i] = str[i]-32; 

break; 

case ‘e’: 

str[i] = str[i]-32; 

break; 

case ‘i’: 

str[i] = str[i]-32;

break; 

case ‘o’:  

str[i] = str[i]-32; 

break; 

case ‘u’: 

str[i] = str[i]-32; 

cout<<str;

}

15.

Write a program to input a string and find the number of uppercase letters, lowercase letters, digits, special characters and white spaces.

Answer»

#include<iostream>

#include<cstdio>

using namespace std; 

int main() 

char line[100];

int i,digit=0, Ualpha=0, Lalpha=0, special=0, wspace=0; 

cout<<“Enter a string:”;

gets(str); 

for(i=0;str[i]!=’\0′;i++) 

if(str[i]>>=48 && str[i]<=57)

digit++;

else if(str[i]>65 && str[i]<=90)

Ualpha++; 

else if(str[i]>=97 && str[i]<=122) 

Lalpha++; 

else if(str[i]==’ ‘ || str[i]==’\t’) 

wspace++; 

else

special++; 

cout<<“The number of alphabets is “<<Ualpha+Lalpha<<

” the number of Uppercase letters is“<<Ualpha<< ” the number of Lowercase letters is “<<Lalpha<<” the number of digits is “<<digit<<” the special characters is“<<special<<” and the number of white spaces is “<<wspace; 

}

16.

Write a program to check whether a string is palindrome or not. 

Answer»

A string is said to be palindrome if it is the same as the string constituted by reversing the characters of the original string. 

eg: “MALAYALAM”, “MADAM”, “ARORA”, “DAD”, etc

#include<iostream> 

using namespace std;

int main() 

{

char str[40]; 

int len,i,j; 

cout<<“Enter a string:”; 

cin>>str;

for(len=0;str[len]!-\0′;len++); 

for(i=0,j=len-1;<ilen/2;i++,j–)

if(str[i]!=str[j]) 

break; 

if(i==len/2) . 

cout<<str<<” is palindrome”;

else

cout<<str<<” is not palindrome”; 

}

17.

....... function is used to copy a string to another variable. 

Answer»

strcpy(); function is used to copy a string to another variable.

18.

char ch; cout&lt;&lt;“Enter a character”;cin??ch; Consider the above code, a user gives 9 to the variable ‘ch’. Is there any problem? Is it valid?

Answer»

There is no problem and it is valid since 9 is a character. Any symbol from the key board is treated as a character.

19.

A frog was at the bottom of an 80 m deep well. It attempted to come out of it by jumping. In each jump, it covered 1.15 m but slipped down by 0.75 m. The number of jumps after which it would be out of the well is:1. 2002. 1983. 2014. 199

Answer» Correct Answer - Option 4 : 199

Given:

Depth of the well = 80 m

In each jump, the frog covered 1.15 m but slipped down by 0.75 m

Calculation:

Net distance covered by the frog in one jump = 1.15 – 0.75 = 0.4 m

So, total number of jumps = 80/0.4 = 200

But here, after 198 jumps, the distance covered = 0.4 × 198 = 79.2 meters

After the 199th jump, the distance covered = 79.2 + 1.15 = 80.35 meters

Also, the length of the well = 80 meters.

∴ After the 199th jump, the frog would be out of the well

Candidates often make a mistake by taking the number of jumps required as 200. But we had used that calculation only for reference to get an approximate figure of the number of jumps needed. However practically, the frog would be out of the well after the 199th jump only. 

20.

State whether the following statement is true or false. The ‘&lt;&lt;‘ insertion operator stops reading a string when it encounters a space.

Answer»

The statement is True.

21.

To read a string .......... function is used. (a) puts() (b) putchar() (c) gets() (d) getchar()

Answer»

To read a string gets() function is used.

22.

What will be the output of the following code if the user enter the value “GOOD MORNING”.1. char string [80]; gets(string); cout&lt;&lt;string;2. char string [80];cin&gt;&gt;string;cout&lt;&lt;string;3. charch; ch = getchar();cout&lt;&lt;ch;4. char string [80]; cin.getline(string,9);cout&lt;&lt;string;

Answer»

1. GOOD MORNING 

2. GOOD 

3. G 

4. GOOD MORN

23.

To print a string ....... function is used. (a) puts() (b) putchar() (c) gets() (d) getchar()

Answer»

To print a string puts() function is used.

24.

Arjun wants to read a string with spaces from the following which is suitable.(а) cin&gt;&gt; (b) cin.getline(str,80) (c) str = getc(stdin) (d) none of these

Answer»

(b) cin.getline(str,80)

25.

i. Franz saw a huge crowd assembled in front of the bulletin board, but did not stop. How would you evaluate his reaction? a) Franz was too little to care about the news of lost battles. b) Nobody in Franz’s family was in the army, so it did not matter. c) Bad news had become very normal, so he went about his task. d) It was too crowded for Franz to find out what news was up on the board. ii There was usually great bustle and noise when school began, but it was all very quiet. Which of the following describes Franz’ emotions most accurately? a) shock and awe b) disappointment and anxiety c) confusion and distress d) curiosity and uncertainty iii “I never saw him look so tall”. Which of the following best captures M. Hamel on the last day of school? a) cranky, miserable, dedicated, resigned b) patient, dignified, emotional, courageous c) calm, nostalgic, disappointed, patriotic d) proud, reproachful, persistent, heroiciv Look at the table below. Column A provides instances from the story ‘The Last Lesson’. Column B provides titles of some famous English language poems. Choose the option that correctly match items of Column A with Column B.Column AColumn B1. M. Hamel distributed new copies that loocked like litte french flags, adn ended the class with an emphatic " Vive La Francel"(i) 'Remose is memory awake' (Emily Dickinson)2. Hauser sat at the end of the class, thumbing his primer, desperately trying to learn with the children, even as he cried.(ii) ‘A House called Tomorrow’ (Alberto Rios)3. M. Hamel shared how Alsace always put off learning, and how its people always thought they had plenty of time.(iii) ‘For Whom the Bell Tolls’ (John Donne)4. Class ended when the churchclock struck twelve. And then the Angelus. Simultaneously, Prussian trumpets sounded under the school windows.(iv) ‘Do Not Go gentle into that Good night’ (Dylan Thomas)a) 1 – (i); 2 – (ii); 3 – (iii); 4 – (iv) b) 1 – (ii); 2 – (iii); 3 – (iv); 4 – (i) c) 1 – (iii); 2 – (iv); 3 – (i); 4 – (ii) d) 1 – (iv); 2 – (i); 3 – (ii); 4 – (iii)

Answer»

i – c ; 

ii – b ; 

iii – b ; 

iv – d

1. C

2. B

3. B

4. D
26.

Consider the following code snippet. main() { char str[80]; gets(str); for(int i=0. len=0;str[il!=’\0′;i++.len++); cout&lt;&lt;“The length of the string is ” &lt;&lt;len;}Select the equivalent for the under lined statement from the following (a) int len = strlen(str) (b) int len = strcmp(str) (c) int len = strcount(str) (d) None of these

Answer»

(a) int len = strlen(str)

27.

My breath was gone. I was frightened. Father laughed, but there was terror in my heart at the overpowering force of the waves.My introduction to the Y.M.CA. swimming pool revived unpleasant memories and stirred childish fears. But in a little while I gathered confidence. I paddled with my new water wings, watching the other boys and trying to learn by aping them. I did these two or three times on different days and was just beginning to feel at ease in the water when the misadventure happened.i. Choose the correct option with reference to the two statements given below Statement 1: the author’s father laughed to mock his son's inability to swim Statement 2: the author wanted to swim just to prove his father that he can swim a) Statement 1 is true but statement 2 is false b) Statement 1 is false but statement 2 is true c) Both statement 1 and statement 2 is cannot be inferred d) Both statement 1 and statement 2 is inferred ii. The misadventure that took place right after the author felt comfortable was that a) The author slipped and fell into the swimming pool b) A bully toasted him into the pool for the sake of fun c) His coaching forget to teach him how to handle deep Water d) His father couldn’t help him from drowning into the water iii. The chap that threw him into the pool was just for the sake of fun. Choose option mentioning the personality traits of this chap 1. Persuasive 2. Irresponsible 3. Domineering 4. Manipulative 5. Callous a) 1, 2, 4 b) 2, 4, 5 c) 2, 3, 5 d) 1, 3, 5 iv. What does the word ‘ape’ mean in the context? a) Emulate b) Primate c) Prototype d) None of these

Answer»

i. c) Both statement 1 and statement 2 is cannot be inferred

ii. b) A bully toasted him into the pool for the sake of fun

iii. c) 2, 3, 5

iv. a) Emulate

28.

“It is his karam, his destiny”. What is Mukesh’s family’s attitude towards their situation?

Answer»

Mukesh’s grandmother regards it as their destiny. She says that they were born in the caste of bangle-makers and have seen nothing but bangles in their lives. Mukesh’s family had mutely accepted it as their destiny and had stopped taking any initiative to change their fate.

29.

“I will learn to drive a car,” he answers, looking straight into my eyes. His dream looms like a mirage amidst the dust of streets that fill his town Firozabad, famous for its bangles. Every other family in Firozabad is engaged in making bangles. It is the centre of India’s glass-blowing industry where families have spent generations working around furnaces, wielding glass, making bangles for all the women in the land it seems. Mukesh’s family is among them. None of them know that it is illegal for children like him to work in the glass furnaces with high temperatures, in dingy cells without air and light; that the law, if enforced, could get him and all those 20,000 children out of the hot furnaces where they slog their daylight hours, often losing the brightness of their eyes. Mukesh’s eyes beam as he volunteers to take me home, which he proudly says is being rebuilt. i. The simile ‘dream looms like a mirage amidst the dust of streets’ indicates that his dream was a) a reality, yet seemed distant. b) lost in the sea of dust. c) illusory and indistinct. d) hanging in the dusty air. ii. ‘I will learn to drive a car,’ he answers, looking straight into my eyes. This sentence highlights Mukesh was 1. determined 2. fearless 3. hopeful 4. valiant 5. ambitious 6. stern a) 1 &amp; 5 b) 2 &amp; 4 c) 2 &amp; 5 d) 3 &amp; 6 iii. Which of the following statements is NOT TRUE with reference to the extract? a) Children work in badly lit and poorly ventilated furnaces. b) The children are unaware that it is forbidden by law to work in the furnaces. c) Children toil in the furnaces for hours which affects their eyesight. d) Firozabad has emerged as a nascent producer of bangles in the country. iv. Every other family in Firozabad is engaged in making bangles indicates that a) bangle making is the only industry that flourishes in Firozabad. b) the entire population of Firozabad is involved in bangle making. c) majority of the population in Firozabad is involved in bangle making. d) bangle making is the most loved occupation in Firozabad.

Answer»

i – c); 

ii - a); 

iii – d); 

iv – c)

30.

Predict the output of the following code snippet. #include&lt;cstdio&gt;int mainO { char name[ ] = “ADELINE”; for(int i=0; name[i]!=’\0′;i++) putchar(name[i]); }

Answer»

The output is “ADELINE”.

31.

Explain recursive functions with the help of a suitable example.

Answer»

A function calls itself is called recursive function. 

#include <iostream>

using namespace std; 

void convert(int n) 

if(n>1) 

convert(n/2); 

cout<<n % 2; 

int main() 

convert(7); 

Here the function convert is a recursive function, that means it calls itself and output of the above program is 111.

32.

A program requires functions for adding 2 numbers, 3 numbers and 4 numbers, How can you provide a solution by writing a single functio0n?

Answer»

It can be solved by writing function with default values.

eg: int add (int n1, int n2, int n3 = 0, int n4 = 0) 

{

return (n1 + n2 + n3 + n4); 

}

This function can be invoked by the following function calling 

1. add (5,2);

2. add (5,2,7); 

3. add (5,2,7,10); 

The 1. Call returns 5 + 2 = 7 

2. Call returns 5 + 2 + 7 = 14 

3. Call returns 5 + 2 + 7 + 10 = 24

33.

A. void change(int &amp;);int main(){int x=0;change(x);cout&lt;&lt;"value="&lt;&lt;x;}void change(int &amp; y){y = 40;cout&lt;&lt;"value="&lt;&lt;y;}B. void change(int);int main(){int x=0;change(x);cout&lt;&lt;"value="&lt;&lt;x;}void change(int y){y = 40;cout&lt;&lt;"value="&lt;&lt;y;}1. Predict the output of both programs. 2. Justify your predictions.

Answer»

1. A. Output 

value = 40 

B. output 

value = 0 

2. In the first case (A) the argument x is passed by reference method. So the changes made in the function reflects in main() 

In the second case (B) the argument x is passed by value method. So the changes made in the function will not reflect in main()

34.

In what sense is garbage gold to the ragpickers? ORGarbage to them is gold; why does the author say so about the ragpickers?

Answer»

Garbage is gold to the ragpickers of Seemapuri because it provides them items which can be sold for cash, which can buy them food and is a means of survival. Moreover, it is gold also because the ragpickers can find stray coins and currency notes in it.

35.

Write short notes about conversion functions.

Answer»

The header file stdlib.h is used for conversion functions.

Following are the important conversion functions 

1. itoa(): 

It is used to convert an integer into a string. 

eg: 

int n = 100; 

charstr[20]; 

itoa(n,str,10);

2. Itoa(): 

It is used to convert an long into a string. 

eg: 

long n = 1002345L 

char str[20]; 

ltoa(n,str,10); 

3. atoi(): 

It is used to convert a string into integer

eg: 

int n; 

str[] = “123” 

n = atoi(str); 

4. atoll(): 

It is used to convert a string into long 

eg:

long n; 

str[] = “123456” 

n = atol(str);

36.

To use cin and cout, which header file is needed? (a) iostream (b) cstdio (c) input (d) output

Answer»

(a) iostream

37.

How is Mukesh different from the other bangle makers of Firozabad?

Answer»

Mukesh has the courage to dream big in spite of all adversity, whereas the other bangle makers of Firozabad have resigned to their fate, and have suppressed all their hopes and desires. Mukesh refuses to follow the ‘God-given lineage’ of bangle making and wants to be a motor mechanic when he grows up.

38.

What is Mukesh’s dream? Do you think he will be able to fulfil his dream? Why? Why not? ORWhat was Mukesh’s dream? In your opinion, did he achieve his dream? ORIs it possible for Mukesh to realise his dream? Justify your answer

Answer»

Mukesh’s dream is to become a motor-mechanic. It is no doubt difficult for Mukesh to achieve his dream, as he is torn between his desires and his family tradition, which he cannot escape. Besides, he has to face a number of obstacles in the form of sahukars, middlemen, bureaucrats, law makers, politicians etc. However, his will to work hard, and his strong determination could make him achieve his dream.

39.

Select the option that shows the correct relationship between (1) and (2) in 'Lost Spring'. (1) Bangle-makers are not able to escape the web of poverty. (2) Bangle makers lose their vision in their youth due to bad working conditions.A. (1) is false and (2) is true.B. (2) explains a reason for (1). C. (1) is an assumption made from (2). D. (2) is a fact whereas (1) is an opinion.

Answer»

B. (2) explains a reason for (1)

40.

Statement 1: The young bangle makers could not organise themselves into a cooperative. Statement 2: They were caught in a web of vicious circle. a) If Statement 1 is the cause, Statement 2 is the effect. b) If Statement 1 is the effect, Statement 2 is the cause. c) Both the statements are the effects of a common cause. d) Both the statements are the effects of independent causes.

Answer»

b) If Statement 1 is the effect, Statement 2 is the cause. 

41.

Mention any two hazards of working in the bangle industry.

Answer»

The glass bangle industry offers a very unhealthy and hazardous environment to the people working in it. They have to work in the glass furnaces with high temperature in dingy cells without air and light. Workers, including child labourers, lose their eyesight at an early age. Slogging for long, relentless hours also has adverse effects on their bodies.

42.

Is Saheb happy working at the tea stall? How do you know?

Answer»

Saheb is not happy working at the tea stall. He is paid a fixed wage of Rs 800, and also receives all his meals free. But the author notices that his face has lost its carefree look, which makes it evident that he is not happy. He has lost his independence, and is no longer his own master.

43.

Identify the appropriate header files for the following. 1. setw() 2. cout 3. toupper() 4. exit() 5. strcpy()

Answer»

1. setw() – iomanip.h

2. cout – iostream 

3. toupper() – cstring 

4. exit() – process 

5. strcpy() – cstring

44.

Short notes on header files

Answer»

A header file is a prestored file that helps to use some operators and functions. To write C++ pro-grams the header files are must. Following are the header files alloc 

iostream

iomanip 

cstdio 

cctype 

cmath 

cstring 

The syntax for including a header file is as follows

#include<name of the header file>

eg: #include<iostream>

45.

Whom does Anees Jung blame for the sorry plight of the bangle makers?

Answer»

Anees Jung blames the middlemen, the policemen, the lawmakers, the bureaucrats and the politicians for the sorry plight of the bangle makers. These people conspire against and exploit the poor bangle makers. They pay them meagre wages, do not let them form co-operatives, and compel their children to join the same trade at an early age.

46.

Why does the author say that the bangle makers are caught in a vicious web?

Answer»

The bangle makers in Firozabad are exploited at the hands of the Sahukars, middlemen, policemen, law makers, bureaucrats and politicians. They toil day and night, but are not paid appropriate wages and are steeped in poverty. They cannot form cooperatives for their betterment. Moreover, their children are also compelled to join the same trade at an early age and cannot dare to take up any other profession.

47.

Varun wants to copy a string by using strcpy() function. From the following which header file is used for this? (a) cstdio (b) cmath(c) cstring (d) cctype

Answer»

cstring is used for header file

48.

Read the extract given below and answer the questions that follow.Bright topaz denizens of a world of green. They do not fear the men beneath the tree; They pace in sleek chivalric certaintya) Who are ‘They’? Where are ‘They’?b) Why are ‘They’ not afraid of men?c) What is the meaning of ‘sleek’?d) Who is the poet of this poem?

Answer»

a) ‘They’ refers to the tigers that Aunt Jennifer has knit on the panel. 

They are prancing in the forest (across a screen).

b) The tigers are not afraid of men because they are gallant and fearless creatures who are not afraid of anyone.

c) The meaning of ‘sleek’ is ‘elegant’.

d) The name of the poet is Adrienne Rich.

49.

Aunt Jennifer’s efforts to get rid of her fear proved to be futile. Comment.

Answer»

Although Aunt Jennifer tried her best to conquer her fear, she continued to be traumatised and oppressed by her husband. Her act of embroidaring fearless, prancing tigers could only give her a temporary release to her pent up feelings of liberation.

50.

A student sitting on the last bench can read the letters written onthe blackboard but is not able to read the letters written in his text book. Which of the following statements is correct?(a) The near point of his eyes has receded away(b) The near point of his eyes has come closer to him(c) The far point of his eyes has come closer to him(d) The far point of his eyes has receded away

Answer» (a) The near point of his eyes has receded away