Questions

Q:

In spherical polar coordinates (l, q, a), q denotesthe polar angle around z-axis and a denotes the azimuthal angle raised from x-axis . Then the y-component of P is given by

A) Psinq sina B) Psinq cosa
C) Pcosq sina D) Pcosq cosa
 
Answer & Explanation Answer: A) Psinq sina

Explanation:

The Cartesian Coordinates can be retrieved from spherical coordinates (l,q,a) by:

X = r.sinq.cosa

Y = r.sinq.sina

Z = r.sinq

Using the same we get for P,

Y = P.sinq.sina

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: Bank Exams

0 2047
Q:

PM Narendra Modi inaugerated the first ever airport of this state?

A) Odisha B) Sikkim
C) Assam D) Chattisgarh
 
Answer & Explanation Answer: B) Sikkim

Explanation:

PM inaugurates Sikkim's first airport, the Pakyong airport in Sikkim is located around 60 km from the India-China border in the village Pakyong near Gangtok the Sikkim's capital city.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

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:

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:

During the light reactions of photosynthesis

During_the_light_reactions_of_photosynthesis1553000283.jpg image

A) the energy from sunlight is absorbed by the pigment chlorophyll B) the water are obserbed by roots
C) the sunlight is reflected by the leaf pigments D) All the above
 
Answer & Explanation Answer: A) the energy from sunlight is absorbed by the pigment chlorophyll

Explanation:

During the light reactions of photosynthesis the energy from sunlight is absorbed by the pigment chlorophyll present in the chloroplasts of the leafs.

Report Error

View Answer Report Error Discuss

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

3 2046
Q:

India holded its first-ever global tourism mart in which city?

A) New Dehi B) Hyderabad
C) Bangaluru D) Kolkata
 
Answer & Explanation Answer: A) New Dehi

Explanation:

India hold its first-ever lobal tourism mart at Vigyan Bhawan, New Delhi from september 16-18. It is modelled on the ITB Berlin, the world's largest tourism trade fair.

Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO

1 2046
Q:

Enumerators are stored by the compiler in

A) integer B) string
C) float D) any of above
 
Answer & Explanation Answer: A) integer

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

3 2046
Q:

What are good sources of fat for the body?

A) Fish and eggs B) Nuts
C) Cheese D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

The foods that are good source of fat and incredibly healthy to the body ar fatty fish, eggs, nuts, cheese, avocados, dark chocolates, etc...

Report Error

View Answer Report Error Discuss

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

4 2045