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 7188
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 7181
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 7177
Q:

Who was the first person to receive a Jnanpith award for a Telugu work ?

A) C. Narayana reddy B) Viswanatha Satyanarayana
C) Ravuri Bharadwaja D) Srirangam Srinivasarao
 
Answer & Explanation Answer: B) Viswanatha Satyanarayana

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards

12 7177
Q:

The best eradication method for a major infestation is

A) Chemical B) Bacteria
C) Fusion D) None of the above
 
Answer & Explanation Answer: A) Chemical

Explanation:
Report Error

View Answer Report Error Discuss

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

5 7174
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 7172
Q:

Which sport is played on the largest pitch?

A) Golf B) Cricket
C) Polo D) Football
 
Answer & Explanation Answer: C) Polo

Explanation:

Polo is the sport which is played in the largest pitch.

which_sport_is_played_on_the_largest_pitch1542950688.jpg image

Report Error

View Answer Report Error Discuss

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

2 7167
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 7163