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

Which NASA's spacecraft is sent for Jupiter mission?

A) JUNO B) LUNO
C) MONO D) TANO
 
Answer & Explanation Answer: A) JUNO

Explanation:

NASA's spacecraft "JUNO"is sent for Jupiter mission.

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

Which is the Hindi word of the year in the Oxford Dictonaries for 2018?

Answer

Nari-Shakti is the Hindi word of the year in the Oxford Dictonaries for 2018.

Report Error

View answer Workspace Report Error Discuss

Subject: General Awareness Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

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

What is the best way to prevent pest infestation?

Answer

Pest infestation is nothing but the presence of large number of pests at a place, typically so as to cause damage or disease.


 


Climatic conditions affect a considerable number of pests. Some are more active during warmer periods than others. As these summer insects invade your home, they're likely in search of food, water, shelter, or have encountered an entrance. To pest-proof your home this summer, it's best to remove their 'WHY’ or reason for entering your home.


* Keep your place clean and dry. Make sure there is no food laying about.


* Removing food residue - food is a common attraction to a number of different pests.


* Regular disinfection of the surfaces.

Report Error

View answer Workspace Report Error Discuss

Subject: General Science Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

1 2015
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 2014
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 2014