Questions

Q:

Between a tiger and an monkey, which of the following is different?

A) Kingdom B) phylum
C) order D) class
 
Answer & Explanation Answer: C) order

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: Bank Exams

0 2126
Q:

Centrifugal force increases with

A) Temperature B) Pressure
C) Acceleration D) Humidity
 
Answer & Explanation Answer: C) Acceleration

Explanation:

Centrifugal force is the fictitious force that pulls out from the center on the body we feel while moving in the circular path. It increases with the rate of rotation of the axis i.e, acceleration of the body.

 

Report Error

View Answer Report Error Discuss

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

1 2126
Q:

For an ideal gas, which one of the following statements does not hold true?

A) The speed of all gas molecules is same B) The kinetic energies of all gas molecules are not same
C) The potential energy of the gas molecules is zero D) There is no interactive force between the molecules.
 
Answer & Explanation Answer: A) The speed of all gas molecules is same

Explanation:

In an ideal gas, at any particular time, different particles in the gas have different speeds and hence different kinetic energies. This assumption is reasonable because as the particles collide, we expect their speed to change. Even if initial speed of all the particles was same, the molecular collisions will disrupt this uniformity.Hence statement 1 is incorrect and 2 is correct.

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

1 2126
Q:

India's largest start up ecosystem has launched in which state?

A) Uttar Pradesh B) Gujarat
C) Uttarakhand D) Kerala
 
Answer & Explanation Answer: D) Kerala

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2126
Q:

What is separation in HRM?

Answer

Separation of an employee exists when the service of an employee comes to an end because of one reason or other. "Separation of employment" refers broadly to the process of managing the termination of employment. It is a sensitive issue for any organization. 


 


Types of separation:


 


1) Volunntary:


a) Resignation
b) Job abandonment
c) Retirement


 


2) Involuntary:


a) Layoff
b) Dismissal
c) Plant closure
d) Death or Disability.

Report Error

View answer Workspace Report Error Discuss

1 2126
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 2126
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 2126
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 2126