Questions

Q:

Which energy source generates radioactive waste?

A) Nuclear power B) Thermal power
C) Hydel power D) All of the above
 
Answer & Explanation Answer: A) Nuclear power

Explanation:

which_energy_source_generates_radioactive_waste1543400097.jpg image

Nuclear power energy source generates radioactive waste.

Report Error

View Answer Report Error Discuss

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

4 2005
Q:

Which section of IT Act of 2000 has been scraped to avoid people being prosecuted?

A) 66A B) 96A
C) 69A D) 76A
 
Answer & Explanation Answer: A) 66A

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2005
Q:

How many Regional Commissions are established by the UN Economic and Social Council

A) 2 B) 3
C) 5 D) 1
 
Answer & Explanation Answer: C) 5

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

1 2005
Q:

Steven Leslie was convicted of what after causing a fatal collision?

A) first-degree murder B) second-degree murder
C) premeditated D) None of the above
 
Answer & Explanation Answer: B) second-degree murder

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2005
Q:

Mediterranean  climate is ideal for growing

A) wheat and barley B) tea and coffee
C) Surgarcane and beet D) orange and lemons
 
Answer & Explanation Answer: D) orange and lemons

Explanation:

The hot dry summers and cool wet winters are especially suited for citrus fruits and therefore these lands are some times reffered to as the 'world's orchard land' .

Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2005
Q:

In oceania, most towns began as

A) Colonial ports B) plantations
C) tribal ritual centers D) capital cities
 
Answer & Explanation Answer: A) Colonial ports

Explanation:

Oceania is a geographic region comprising Melanesia, Micronesia, Polynesia and Australasia. In Oceani, most towns began as Colonial Ports.

oceania1532071449.jpg image

Report Error

View Answer Report Error Discuss

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

1 2005
Q:

Why we use do-while loop in c?

Answer

It is also called as post tested loop. It is used when it is necessary to execute the loop at least one time. Syntax:

do {
Loop body
} while (Expression);

Example:

int main(){
    int num,i=0;  
    do{
         printf("To enter press 1\n");
         printf("To exit press  2");
         scanf("%d",&num);
         ++i;
         switch(num){
             case 1:printf("You are welcome\n");break;
             default : exit(0);
         }
    }
    while(i<=10);
    return 0;
}

Output: 3 3 4 4

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2004
Q:

Which error are you likely to get when you run the following program?

main()

{

  struct emp

  {

      char name[20];

      float sal;

  };

  struct emp e[10];

  int i;

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

        scanf ( "%s %f" , e[i].name, &e[i].sal );

}

Answer

Floating point formats not linked

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2004