Questions

Q:

In the following question, four words are given out of which one word is correctly spelt. Select the correctly spelt word.

A) indisposition B) indesposition
C) indispossition   D) indespossition
 
Answer & Explanation Answer: A) indisposition

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2105
Q:

What stage occurs after cytokinesis?

A) S - phase B) G1 phase
C) G2 phase D) All of the above
 
Answer & Explanation Answer: B) G1 phase

Explanation:

It is the Interphase, which occurs after cytokinesis. And in interphase we have 3 stages likely G1, G2 and S phase. After cytokinesis we get G1 phase.

Report Error

View Answer Report Error Discuss

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

5 2105
Q:

Name the veteran Agriculture Scientist who was recently awarded the 1st World Agriculture Prize for 2018.

A) Dr. Deepak Kumar B) Prof. Rakesh Agnihotri
C) Prof. MS Swaminathan D) None of the above
 
Answer & Explanation Answer: C) Prof. MS Swaminathan

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2105
Q:

The Mayan pyramids and temples were made from

A) Limestone B) Wood
C) Marble D) Granite
 
Answer & Explanation Answer: A) Limestone

Explanation:

The Mayans were an ancient civilization located in what is known as Mesoamerica, a geographical region comprised of Mexico and parts of Central America. They were extremely adept in matters of mathematics, astronomy, and art, and architecture.

 

The Mayan pyramids and temples were built with bricks and covered with limestone.

Report Error

View Answer Report Error Discuss

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

0 2105
Q:

Write a c program to check whether a number is strong or not.

Answer

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

  printf("Enter a number: ");
  scanf("%d",&num);
 
  temp=num;
  while(num){
      i=1,f=1;
      r=num%10;

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

  return 0;
}

Sample output:
Enter a number: 145
145 is a strong number

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2105
Q:

Point out the error, if any, in the following program.

main()

{

    int i = 4, j = 2;

    switch(i)

    {

     case 1 :

       printf (''\n To err is human, to forgive is against company policy.");

        break;

      case j :

       printf (''\n if you have nothing to do, don't do it here.");

       break;

    }

}

Answer

Constant expression required in the second case, we cannot use j.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2105
Q:

Four words are given, out of which only one word is spelt correctly. Choose the correctly spelt word and click the button corresponding to it.

 

A) Ajournment B) Adjournmant
C) Ajornment D) Adjournment
 
Answer & Explanation Answer: D) Adjournment

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2105
Q:

In the following question, out of the four alternatives, select the word similar in meaning to the word given.

Piquancy

A) Bland B) Flavouring
C) Insipid D) Tedious
 
Answer & Explanation Answer: B) Flavouring

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2105