Questions

Q:

Gaur dance is a popular folk dance of ____________.

A) Chhattisgarh B) Tripura
C) Jharkhand D) Uttarakhand
 
Answer & Explanation Answer: A) Chhattisgarh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Geography
Exam Prep: Bank Exams

1 2116
Q:

Calcium salts used as fertilizer is:

A) Calcium Carbide B) Calcium Carbonate
C) Calcium Cyanide D) Calcium Sulphate
 
Answer & Explanation Answer: D) Calcium Sulphate

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

3 2116
Q:

NaHCO3 is chemical formula for ___________.

A) Borax B) Vinegar
C) Lime D) Baking soda
 
Answer & Explanation Answer: D) Baking soda

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

0 2116
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 2116
Q:

Which dynasty was ruling in Vijaynagar empire at the time of the Battle of Talikota?

A) Sangam B) Aniridu
C) Tuluva D) Saluva
 
Answer & Explanation Answer: C) Tuluva

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

2 2116
Q:

In projectile motion, the total flight time is _______.

A) equal to the time required to reach the maximum height B) thrice the time required to reach the maximum height
C) four times the time required to reach the maximum height D) twice the time required to reach the maximum height
 
Answer & Explanation Answer: D) twice the time required to reach the maximum height

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

1 2116
Q:

Who is the Chief Minister of Punjab as of 1st March 2018?

A) Navjot Singh Sidhu B) Captain Amarinder Singh
C) Parkash Singh Badal D) Naveen Mahindra
 
Answer & Explanation Answer: B) Captain Amarinder Singh

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: CAT , Bank Exams

0 2116
Q:

In the following question, a sentence has been given in Active/Passive voice. Out of the four alternatives suggested, select the one which bestexpresses the same sentence in Passive/Active voice.
 

The movie critic wrote a sarcastic review.

A) A sarcastic review is written by the movie critic. B) A review which is sarcastic was written by the movie critic.
C) A review which is sarcastic is written by the movie critic. D) A sarcastic review was written by the movie critic.
 
Answer & Explanation Answer: D) A sarcastic review was written by the movie critic.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2116