Questions

Q:

Which country was responsible for the idea of the internet?

A) United States B) Japan
C) India D) China
 
Answer & Explanation Answer: A) United States

Explanation:

United States was the country that was responsible for the idea of the internet.

Report Error

View Answer Report Error Discuss

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

1 1977
Q:

The Shramjeevi Express Train runs between

A) Rajgir - New Delhi B) New Delhi - Howrah
C) Patna - Howrah D) Howrah - Rajgir
 
Answer & Explanation Answer: A) Rajgir - New Delhi

Explanation:

The Shramjeevi Train is a daily superfast express train of Indian Railways, running between Rajgir, near Nalanda, Bihar, and New Delhi, the capital city of India. Previously it was running between Patna and New Delhi, later extended to Rajgir.

Report Error

View Answer Report Error Discuss

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

2 1977
Q:

The Twelfth Five-year Plan focused on inclusive growth. Which of the following were considered as challenges for inclusiveness?

1.Poverty

2.Group inequality

3.Regional imbalance

4.Unemployment

Select the correct answer using the code given below.

A) 1, 3 and 4 only B) 1, 2, 3 and 4
C) 1, 2 and 4 only D) 2 and 3 only
 
Answer & Explanation Answer: A) 1, 3 and 4 only

Explanation:
All are correct except 2, as group inequality was not a challenge.
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics
Exam Prep: Bank Exams

0 1977
Q:

Select the antonym of
to hew

A) to prune B) to chop
C) to agglutinate D) to cleave
 
Answer & Explanation Answer: C) to agglutinate

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 1977
Q:

What are the different types of Real-Time Scheduling?

Answer

Hard real-time systems required to complete a critical task within a guaranteed amount of time.
Soft real-time computing requires that critical processes receive priority over less fortunate ones.

Report Error

View answer Workspace Report Error Discuss

1 1976
Q:

The caves of Ajanta are famous for

A) paintings B) terra-cotta
C) sculpture D) temples
 
Answer & Explanation Answer: A) paintings

Explanation:

The caves of Ajanta are famous for paintings.

Report Error

View Answer Report Error Discuss

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

0 1976
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 1975
Q:

Which of the following is not a storage device?

A) Hard drive B) Printer
C) RAM D) None of the above
 
Answer & Explanation Answer: B) Printer

Explanation:

A storage device refers to a computing hardware used to store information permanently or temporarily. The device can be external or internal to a computer, server, and other computing systems.

 

There are two types of storage devices used with computers: a primary storage device, such as RAM, and a secondary storage device, like a hard drive. Secondary storage can be removable, internal, or external.

 

Here printer is not the storage device, it is an outut.

Report Error

View Answer Report Error Discuss

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

1 1975