Questions

Q:

Have you used Threads in Servelet?

Answer

Yes, single thread module

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

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:

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 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:

In the following question, a sentence has been given in Direct/Indirect speech. Out of the four alternatives suggested, select the one which best expresses the same sentence in Indirect/Direct speech.

 

“I will make for you the best rice you have ever had,” said the chef.

A) The chef told that he will make for him the best rice he has ever had. B) The chef told him that he would make for him the best rice he had ever had.
C) The chef told that he will make for him the best rice he has ever have. D) The chef tells that he would make for him the best rice he has ever had.
 
Answer & Explanation Answer: B) The chef told him that he would make for him the best rice he had ever had.

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams , CAT , GRE , TOEFL

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

A passage is given with 5 questions following it. Read the passage carefully and choose the best answer to each question out of the four alternatives.


The quest to find life outside the solar system got a big boost with the discovery of seven Earth-size extra-solar planets, or exoplanets, orbiting a dwarf star about 40 light years away. Unlike earlier discoveries of exoplanets, all seven planets could possibly have liquid water — a key to life as we know it on Earth — with three planets having the greatest chance. This is by far the largest collection of Earth-like planets in the habitable 'Goldilocks' zone of a star — neither too close nor too far from a star, which raises the possibility of liquid water being present on the surface. Only Earth has liquid water in the solar system. Since the dwarf star is much cooler than the Sun, the dimming of light each time a planet passes or transits before the star could be easily recorded from Earth unlike in cases when planets transit a Sun-like bright star. Since the initial discovery of three planets was made using the Chile-based Transiting Planets and Planetesimals Small Telescope, the exoplanet system is called TRAPPIST-1.

 

The telescope TRAPPIST is in which country?

A) Venezuela B) Argentina
C) Chile D) Mexico
 
Answer & Explanation Answer: C) Chile

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2125
Q:

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

Savant

A) Amateur B) Academic
C) Pundit D) Egghead
 
Answer & Explanation Answer: A) Amateur

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2124