Questions

Q:

Plants wilt due to excess of

A) Photosynthesis B) Absorption
C) Transpiration D) None of the above
 
Answer & Explanation Answer: C) Transpiration

Explanation:

Plants wilt due to excess of Transpiration.

Report Error

View Answer Report Error Discuss

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

7 2415
Q:

Anarchy means

A) Government by the rich B) Government by the King/Queen
C) Government by the God D) Absence of government
 
Answer & Explanation Answer: D) Absence of government

Explanation:

Anarchy means Absence of government.

Report Error

View Answer Report Error Discuss

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

0 2414
Q:

The chemical name of common salt is

A) Sodium Chloride B) Potassium Nitrate
C) Sodium Nitrate D) Potassium Chloride
 
Answer & Explanation Answer: A) Sodium Chloride

Explanation:

The chemical name of common salt is Sodium Chloride with a chemical formula NaCl.

Report Error

View Answer Report Error Discuss

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

2 2414
Q:

Write a c program for selection sort.

Answer

include<stdio.h>
int main(){

  int s,i,j,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=0;i<s;i++){
      for(j=i+1;j<s;j++){
           if(a[i]>a[j]){
               temp=a[i];
              a[i]=a[j];
              a[j]=temp;
           }
      }
  }

  printf("After sorting is: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 4 5 0 21 7
The array after sorting is:  0 4 5 7 21

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2414
Q:

4 years ago, the respective ratio between 1/2 of A’s age at that time and four times of B’s age at that time was 5 : 12. Eight years hence 1/2 of A’s age at that time will be less than B’s age at that time by 2 years. What is B’s present age ?

A) 10 years B) 12 years
C) 14 years D) 8 years
 
Answer & Explanation Answer: A) 10 years

Explanation:
Report Error

View Answer Report Error Discuss

3 2414
Q:

How long can you commit to work with us?

Answer

I like new challenges and fortunate to develop. As long as I keep doing these, I don’t think I’ll need to alter. I’d like to consider that this relationship lasts for many years. However, I haven’t set a period of time limit as such.


 

Report Error

View answer Workspace Report Error Discuss

Subject: Human Resources

3 2414
Q:

Convert the expression ((A + B) * C – (D – E) ^ (F + G)) to equivalent Prefix Notation

Answer

Prefix Notation:


^ - * +ABC - DE + FG

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 2413
Q:

Which of these is exhibiting kinetic energy?

A) an archer with a flexed bow B) a person sitting on a couch while watching TV
C) a space station orbiting Earth D) All of the above
 
Answer & Explanation Answer: C) a space station orbiting Earth

Explanation:

Any moving object can exhibit kinetic energy, as kinetic energy is also known as Motional energy.

In the given options, only a space station orbiting Earth is in motion and all the other are in rest position.

 

Hence, option C) a space station orbiting Earth is only exhibiting kinetic energy.

Report Error

View Answer Report Error Discuss

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

3 2413