Questions

Q:

Which state launched employment scheme "Yuva Swabhiman Yojana" for urban youth?

A) Madhya Pradesh B) Telangana
C) West Bengal D) Uttar Pradesh
 
Answer & Explanation Answer: A) Madhya Pradesh

Explanation:

Madhya Pradesh state government has launched employment scheme "Yuva Swabhiman Yojana" for urban youth.

Report Error

View Answer Report Error Discuss

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

1 2036
Q:

In 1617 the British East India Company was given permission by __________ to trade in India.

A) Babur B) Akbar
C) Aurangzeb D) Jahangir
 
Answer & Explanation Answer: D) Jahangir

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History
Exam Prep: Bank Exams

3 2036
Q:

Every SOP must have the signature of the ____ within your chain of command before it is a legal document.

Answer

SOP means Standard Operating Procedure.


A standard operating procedure is a set of step-by-step instructions compiled by an organization to help workers carry out complex routine operations. SOPs aim to achieve efficiency, quality output and uniformity of performance, while reducing miscommunication and failure to comply with industry regulations.


 


Every SOP must have the signature of the approving authority within your chain of command before it is a legal document.

Report Error

View answer Workspace Report Error Discuss

6 2036
Q:

What is a device queue?

Answer

A list of processes waiting for a particular I/O device is called device queue.

Report Error

View answer Workspace Report Error Discuss

0 2035
Q:

Which one of the following elements is used as a timekeeper in atomic clocks?

A) Potassium B) Caesium
C) Calcium D) Magnesium
 
Answer & Explanation Answer: B) Caesium

Explanation:

When exposed to certain frequencies of radiation, such as radio waves, the subatomic particles called electrons that orbit an atom's nucleus will "jump" back and forth between energy states. Clocks based on this jumping within atoms can therefore provide an extremely precise way to count seconds.It is no surprise then that the international standard for the length of one second is based on atoms. Since 1967, the official definition of a second is 9,192,631,770 cycles of the radiation that gets an atom of the element called caesium to vibrate between two energy states.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry
Exam Prep: Bank Exams

0 2035
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 2034
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 2034
Q:

If you look into a mirror and find that the image (your reflection) is smaller than you, then the type of the mirror is:

A) concave mirror B) convex mirror
C) plano-concave mirror D) plane mirror
 
Answer & Explanation Answer: B) convex mirror

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

2 2034