Questions

Q:

Which nation officially changed its name to North Macedonia?

A) Macedonia B) Albania
C) Serbia D) Kosovo
 
Answer & Explanation Answer: A) Macedonia

Explanation:
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 2009
Q:

Which tennis player claims 100th ATP title of his career?

A) Rafael Nadal B) Andy Murray
C) Serena Williams D) Roger Federer
 
Answer & Explanation Answer: D) Roger Federer

Explanation:

Roger Federer was the tennis player who claims 100th ATP Association of tennis Professionals title of his career.

Report Error

View Answer Report Error Discuss

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

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

Texas trial lawyers frequently ally with

A) Consumer interest groups. B) Public employee unions.
C) The gas and oil industry. D) Pharmaceutical companies.
 
Answer & Explanation Answer: A) Consumer interest groups.

Explanation:
Report Error

View Answer Report Error Discuss

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

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

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 2008