Questions

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

Regulatory policies protect consumers by

A) controlling the supply of money B) providing public assistance programs
C) overseeing and limiting businesses D) deciding how to tax and spend money
 
Answer & Explanation Answer: C) overseeing and limiting businesses

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2011
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 2010
Q:

Which country imports the most metals?

A) China B) Japan
C) Africa D) Australia
 
Answer & Explanation Answer: B) Japan

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2010
Q:

India held its 3rd environment forum with which nation?

A) Russia B) Nepal
C) Singapore D) Germany
 
Answer & Explanation Answer: D) Germany

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

2 2010
Q:

Chronic drought and food insecurity plague Sahel, which is already one of the poorest in the world moreover the climate and geography of the region _______ regional communities to relative isolation.

a) Alleviates

b) Relegates

c) Downgrades

d) Transgresses

A) a-b B) b-c
C) b-d D) c-d
 
Answer & Explanation Answer: B) b-c

Explanation:

The sentence talks about “drought and food security” which has pestered the region and in addition to that the climate and geography has worsened the matter and forced them to come to isolation. “Relegate and downgrade” are the two words which means to move down to a lower position arethe most suitable word to be filled in the blank. “alleviates” which means to make less severe, will not complete the sentence sensibly. “Transgress” which means “to misbehave or to break the law” which does not fit in the context whatsoever.

Report Error

View Answer Report Error Discuss

Filed Under: English

0 2010
Q:

India's first 'Fulldome 3D Digital Theatre' inaugurated in?

A) Hyderabad B) Kolkata
C) Vizag D) Pune
 
Answer & Explanation Answer: B) Kolkata

Explanation:

India's first 'Fulldome 3D Digital Theatre' was inaugurated in Kolkata.

Report Error

View Answer Report Error Discuss

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

4 2010
Q:

The question below consists of a set of labelled sentences. These sentences, when properly sequenced form a coherent paragraph. Select the most logical order of sentences from among the options.


P-And slowly, you reach the pinnacle of self-awareness, experiencing a unity with all life.
Q-If you transform your energy positively, it naturally becomes compassion and love.
R-Once you experientially are a part of everything then nobody needs to teach you morality.
S-Then you can do something to improve the situation, but without anger.

A) PQRS B) QPRS
C) RQPS D) RSPQ
 
Answer & Explanation Answer: B) QPRS

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2009