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

What are java threads?

Answer

Java is one of the small number of languages that support at the language level for the creation and management of threads. However, because threads are managed by the java virtual machine (JVM), not by a user-level library or kernel, it is difficult to classify Java threads as either user- or kernel-level.

Report Error

View answer Workspace Report Error Discuss

1 2006
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 2006
Q:

The island of Sri Lanka formerly known as

A) Maldives B) Bali
C) Ceylon D) Madagaskar
 
Answer & Explanation Answer: C) Ceylon

Explanation:

In the history, at the time of British rule in 1800's, the island of Sri Lanka formerly known as Ceylon. It is a south asian country located in the northest of the indian ocean.

the_island_of_sri_lanka_formerly_known_as1553080594.png image

Report Error

View Answer Report Error Discuss

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

0 2005
Q:

People living in Sweden generally belong to

A) Mediterranean B) Alpine
C) Nordic D) Mongoloid
 
Answer & Explanation Answer: C) Nordic

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2005
Q:

Who has re-appointed as chairman of the ICC Cricket Committee?

A) Anil Kumble B) Saurav Ganguly
C) Sunil Gavaskar D) Rahul Dravid
 
Answer & Explanation Answer: A) Anil Kumble

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2005
Q:

A sentence has been given in Active/Passive Voice. Out of the four given alternatives, select the one which best expresses the same sentence in Passive/Active Voice.

 

George Orwell wrote 1984.

 

A) 1984 is wrote by George Orwell. B) 1984 was wrote by George Orwell.
C) 1984 was written by George Orwell. D) 1984 written by George Orwell.
 
Answer & Explanation Answer: C) 1984 was written by George Orwell.

Explanation:
Report Error

View Answer Report Error Discuss

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

0 2005
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 2004