Questions

Q:

Rearrange the parts of the sentence in correct order.

Only a country not yet rid

P-of its colonial hangover
Q-and controls, labels dissent as seditious
R-of a government that commands

A) PRQ B) PQR
C) QPR D) RPQ
 
Answer & Explanation Answer: A) PRQ

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 6798
Q:

I am a number I am not an odd number I am higher than 90 I am not higher than 100 If you subtract me from 100, you get nothing. What number am I?

Answer

The required number 100.


It is not an odd number and is not higher than 100 and greater than 90.


When we subtract 100 from 100, we get nothing i.e, 0.

Report Error

View answer Workspace Report Error Discuss

Subject: Number Puzzles Exam Prep: Bank Exams

41 6795
Q:

One of the best preserved Buddhist caves, Karla, is in which of the following states?

 

A) Bihar B) Uttar Pradesh
C) Maharashtra D) Uttarakhand
 
Answer & Explanation Answer: C) Maharashtra

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

2 6791
Q:

5 L from A are V?

Answer

5 L from A are V --- 5 Letters from Alphabets are Vowels.


 

Report Error

View answer Workspace Report Error Discuss

13 6786
Q:

The prime meridian passes through

A) Paris B) Greenwich
C) New York D) Delhi
 
Answer & Explanation Answer: B) Greenwich

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

13 6781
Q:

Rearrange the parts of the sentence in correct order.

India has already made

P-­substantial concessions
Q­-to enable a consensus
R­-for the Paris pact

 

A) QRP B) PQR
C) RPQ D) QPR
 
Answer & Explanation Answer: B) PQR

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , GRE , TOEFL

0 6781
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 6780
Q:

Who is the Indian Classical dancer credited with the first female dancer to learn Chhau form ?

Answer

Sonal Mansingh

Report Error

View answer Workspace Report Error Discuss

9 6779