Questions

Q:

What is the maximum  number of states of matter?

A) Three B) Four
C) Five D) Variable
 
Answer & Explanation Answer: C) Five

Explanation:

There   are five known   states   of matter:    solids,    liquids,    gases, plasma and Bose-Einstein condensates.  The  main  difference in the structures of each state is in the densities of the particles.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

1 2112
Q:

Part of the plant where photosynthesis generally occurs

A) roots B) leaves
C) branches D) flowers
 
Answer & Explanation Answer: B) leaves

Explanation:

In a plant, photosynthesis generally occurs in the leaves part as leaves have chlorophyll which is used for making food using sunlight.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

3 2112
Q:

Glaucoma is usually caused by

A) High pressure on the optic nerve B) Loss of hearing
C) Loss of Bone density D) None of the above
 
Answer & Explanation Answer: A) High pressure on the optic nerve

Explanation:

Glaucoma is usually caused by high pressure on the optic nerve which leads the loss of eye sight.

Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

2 2111
Q:

What is plant cell wall mainly composed of?

A) Lipids B) Vitamin
C) Cellulose D) Protein
 
Answer & Explanation Answer: A) Lipids

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

5 2111
Q:

In the following question, out of the four alternatives, select the word similar in meaning to the word given.
Boisterous

A) Clamorous B) Ferocious
C) Fissiparous D) Voluminous
 
Answer & Explanation Answer: A) Clamorous

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2111
Q:

In the following question, out of the four alternatives, select the alternative which is the best substitute of the words/sentence.

 

Preserve a right, tradition, or idea in a form that ensures it will be protected and respected

A) Profane B) Sacrilege
C) Enshrine D) Blaspheme
 
Answer & Explanation Answer: C) Enshrine

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2111
Q:

Read the following passage carefully and choose the most appropriate answer to the question out of the four alternatives.

 


When I think of my family's history on the land. I experience a pang of regret. Unlike much of the arid West, where the land has gone virtually unchanged for centuries, my place of origin, western Kansas, has been torn up by agriculture. The flat plains, excellent soil, and sparse but just adequate rainfall permitted farming; therefore farming prevailed, and a good 90% of the original sod prairie is gone. The consequence, in human terms, is that our relationship to our place has always felt primarily mercantile. We used the land and denied, or held at bay, its effect on us. Yet from my earliest childhood, when the most of the Kansas prairie was still intact, I 've known that the land also had a romantic quality. I've felt moved by the expanse of it , enthralled by size. I take pride in my identity as a plains daughter.

 

From the passage, it may be determined that the word "mercantile" has something to do with

A) practicality B) danger
C) America D) spirituality
 
Answer & Explanation Answer: A) practicality

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , GRE , TOEFL

1 2111
Q:

What will be output of following c code?

#include <stdio.h>
int main()

{
    int i;
    for(i=10;i<=15;i++){
         while(i){
             do{
                 printf("%d ",1);
                 if(i>1)
                      continue;
             }while(0);
             break;
         }
    }
    return 0;
}

Answer

Output: 1 1 1 1 1 1
For loop will execute six times.


 


 


 


Note: continue keyword in do-while loop bring the program its while condition (while(0)) which is always false.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2111