Questions

Q:

Primary growth in plants occurs by

A. Vertical meristem

B. Lateral meristem

C. Intercalary meristem

D. Apical meristem

 

A) C & D B) A, B & D
C) A, B, C & D D) B, C & D
 
Answer & Explanation Answer: A) C & D

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

0 43825
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 43751
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 43619
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 43575
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 43510
Q:

Read the following information and answer the questions given below:

A has 28 elements, B has 32 elements and A U B has 40 elements.

How many elements does A B have?

A) 12 B) 8
C) 10 D) 20
 
Answer & Explanation Answer: D) 20

Explanation:
Report Error

View Answer Report Error Discuss

0 43479
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 43467