Questions

Q:

Who conquered Sind in 712 AD?

A) Arabs B) French
C) Greeks D) Mongols
 
Answer & Explanation Answer: A) Arabs

Explanation:

By 712 AD, Arabs conquered Sindh.

Report Error

View Answer Report Error Discuss

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

7 2310
Q:

Which ocean takes up about half of the surface of the earth?

A) Southern B) Pacific
C) Atlantic D) Indian
 
Answer & Explanation Answer: B) Pacific

Explanation:

The Pacific Ocean is the largest and deepest of Earth's oceanic divisions. It extends from the Arctic Ocean in the north to the Southern Ocean in the south. We know that, Earth is made up of 70% of water and 30% of land. Pacific Ocean covers 1/3rd of the water on the Planet Earth.

Which_ocean_takes_up_about_half_of_the_surface_of_the_earth1560167440.jpg image

Report Error

View Answer Report Error Discuss

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

3 2310
Q:

What is CPU Scheduler?

Answer

Selects from among the processes in memory that are ready to execute, and allocates the CPU to one of them. CPU scheduling decisions may take place when a process: 1.Switches from running to waiting state. 2.Switches from running to ready state. 3.Switches from waiting to ready. 4.Terminates. Scheduling under 1 and 4 is non-preemptive. All other scheduling is preemptive.

Report Error

View answer Workspace Report Error Discuss

2 2310
Q:

Write a program to generate the Fibonacci series in c?

Answer

 #include<stdio.h>
int main(){
    int k,r;
    long int i=0l,j=1,f;

    //Taking maximum numbers form user
    printf("Enter the number range:");
    scanf("%d",&r);

    printf("FIBONACCI SERIES: ");
    printf("%ld %ld",i,j); //printing firts two values.

    for(k=2;k<r;k++){
         f=i+j;
         i=j;
         j=f;
         printf(" %ld",j);
    }
 
    return 0;
}

Sample output:
Enter the number range: 15
FIBONACCI SERIES: 0 1 1 2 3 5 8 13 21 34 55 89 144 233 377

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2309
Q:

Which of the following is a World Bank group of five institutions

A) IMF B) IDA
C) ILO D) ITU
 
Answer & Explanation Answer: B) IDA

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

1 2309
Q:

The first attempt in printing was made in England by

A) James Watt B) Isaac Newton
C) William Caxton D) James Arkwright
 
Answer & Explanation Answer: C) William Caxton

Explanation:

The first attempt in printing was made in England by William Caxton.

 

The_first_attempt_in_printing_was_made_in_England_by1552110131.jpg image

 

William Caxton was an English merchant, diplomat, and writer. He is thought to be the first person to introduce a printing press into England, in 1476, and as a printer was the first English retailer of printed books.

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 2309
Q:

Which one of the following is the cause for a change in the season?

A) Earth’s Rotation and Revolution B) Earth’s Rotation
C) Earth’s Revolution D) None of the above
 
Answer & Explanation Answer: C) Earth’s Revolution

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2309
Q:

Steel contains

A) no carbon B) < 2% of carbon
C) > 10% of carbon D) > 29% of carbon
 
Answer & Explanation Answer: B) < 2% of carbon

Explanation:

To make steel, iron ore is first mined from the ground. It is then smelted in blast furnaces where the impurities are removed and carbon is added.

In simple, steel is iron alloyed with carbon, usually 0 - 2%.

Report Error

View Answer Report Error Discuss

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

12 2309