Questions

Q:

Hindustan Aeronautics Limited (HAL) has handed over a Dornier 228 light-weight aircraft to DRDO. What is the name of this aircraft?

A) Vayurathna B) Maharathna
C) Nabhrathna D) Aakashrathna
 
Answer & Explanation Answer: C) Nabhrathna

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

8 6791
Q:

What has One Eye Yet cannot See?

A) One-eyed Jack B) A Needle
C) Blind Justice D) Hurricane eye
 
Answer & Explanation Answer: B) A Needle

Explanation:

What has one eye yet cannot see is An Eye of a Needle.

 

A needle has an eye through which we thread it but it is not for seeing.

Report Error

View Answer Report Error Discuss

8 6786
Q:

Who first discovered the every eighth element had properties similar to that of the first?

 

A) Newlands B) Moseley
C) Dobereiner D) Mendeleev
 
Answer & Explanation Answer: A) Newlands

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

1 6785
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 6779
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 6778
Q:

What is the currency of Indonesia?

A) rupiah B) dinar
C) rangit D) riyal
 
Answer & Explanation Answer: A) rupiah

Explanation:

Currency of Indonesia is rupiah

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness

30 6772
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

40 6771
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 6771