Questions

Q:

Select the odd number from the given alternatives

A) 100 B) 400
C) 800 D) 900
 
Answer & Explanation Answer: C) 800

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Non Verbal Reasoning
Exam Prep: Bank Exams

2 2009
Q:

Who has been honoured with Jnanpith Award for 2018?

A) Amitav Ghosh B) Raghuveer Chaudary
C) Krishna Sobti D) None of the above
 
Answer & Explanation Answer: A) Amitav Ghosh

Explanation:

English author Amitav Ghosh has been honoured with 54th Jnanpith Award for 2018 for his outstanding contribution towards literature.

Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

1 2009
Q:

Name the inventor of ATM (automated teller machine), it was opened on 27th June, 1967 by Barclays bank?

A) J Shepherd-Barron B) M D White
C) D C Wetzel D) Wilfred Barron
 
Answer & Explanation Answer: A) J Shepherd-Barron

Explanation:

John Shepherd-Barron was the inventor of ATM (automated teller machine), which was opened on 27th June, 1967 by Barclays bank.

Report Error

View Answer Report Error Discuss

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

0 2009
Q:

What is virtual memory?

Answer

Virtual memory is hardware technique where the system appears to have more memory that it actually does. This is done by time-sharing, the physical memory and storage parts of the memory one disk when they are not actively being used.

Report Error

View answer Workspace Report Error Discuss

0 2009
Q:

The average of five consecutive even numbers is 40. What is the value of smallest of these numbers?

A) 35 B) 36
C) 44 D) 48
 
Answer & Explanation Answer: B) 36

Explanation:
Report Error

View Answer Report Error Discuss

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

PQR is right angled at Q. If cosecP = 17/15, then what is the value of sinR ?

A) 15/17 B) 11/17
C) 8/17 D) 13/17
 
Answer & Explanation Answer: C) 8/17

Explanation:
Report Error

View Answer Report Error Discuss

1 2007
Q:

Magic Marker was invented by _______.

A) Adolphe Sax B) Albert Bruce Sabin
C) Sidney Rosenthal D) Hyman George Rickover
 
Answer & Explanation Answer: C) Sidney Rosenthal

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Inventions
Exam Prep: Bank Exams

0 2007