Questions

Q:

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

 

The tail is wagging the dog

 

 

A) A situation where a small good thing makes everyone happy B) The less important or subsidiary factor, person, or thing dominates a situation  
C) A person who is always happy to meet you D) Even smaller tasks become important if the whole project is to succeed
 
Answer & Explanation Answer: B) The less important or subsidiary factor, person, or thing dominates a situation  

Explanation:
Report Error

View Answer Report Error Discuss

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

11 2103
Q:

Explain the concept of the batched operating systems?

Answer

In batched operating system the users gives their jobs to the operator who sorts the programs according to their requirements and executes them. This is time consuming but makes the CPU busy all the time.

Report Error

View answer Workspace Report Error Discuss

1 2103
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 2102
Q:

Which Governor General abolished the 'Sati System' in India?

A) Lord Canning B) Lord Ripon
C) Lord Wiliam Bentinck D) Lord Dalhousie
 
Answer & Explanation Answer: C) Lord Wiliam Bentinck

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

3 2102
Q:

What are the minimal cost and minimal risk solution?

Answer

In binary representation there are some states that believed to be never occurred due to some particular functionality of a given circuit. If zero output is assigned to such states then it is called minimal risk solution as  we are resetting the formidable states which could be occurred accidentally. Another approach is to assigned a don't care to them so it results in lesser logic and hence is called minimal cost solution.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2102
Q:

What branch of government is responsible for interpreting laws?

A) legislative B) executive
C) judicial D) All of the above
 
Answer & Explanation Answer: C) judicial

Explanation:

The legislative branch passes laws. The executive branch enforces laws. The judicial branch interprets laws.

Report Error

View Answer Report Error Discuss

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

1 2102
Q:

Hormone that helps regulate calcium balance

A) endocrine B) parathyroid
C) pancreas D) None of the above
 
Answer & Explanation Answer: B) parathyroid

Explanation:

PTH - Parathyroid hormone which balances calcium levels if they are low.

Report Error

View Answer Report Error Discuss

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

5 2101
Q:

An enzyme speeds up a reaction by

A) raising the activation energy B) absorbing energy
C) lowering the activation energy D) None of the above
 
Answer & Explanation Answer: C) lowering the activation energy

Explanation:

An enzyme speeds up a reaction by lowering the activation energy which is done by catalysts to increase the rate.

Report Error

View Answer Report Error Discuss

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

4 2101