Questions

Q:

Choose the correctly spelt word:-

A) Sepulchral B) Sepalchrle
C) Sepalchral D) Sepulchrle
 
Answer & Explanation Answer: A) Sepulchral

Explanation:

Sepulchral is spelt correctly which means joyless

Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

1 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 Damin-i-Koh was created by the British Government to settle which one of the following communities?

A) Santals B) Mundas
C) Oraons D) Saoras
 
Answer & Explanation Answer: A) Santals

Explanation:

Damini-i-Koh was the land allocated to the Santhals. The Santhals could live on the land and practise plough agriculture, thus helping them to carry out settled agriculture.

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

2 2309
Q:

Simla was founded as a hill station to use as strategic place for billeting troops, guarding frontier and launching campaign during the course of

A) Anglo-Maratha War B) Anglo-Burmese War
C) Anglo-Gurkha War D) Anglo-Afghan War.
 
Answer & Explanation Answer: C) Anglo-Gurkha War

Explanation:

History of Shimla goes back to the period of Anglo –Gurkha war in the year 1808-09. The British connection with the area developed only after this battle between the Sikh rulers of these hills and the Gurkhas from Nepal.

Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

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

Starting or restarting a computer is called tasking the system.

A) TRUE B) FALSE
Answer & Explanation Answer: B) FALSE

Explanation:

False. The given statement that starting or restarting a computer is called tasking the system is not correct. 


 


We know that the starting or restarting a computer is called Booting the system.

Report Error

View Answer Workspace Report Error Discuss

Subject: Computer
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

2 2309
Q:

Which keyboard shortcut bolds selected text?

A) CTRL + I B) SHIFT + CTRL + S
C) CTRL + B D) CTRL + SHIFT + I
 
Answer & Explanation Answer: C) CTRL + B

Explanation:

CTRL + B is computer keyboard shortcut bolds selected text.

CTRL + I is used for making the selected text italic

SHIFT + CTRL + S used for SAVE AS option for any document or file.

Report Error

View Answer Report Error Discuss

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

4 2308
Q:

The term photon refers to

A) light ray B) sub atomic particle
C) radiation D) None of the above
 
Answer & Explanation Answer: B) sub atomic particle

Explanation:

The photon is a type of elementary particle, the quantum of the electromagnetic field including electromagnetic radiation such as light, and the force carrier for the electromagnetic force. The photon has zero rest mass and always moves at the speed of light within a vacuum.

Report Error

View Answer Report Error Discuss

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

2 2308