Questions

Q:

What is buying forward?

Answer

It is an investment strategy that involves the buying of money market instruments or currencies in anticipation of a price rise or a future increase in demand. Buying forward allows an investor to take advantage of future and potential profits by buying now at alower price, and selling when prices rise.

Report Error

View answer Workspace Report Error Discuss

0 2513
Q:

Improve the following code using typedef.

struct node

{

      int data1;  float data2;

       struct node *left;

       struct node *right;

};

struct node *ptr;

ptr = (struct node *) malloc (sizeof (struct node) ); 

Answer

typedef struct node * treeptr


typedef struct node


{


         int data1;


         float data2;


         treeptr *left;


         treeptr *right;


}treenode;


treeptr ptr;


ptr = ( treeptr ) malloc ( sizeof ( treenode ) );

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2512
Q:

The occasional development of warm ocean surface waters along the coast of Ecuador and Peru is known as 

A) EI Nino and La Nina B) EI Nino
C) La Nina D) Southern Oscillation
 
Answer & Explanation Answer: B) EI Nino

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Geography

4 2511
Q:

Abu Simbel is located in which country?

A) South Africa B) Iran
C) Iraq D) Egypt
 
Answer & Explanation Answer: D) Egypt

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Famous Places

4 2511
Q:

In which layer is the pressure the highest?

A) Ionosphere B) Stratosphere
C) Troposphere D) Inner core
 
Answer & Explanation Answer: D) Inner core

Explanation:

"Pressure" is the ratio of mass to area. So, for any given area, the one with more mass pressing on it will experience a higher pressure.

 

As you go more deeply into the atmosphere OR earth itself, you are putting more and more mass over you. For the same unit area therefore, the pressure, (mass/area) increases.

 

Hence, the lowest layer will always have the highest pressure i.e, inner core.

Report Error

View Answer Report Error Discuss

Filed Under: Physics
Exam Prep: AIEEE , Bank Exams , CAT , GATE
Job Role: Analyst , Bank Clerk , Bank PO , Database Administration , IT Trainer

2 2511
Q:

Where was India's first F1 circuit built?

A) Jaipur B) Coimbatore
C) Noida D) Chennai
 
Answer & Explanation Answer: C) Noida

Explanation:

Fi circuit refers to Formula One, is the highest class of open-wheeled auto racing defined by FIA, motorsport's world governing body.

 

The Buddh International Circuit is an Indian motor racing circuit in Greater Noida, Uttar Pradesh was India's first F1 circuit.

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

5 2511
Q:

The function of nitrogen in air is 

A) to make air a moderate supporter of combustion B) to maintain the density of air constant
C) to prevent the hydrogen in air from exploding D) to reduce the poisonous nature of ozone in air
 
Answer & Explanation Answer: A) to make air a moderate supporter of combustion

Explanation:

If air contained all oxygen and no nitrogen, everything would have burnt off

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

2 2510
Q:

Write a c program for insertion sort.

Answer

#include<stdio.h>
int main(){

  int i,j,s,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=1;i<s;i++){
      temp=a[i];
      j=i-1;
      while((temp<a[j])&&(j>=0)){
      a[j+1]=a[j];
          j=j-1;
      }
      a[j+1]=temp;
  }

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

  return 0;
}

Output:
Enter total elements: 5
Enter 5 elements: 3 7 9 0 2
After sorting:  0 2 3 7 9

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 2509