Questions

Q:

Who composed the National Anthem ' Jana Gana Mana '

A) Rabindranath Tagore B) R.D.Dinkar
C) Bakim Chandra Chatterjee D) Sarojini Naidu
 
Answer & Explanation Answer: A) Rabindranath Tagore

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors

10 7205
Q:

In the following passage, some of the words have been left out. Read the passage carefully and select the correct answer for the given blank out of the four alternatives.

 

People are now either exposed to the very best of their inner circle and the world, ________ to the worst — articles that look to shock, to provoke rage and put a lens on everything that is wrong _________ the world. Imperceptibly, it goes unsaid that often __________ pieces of ‘news’ fail to actually provide a constructive solution. The effect of such a disparity _________ to the same effect as news of TV and newspapers — a feeling that what we see does not ____________ our lives.

 


we see does not ____________ our lives.

 

A) reflects B) reflective
C)  reflection D)  reflect
 
Answer & Explanation Answer: D)  reflect

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

63 7201
Q:

In Microsoft Word, _______ provides options to switch between Normal, Web Layout, Print Layout, Outline and Reading Views.

 

A) Standard tool bar B) View Buttons
C) Formatting tool bar D) Tab stop
 
Answer & Explanation Answer: B) View Buttons

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

46 7200
Q:

The brain of any computer system is

A) CPU B) Memory
C) Control D) ALU
 
Answer & Explanation Answer: A) CPU

Explanation:

Central Processing Unit (CPU) is the brain of any computer system.

Report Error

View Answer Report Error Discuss

19 7189
Q:

Major coalfields of India are located in the river valley of

A) Damodar B) Godavari
C) Mahanadi D) Wardha
 
Answer & Explanation Answer: A) Damodar

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Economy

4 7186
Q:

Jalal-ud-din Muhammad Akbar was proclaimed Emperor in

A) 1556 AD B) 1557 AD
C) 1558 AD D) 1560 AD
 
Answer & Explanation Answer: A) 1556 AD

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

9 7180
Q:

Formation of curd from milk is chemical reaction.

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

Explanation:

The process of conversion of milk into curd is called fermentation.  It is a chemical change. Milk consists of globular proteins called casein. As the microorganism lactobacillus react with milk and turn it to curd. For it 37 degree temperature is needed. But sometimes when it does not get favourable condition, then other microorganism react and makes the curd taste different.

Report Error

View Answer Workspace Report Error Discuss

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

6 7179
Q:

Write a c program for linear search.

Answer

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

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

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

    printf("Enter the elements of the array: ");
    for(i=0;i<=n-1;i++){
         scanf("%d",&a[i]);
    }

    printf("Enter the number to be search: ");
    scanf("%d",&m);
    for(i=0;i<=n-1;i++){
         if(a[i]==m){
             c=1;
             break;
         }
    }
    if(c==0)
         printf("The number is not in the list");
    else
         printf("The number is found");

    return 0;
}

Sample output:
Enter the size of an array: 5
Enter the elements of the array: 4 6 8 0 3
Enter the number to be search: 0
The number is found

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

2 7176