Questions

Q:

Have you used Threads in Servelet?

Answer

Yes, single thread module

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 1966
Q:

Select the synonym of
maestro

A) neophyte B) catechumen
C) sophomore D) conductor
 
Answer & Explanation Answer: D) conductor

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 1966
Q:

What is Program counter?

Answer

Program counter holds the address of either the first byte of the next instruction to be fetched for execution of the address of the next byte of a multi byte instruction, which has not been completely fetched. In both the cases it gets incremented automatically one by one as the instruction bytes get fetched. Also Program register keeps the address of the next instruction.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

1 1965
Q:

C program to find the factorial of a given number

Answer

 #include<stdio.h>
int main(){
  int i=1,f=1,num;

  printf("Enter a number: ");
  scanf("%d",&num);

  while(i<=num){
      f=f*i;
      i++;
  }

  printf("Factorial of %d is: %d",num,f);
  return 0;
}

Sample output:
Enter a number: 5
Factorial of 5 is: 120

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 1965
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 1965
Q:

Which is the least populated state in India as per Census 2011?

A) Bihar B) Kerala
C) Sikkim D) Maharashtra
 
Answer & Explanation Answer: C) Sikkim

Explanation:

the least populated state in India as per Census 2011 is Sikkim.

Report Error

View Answer Report Error Discuss

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

0 1964
Q:

Which railway station became the first of South Central Railway zone to hoist a tricolour flag (100ft)?

A) Secunderabad B) Chennai
C) Bengaluru D) Panaji
 
Answer & Explanation Answer: A) Secunderabad

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

1 1963
Q:

Select the related letters from the given alternatives.

HIJ : OPQ :: STU : ?

A) BCD B) ZAB
C) XYZ D) CBA
 
Answer & Explanation Answer: B) ZAB

Explanation:
Report Error

View Answer Report Error Discuss

2 1963