Questions

Q:

Depletion of ozone layer is caused by

A) CFC's B) Carbon tetra-chloride (CCl4)
C) HCFC's D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

Ozone layer depletion is one of the most serious problems faced by our planet earth. Substances that Deplete the Ozone Layer (ODS) emission are responsible for ultraviolet radiations from the sun break them to release chlorine (from CFCs) and bromine (from methyl bromide and halons).

Report Error

View Answer Report Error Discuss

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

1 2447
Q:

"Words in the Garden" festival on Gandhian philosophy is scheduled to be held in which city?

A) Hyderabad B) Pune
C) Kolkata D) New Delhi
 
Answer & Explanation Answer: D) New Delhi

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

0 2447
Q:

Write a c program for selection sort.

Answer

include<stdio.h>
int main(){

  int s,i,j,temp,a[20];

  printf("Enter total elements: ");
  scanf("%d",&s);

  printf("Enter %d elements: ",s);
  for(i=0;i<s;i++)
      scanf("%d",&a[i]);

  for(i=0;i<s;i++){
      for(j=i+1;j<s;j++){
           if(a[i]>a[j]){
               temp=a[i];
              a[i]=a[j];
              a[j]=temp;
           }
      }
  }

  printf("After sorting is: ");
  for(i=0;i<s;i++)
      printf(" %d",a[i]);

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 4 5 0 21 7
The array after sorting is:  0 4 5 7 21

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2447
Q:

Suez Canal was completed in the year

A) 1859 B) 1869
C) 1871 D) 1889
 
Answer & Explanation Answer: B) 1869

Explanation:

Of the two international ship canals, the Suez is more important than the Panama. Constructed over a period of 10 years according to a plan of the French Engineer  Ferdinand de Lesseps, the Suez Canal was opened as early as 1869.

Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2446
Q:

Fiords abound the coast of

A) Sweden B) France
C) Norway D) German
 
Answer & Explanation Answer: C) Norway

Explanation:

Fiords are along narrow inlets into the sea-coast with steep sides. It usually occurs along the coast of a mountainous region.It has been formed by glacial action.

Report Error

View Answer Report Error Discuss

Filed Under: World Geography

0 2445
Q:

Who has been conferred the Ashoka Chakra for year 2019?

A) Syam Prasad B) Ahmed Sunani
C) Nazir Ahmad Wani D) Vishnu wagh
 
Answer & Explanation Answer: C) Nazir Ahmad Wani

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Honours and Awards
Exam Prep: AIEEE , Bank Exams , CAT
Job Role: Analyst , Bank Clerk , Bank PO

9 2445
Q:

What is meant by Maskable interrupts?

Answer

An interrupt that can be turned off by the programmer is known as Maskable interrupt.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 2445
Q:

The Nobel Literature Prize 2018 has been awarded to

A) Bob Dylan B) Shashi Tharoor
C) George Saunders D) No one
 
Answer & Explanation Answer: D) No one

Explanation:

This is for the first time that no Literature Prize will be given in 70 years because of a #MeToo scandal.

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 2445