Questions

Q:

The Nobel Prize in Economics was started in

A) 1901 B) 1936
C) 1957 D) 1967
 
Answer & Explanation Answer: D) 1967

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

4 2655
Q:

Who had announced that democracy is a government " of the people, by the people and for the people " ?

A) Abraham Lincoln B) George Washignton
C) Theodore Roosevelt D) Winston Churchill
 
Answer & Explanation Answer: A) Abraham Lincoln

Explanation:
Report Error

View Answer Report Error Discuss

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

10 2655
Q:

What was the name of the mission that first landed men on the moon?

Answer

Apollo 11

Report Error

View answer Workspace Report Error Discuss

0 2655
Q:

The most abundant gas in the atmosphere is

A) Nitrogen B) Argon
C) Oxygen D) Helium
 
Answer & Explanation Answer: A) Nitrogen

Explanation:

The atmosphere is a mixture of several gases. Nitrogen is the most abundant gas in the atmoshere and oxygen is next to it. It is 78% in the atmosphere and 21% is oxygen. Remaining 1% is all other gases like argon, hydrogen, neon, etc...

Report Error

View Answer Report Error Discuss

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

5 2654
Q:

A grouping of stars that resembles a picture

A) Galaxy B) Asteroid
C) Constellation D) Milkyway
 
Answer & Explanation Answer: C) Constellation

Explanation:

A grouping of stars that resembles a picture i.e, forms an imaginary outline or pattern typically representing an animal, mythological person or creature, a god, or an inanimate object is called a constellation. The night sky is divided into 88 sections called constellations.

 

A_grouping_of_stars_that_resembles_a_picture1560168542.png image

Report Error

View Answer Report Error Discuss

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

5 2654
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 2654
Q:

In Which three languages is the Rosetta Stone written?

Answer

Greek, demotic Egyptian and hieroglyphics.

Report Error

View answer Workspace Report Error Discuss

Subject: World History

0 2654
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 2653