Questions

Q:

Battle of Gulnabad was led by Mahmud Hotaki and fought in the year ___.

 

A) 1770 B) 1722
C) 1712 D) 1702  
 
Answer & Explanation Answer: B) 1722

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

1 43802
Q:

Cultural transmission refers to the process of ______

 

 

A) cultural patterns moving from one society to another B) using the oral tradition
C) passing cultural patterns from one generation to another D) using writing to enshrine cultural patterns
 
Answer & Explanation Answer: C) passing cultural patterns from one generation to another

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

1 43727
Q:

Name the vitamin whose deficiency causes excessive bleeding?

 

A) Vitamin A B) Vitamin B
C) Vitamin K D) Vitamin C
 
Answer & Explanation Answer: C) Vitamin K

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

0 43606
Q:

Light is a ______________ wave.

 

A) longitudinal B) elastic
C) transverse D) mechanical
 
Answer & Explanation Answer: C) transverse

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

0 43592
Q:

#define clrscr() 100

main()

{

clrscr();

printf( "%dn", clrscr() );

}

A) 100 B) 0
C) Compilation error D) Exception occurs
 
Answer & Explanation Answer: A) 100

Explanation:

Preprocessor executes as a seperate pass before the execution of the compiler. So textual replacement of clrscr() to 100 occurs.The input program to compiler looks like this :

main ()

{

100;

printf("%d\n",100);

}

Note: 100; is an executable statement but with no action. So it doesn't give any problem.

Report Error

View Answer Report Error Discuss

Filed Under: Programming

24 43560
Q:

_______contributes towards global warming so it is called a greenhouse gas.

 

A) Oxygen B) Nitrogen
C) Hydrogen D) Methane
 
Answer & Explanation Answer: D) Methane

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE , Bank Exams

3 43474
Q:

Fill in the blank with the most appropriate option.

 

Ethanol is denatured to ___.

 

A) make it unsuitable for drinking B) make it suitable for drinking
C) increase its stability D) make it suitable as an antiseptic
 
Answer & Explanation Answer: A) make it unsuitable for drinking

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: AIEEE , Bank Exams

1 43393
Q:

If  1 1 1 1 = R
    2 2 2 2 = T
    3 3 3 3 = E
    4 4 4 4 = N

 

Then  5 5 5 5 = ?

A) Y B) Z
C) T D) X
 
Answer & Explanation Answer: A) Y

Explanation:

If you add all the terms of the LHS of equality, then the last letter of the sum written in words would give you the RHS.

1 + 1 + 1 + 1 = 4 = FOUR

2 + 2 + 2 + 2 = 8 = EIGHT

3 + 3 + 3 + 3 = 12 = TWELVE

4 + 4 + 4 + 4 = 16 = SIXTEEN

 

So, following the same pattern.

5 + 5 + 5 + 5 = 20 = TWENTY

 

That gives us our answer to 5 5 5 5 =  "Y".

Report Error

View Answer Report Error Discuss

86 43380