Questions

Q:

Number of chambers in reptiles heart? 

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

Explanation:

Except crocodile which has 4 chambers, all the reptiles have 3 chambers in their heart.

Report Error

View Answer Report Error Discuss

Filed Under: Animals and Birds
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

12 2209
Q:

What are the different functions of Scheduler?

Answer

Scheduler deals with the problem of deciding which of the process in the ready queue is to be allocated the CPU. Short Term Schedulers, Long Term Schedulers

Report Error

View answer Workspace Report Error Discuss

1 2209
Q:

Which country scores highest ever T20I score?

A) Ireland B) West Indies
C) Afghanistan D) England
 
Answer & Explanation Answer: C) Afghanistan

Explanation:

The country Afghanistan scores highest ever T20I score i.e, 278 in 20 overs match against Ireland in 2019.

Report Error

View Answer Report Error Discuss

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

2 2209
Q:

Al-Masudi, a resident of Baghdad, had visited India in whose reign?

A) Mahendra Pal B) Mahipal
C) Mihir bhoj D) Rambhadra
 
Answer & Explanation Answer: B) Mahipal

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

3 2209
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
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:

Political culture refers to

Answer

Political culture refers to widely shared values and beliefs about who should govern, for what ends, and by what means.

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Politics Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

4 2208