Questions

Q:

Richest Municipal Corporation in India?

A) Hyderabad B) Mumbai
C) Delhi D) Ludhiana
 
Answer & Explanation Answer: B) Mumbai

Explanation:

Brihanmumbai Municipal Corporation (BMC), is the governing civic body of Mumbai, the Municipal Corporation of Greater Mumbai, Maharashtra is India's richest municipal corporation. The BMC's annual budget exceeds that of some of the smaller states of India.

Richest_Municipal_Corporation_in_India1551769040.jpg image

Report Error

View Answer Report Error Discuss

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

6 7230
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 7226
Q:

Guess the Hidden Alphabet in this Puzzle ?

missing_letter_41499670014.jpg image

A) X B) Y
C) B D) D
 
Answer & Explanation Answer: A) X

Explanation:

The logic in the given puzzle is 

Addition of numeric values of corresponding letters in the first three figures gives respective corresponding letter in fourth figure. 

i.e, A = 1 , W = 23 , B = 2 => 2 + 1 + 23 =26 = 'Z'

Similarly, L = 12, K = 11 , A = 1 => 1 + 11 + 12 = 24 = 'X'

Here the missing letter is 'X'.

Report Error

View Answer Report Error Discuss

Filed Under: Missing letters puzzles
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Bank Clerk , Bank PO

24 7224
Q:

The court language during the reign of Akbar was _____ ?

A) Urdu B) Persian
C) Arabic D) Hindi
 
Answer & Explanation Answer: B) Persian

Explanation:
Report Error

View Answer Report Error Discuss

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

13 7222
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 7219
Q:

Entomology is the science that studies

A) Insects B) Behaviour of Human beigns
C) Scientific Names D) Formation of Rocks
 
Answer & Explanation Answer: A) Insects

Explanation:

Entomology is the science branch of Zoology that studies Insects

entomology_is_the_study_of1549696118.jpg image

Report Error

View Answer Report Error Discuss

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

18 7211
Q:

Who was among the famous Roman poets ?

A) Tacitus B) Plinky
C) Virgil D) Marcus
 
Answer & Explanation Answer: C) Virgil

Explanation:

Virgil and Horace were the famous Roman poets.

Tacitus and Plinky were the famous Roman historians.

Marcus was a Roman Philosopher.

Report Error

View Answer Report Error Discuss

Filed Under: World History

5 7210
Q:

The angle between the geographical meridian and magnetic meridian is called as ______.

A) Angle of declination B) Angle of dip
C) Angle of inclination D) Azimuth
 
Answer & Explanation Answer: A) Angle of declination

Explanation:
Report Error

View Answer Report Error Discuss

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

16 7204