Questions

Q:

In India, population density is defined as the number of persons

A) Per square mile B) Per square kilometre
C) Per lakh square mile D) Per lakh square kilometre
 
Answer & Explanation Answer: B) Per square kilometre

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

2 3052
Q:

Asia's longest bi-direction road tunnel to be launched in ?

A) Jammu & Kashmir B) Delhi
C) Mizoram D) Maharashtra
 
Answer & Explanation Answer: A) Jammu & Kashmir

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams
Job Role: Bank Clerk

1 3052
Q:

Nucleic acids are polymers of

A) Nucleotides B) Aminoacids
C) Proteins D) Sugars
 
Answer & Explanation Answer: A) Nucleotides

Explanation:

Nucleic acids are polymers of individual nucleotide monomers.

Each nucleotide is composed of three parts:

a 5-carbon sugar,

a phosphate group, and

a nitrogenous base.

Report Error

View Answer Report Error Discuss

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

0 3052
Q:

Which of the following can be used as lamp oil?

A) Lipids B) Carbohydrates
C) Proteins D) Nucleic acids
 
Answer & Explanation Answer: A) Lipids

Explanation:
Report Error

View Answer Report Error Discuss

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

3 3052
Q:

Another word for 'special friend'

Answer

Special Friend - Stone.


 


Example ::


He is my special friend - He is my stone.

Report Error

View answer Workspace Report Error Discuss

Subject: English Exam Prep: Bank Exams , CAT , GATE , GRE , TOEFL
Job Role: Analyst , Bank Clerk , Bank PO , IT Trainer

1 3052
Q:

Organisms that feed on the excreta of other organisms are called 

A) autotrophs B) heterotrophs
C) coprophagous D) saprotrophs
 
Answer & Explanation Answer: C) coprophagous

Explanation:

The word coprodaeum refers to the last part of the elimentary canal.The excreta (undigested, matter) comes out of that part. So, the organisms that take in such materials are called coprophagous.

Report Error

View Answer Report Error Discuss

Filed Under: Biology

7 3051
Q:

public static void main string[] args Meaning is?

Answer

Here in this declaration public static void main string[] args, each keyword has its importance.


 


1. public - Here public is an access specifier which allows the main method to be accessible everywhere.


 


2. static - static helps the main method to get loaded without getting called by any instance/object.


 


3. void - void clarifies that the main method will not return any value.


 


4. main - It's the name of the method.


 


5. String[] args - Here we are defining a String array to pass arguments at the command line. args is the variable name of the String array.

Report Error

View answer Workspace Report Error Discuss

8 3051
Q:

Point out the error, if any, in the while loop.

main()

{

  int i = 1;

  while ()

  {

     printf ( "%d", i++);

     if (i >10) 

     break ;

   }

}

Answer

The condition in the while loop is a must.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 3050