Questions

Q:

Bikaner school, Jaipur school, Marwar school, Mewar school are all schools of?

A) Miniature paintings B) Rajput paintings
C) Madhubani paintings D) Cave paintings
 
Answer & Explanation Answer: B) Rajput paintings

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

3 2125
Q:

Alternate freezing and thawing often leads to ______.

A) Creep B) Slumps
C) Mud flows D) Earth flows
 
Answer & Explanation Answer: A) Creep

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

2 2125
Q:

The number of parliamentary seats (Lok Sabha) of Gujarat is

A) 10 B) 26
C) 28 D) 48
 
Answer & Explanation Answer: B) 26

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

1 2125
Q:

In the following question, out of the four alternatives, select the alternative which is the best substitute of the words/sentence.

Diminish in value over a period of time

A) Escalate B) Augment
C) Aggrandise D) Depreciate
 
Answer & Explanation Answer: D) Depreciate

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

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

Which canal is considered to be an important link b/w the developed countries and the developing countries?

A) Grand Canal B) Panama Canal
C) Suez Canal D) Kiel Canal
 
Answer & Explanation Answer: C) Suez Canal

Explanation:

The Suez Canal is considered to be an important link b/w the developed countries and the developing countries. It is a sea-level waterway in Egypt, connecting the Mediterranean Sea to the Red Sea Constructed by the Suez Canal Company between 1859 and 1869.

Report Error

View Answer Report Error Discuss

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

2 2124
Q:

Have you used Threads in Servelet?

Answer

Yes, single thread module

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2124