Questions

Q:

Select the word with the correct spelling.

A) karnages B) halogram
C) demagogy D) comands
 
Answer & Explanation Answer: C) demagogy

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2209
Q:

In the following questions, one part of the sentence may have an error. Find out which part of the sentence has an error and click the button corresponding to it. If the sentence is free from error, click the "No error" option.

The Government offered him (A)/ clerical job (B)/ but he turned it over (C) / No error (D)

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2209
Q:

In the following question, out of the four alternatives, select the alternative which best expresses the meaning of the idiom/phrase.
Sow wild oats

A) To make someone fool B) To make space to red
C) To take revenge D) To waste time by doing foolish things
 
Answer & Explanation Answer: D) To waste time by doing foolish things

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2209
Q:

Select the answer figure, in which question figure is hidden?

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

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2208
Q:

Select the word with the correct spelling.

A) paterns B) smudeging
C) dissuade D) fripery
 
Answer & Explanation Answer: C) dissuade

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT

0 2208
Q:

All of the following are polysaccharides except

A) Chitin B) Lactose
C) Glycogen D) Cellulose
 
Answer & Explanation Answer: B) Lactose

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology
Exam Prep: Bank Exams

0 2208
Q:

What's the maximum hard drive size for FAT16-based Windows system?

Answer

Maximum hard drive size for FAT16-based windows system is 2GB.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2208
Q:

C program to find whether a number is palindrome or not.

Answer

 #include<stdio.h>
int main(){
    int num,r,sum=0,temp;

    printf("Enter a number: ");
    scanf("%d",&num);

    temp=num;
    while(num){
         r=num%10;
         num=num/10;
         sum=sum*10+r;
    }
    if(temp==sum)
         printf("%d is a palindrome",temp);
    else
         printf("%d is not a palindrome",temp);

    return 0;
}

Sample output:
Enter a number: 131
131 is a palindrome

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2208