Questions

Q:

K-9 Journal, which was recently released, is associated with which field?

 

A) Pandemic B) Robotics
C) Medicine D) Policing
 
Answer & Explanation Answer: D) Policing

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

1 6836
Q:

Improve the bracketed part of the sentence.

Any bad habit must be nipped (on) the bud.

A) on B) in
C) off D) no improvement
 
Answer & Explanation Answer: B) in

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 6835
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 6835
Q:

Which of the statements given below are correct?

1. The author of the novel 'Missile Gap' is Charles Stross.
2. The author of the novel 'Bird Box' is Victor LaValle.
3. The author of the novel 'The City and the City' is China Mieville.

A) 1 and 2 B) 2 and 3
C) 1 and 3 D) 1, 2 and 3
 
Answer & Explanation Answer: C) 1 and 3

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Books and Authors
Exam Prep: Bank Exams

0 6832
Q:

64 S on CB?

Answer

The given statement implies that 64 Squares on Carrom Board.

Report Error

View answer Workspace Report Error Discuss

14 6827
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 6826
Q:

Which of the following does not contain the material particles

A) alpha - rays B) beta - rays
C) gamma - rays D) anode rays
 
Answer & Explanation Answer: C) gamma - rays

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

16 6821
Q:

Of the following elements, which one has the same oxidation  state in all of its compounds?

A) Hydrogen B) Fluroine
C) Carbon D) oxygen
 
Answer & Explanation Answer: B) Fluroine

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

15 6818