Questions

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:

Who has become the first-ever captain to win 100 matches in IPL history?

A) Rohit Sharma B) Ajinkya Rahane
C) MS Dhoni D) Dinesh Karthik
 
Answer & Explanation Answer: C) MS Dhoni

Explanation:

MS Dhoni, the skipper of CSK - Chennai Super Kings team in IPL Indian Premier League has become the first-ever captain to win 100 matches in IPL history.

Report Error

View Answer Report Error Discuss

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

1 2006
Q:

Which of the following is called the 'Gateway of the Pacific'?

A) Gulf of Alaska B) Panama Canal
C) Suez Canal D) Bering Sea
 
Answer & Explanation Answer: B) Panama Canal

Explanation:

Panama Canal is called the 'Gateway of the Pacific'.

Report Error

View Answer Report Error Discuss

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

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

What is SMP?

Answer

To achieve maximum efficiency and reliability a mode of operation known as symmetric multiprocessing is used. In essence, with SMP any process or threads can be assigned to any processor.

Report Error

View answer Workspace Report Error Discuss

1 2004
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 2004
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 2004