Questions

Q:

Select the word with the correct spelling.

A) missible B) saosages
C) emullator D) abdicate
 
Answer & Explanation Answer: D) abdicate

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: English
Exam Prep: Bank Exams

0 2047
Q:

Who has become first Indian player in ODI history to score three consecutive 100s as captain?

A) Virat Kohli B) Rohit Sharma
C) MS Dhoni D) Shikar Dhawan
 
Answer & Explanation Answer: A) Virat Kohli

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2047
Q:

What are the blocking and non-blocking assignments in Verilog and which is preferred in Sequential Circutis?

Answer

A blocking assignment is one in which the statements are executed sequentially, i.e., first statement is executed and variable is assigned  a value then second is executed and so on. A non blocking assignment is  one in which statements occurs conturrently, only non blocking assignments should be used in sequential circuit.


 


e.g.


initial


begin


a=b; //blocking


c<=a; //nonblocking


d=c; // blocking


end


 


In this example firstly the value of b is assigned to a and this value is assigned to c only after execution of first statement. the second and the third statements are executed simultaneously, i.e. value a ais assigned to c and previous value if c is assigned to d.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2047
Q:

Write a c program to copy a data of file to other file.

Answer

#include<stdio.h>
int main(){
  FILE *p,*q;
  char file1[20],file2[20];
  char ch;
  printf("\nEnter the source file name to be copied:");
  gets(file1);
  p=fopen(file1,"r");
  if(p==NULL){
      printf("cannot open %s",file1);
      exit(0);
  }
  printf("\nEnter the destination file name:");
  gets(file2);
  q=fopen(file2,"w");
  if(q==NULL){
      printf("cannot open %s",file2);
      exit(0);
  }
  while((ch=getc(p))!=EOF)
      putc(ch,q);
  printf("\nCOMPLETED");
  fclose(p);
  fclose(q);
 return 0;
}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

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

When the diaphragm and external intercostal muscles contract,

A) the volume of the thorax decreases. B) the volume of the lungs decreases.
C) the volume of the thorax increases. D) the lungs shrink.
 
Answer & Explanation Answer: C) the volume of the thorax increases.

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2046
Q:

In the given question, a part of the sentence is printed in bold. Below the sentence, three alternatives to the bold part are given which may help improve the sentence. Choose the option that reflects the correct use of the phrase in the context of the sentence. In case the given sentence is correct, your answer is (E) i.e. No correction required.

Although I don’t have any special bond with the rank and folder of the Labour Union, I know some top engineers.

(i) in the rank and folders of the Labour Union

(ii) with the rank and portfolio of the Labour Union

(iii) with the rank and file of the Labour Union

A) Only (i) B) Only (ii)
C) Only (iii) D) (i) and (ii)
 
Answer & Explanation Answer: C) Only (iii)

Explanation:
The correct phrase is ‘rank and file’ which means ‘the ordinary members of an organization’.
Report Error

View Answer Report Error Discuss

Filed Under: English

0 2046
Q:

When the Indian Space Research Organisation (ISRO) was set up?

A) 1952 B) 1959
C) 1964 D) 1969
 
Answer & Explanation Answer: D) 1969

Explanation:

The Indian Space Research Organisation is the space agency of the Government of India was set up in the year 1969, headquartered in the city of Bangalore. Its vision is to "harness space technology for national development while pursuing space science research and planetary exploration.

 

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 2045