Questions

Q:

What is an idle thread?

Answer

The special thread a dispatcher will execute when no ready thread is found.

Report Error

View answer Workspace Report Error Discuss

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

What is SCSI?

Answer

SCSI - Small computer systems interface is a type of interface used for computer components such as hard drives, optical drives, scanners and tape drives. It is a competing technology to standard IDE (Integrated Drive Electronics).

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:

In the following question, out of the four alternatives, select the alternative which best expresses the meaning of the idiom/phrase.

When it rains, it pours

A) one getting much less than what one expected B) calamity always occurs in bad times
C) you always fall into trouble when you are least prepared D) When something bad occurs, it usually occurs more than once
 
Answer & Explanation Answer: D) When something bad occurs, it usually occurs more than once

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: AIEEE , Bank Exams , CAT

0 2010
Q:

A sentence has been given in Direct/Indirect Speech. Out of the four given alternatives, select the one which best expresses the same sentence in Indirect/Direct Speech
 
The lawyer said to them, “Call the witness."

A)

The lawyer asked for the witness

B)

The witness be called by the lawyer

C)

The lawyer called the witness

D)

The lawyer commanded them to call the witness

 
Answer & Explanation Answer: D)

The lawyer commanded them to call the witness



Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: TOEFL , GRE , CAT , Bank Exams
Job Role: Bank PO , Bank Clerk

1 2010
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 2009
Q:

In the following question, out of the given four alternatives, select the one which is opposite in meaning of the given word.

Obscene

A) Indecent B) Immoral
C) Decent D) Offensive
 
Answer & Explanation Answer: C) Decent

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2009