Questions

Q:

Monopotassium tartarate was used in

A) Fertiliser B) Explosives
C) Photography D) Baking
 
Answer & Explanation Answer: D) Baking

Explanation:

Monopotassium tartarate was used in baking powder.

Report Error

View Answer Report Error Discuss

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

0 2657
Q:

Light Year is related to

A) Distance B) Acceleration
C) Velocity D) Intensity of Light
 
Answer & Explanation Answer: A) Distance

Explanation:

Light Year is related to Distance. It is the unit of Distance.

It is about 9.5 Trillion Kms or 5.9 Trillion miles.

 

    • It is the distance that light travels in vaccum in one julian year i.e, 365.25 days.



 

Report Error

View Answer Report Error Discuss

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

6 2656
Q:

The U-shaped skyscraper ‘The Big Bend’ will be build in which city ?

A) New York B) Florida
C) Texas D) California
 
Answer & Explanation Answer: A) New York

Explanation:

The design plans for the U-shaped skyscraper ‘The Big Bend’ in New York, hailed as the world’s longest building, have been revealed. The 4,000-foot long building will feature an elevator system that can travel in curves, horizontally and in loops.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

3 2656
Q:

Which cartoon characters were created by William Hanna and Joseph Barbara in 1940?

A) Oswald & Noddy B) Tom & Jerry
C) Mickey mouse & Sylvester D) Donald duck & Tweety
 
Answer & Explanation Answer: B) Tom & Jerry

Explanation:

Tom Cat and Jerry Mouse were the two cartoon characters created by William Hanna and Joseph Barbara in 1940.

Report Error

View Answer Report Error Discuss

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

3 2656
Q:

Who is the author of ' The Accidental Prime Minister - The Making and Unmaking of Manmohan Singh'

Answer

Sanjaya Baru

Report Error

View answer Workspace Report Error Discuss

3 2655
Q:

What would be the output of the following program?

main()

{

   struct emp

   {

        char *n;

        int age;

   };

   struct emp e1 = { "Dravid", 23};

   struct emp e2 = e1;

   strupr (e2.n);

   printf ("\n%s",e1.n);

}

Answer

DRAVID


When a structure is assigned, passed, or returned, the copying is done monolithically. This means that the copies of any pointer fields will point to the same place as the original. In other words, anything pointed to is not copied. Hence, on changing the name through e2.n it automatically changed e1.n

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2655
Q:

Write a c program for binary search.

Answer

#include<stdio.h>
int main(){

    int a[10],i,n,m,c=0,l,u,mid;

    printf("Enter the size of an array: ");
    scanf("%d",&n);

    printf("Enter the elements in ascending order: ");
    for(i=0;i<n;i++){
         scanf("%d",&a[i]);
    }

    printf("Enter the number to be search: ");
    scanf("%d",&m);

    l=0,u=n-1;
    while(l<=u){
         mid=(l+u)/2;
         if(m==a[mid]){
             c=1;
             break;
         }
         else if(m<a[mid]){
             u=mid-1;
         }
         else
             l=mid+1;
    }
    if(c==0)
         printf("The number is not found.");
    else
         printf("The number is found.");

    return 0;
}

Sample output:
Enter the size of an array: 5
Enter the elements in ascending order: 4 7 8 11 21
Enter the number to be search: 11
The number is found.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2655
Q:

Head Quaters of NATO is located in 

A) Newyork B) Brussels
C) Alaska D) California
 
Answer & Explanation Answer: B) Brussels

Explanation:

Head Quaters of NATO is located in Brussels

Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

5 2655