Questions

Q:

Which river crosses the equator twice?

A) Congo B) Amazon
C) Nile D) None of the above
 
Answer & Explanation Answer: A) Congo

Explanation:

River Congo is the only river which crosses the equator twice.

Report Error

View Answer Report Error Discuss

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

4 2469
Q:

India’s first contactless business credit card has been launched by __________in association with Jet Airways, India premier international airline.

A) Axis Bank B) ICICI Bank
C) HDFC Bank D) YES Bank
 
Answer & Explanation Answer: B) ICICI Bank

Explanation:

India’s first contactless business credit card has been launched by ICICI bank in association with Jet Airways, India premier international airline, for Small and Mid-sized Enterprises (SMEs) and their employees. The card has been christened as the ‘Jet Airways ICICI Bank Business Advantage Card’, which helps customers to save on their business expenses. The card is powered by the ‘VISA payWave’ contactless technology that enables the cardholder to make payments by simply tapping the card at contactless enabled terminals in more than 48 countries, including India. The card can also be used by dipping or swiping at non-contactless merchants.

Report Error

View Answer Report Error Discuss

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

3 2469
Q:

Speed in a given direction is called

A) Velocity B) Torque
C) Acceleration D) Displacement
 
Answer & Explanation Answer: A) Velocity

Explanation:

Speed in a given direction is called Velocity.

Report Error

View Answer Report Error Discuss

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

6 2468
Q:

In economics,"capital" refers to

A) mineral resources B) the money in one's pocket
C) consumer goods D) buildings and equipment
 
Answer & Explanation Answer: D) buildings and equipment

Explanation:

Capital refers to buildings and equipment i.e, goods which are used by workers to produce other goods such as machinery, land, ...

Capital has a number of related meanings in economics, finance, and accounting.

In economics, Capital comprises one of the four major factors of production, the others being land, labor, and entrepreneurship.

In finance and accounting, capital generally refers to financial wealth, especially that used to start or maintain a business.

Report Error

View Answer Report Error Discuss

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

5 2468
Q:

Write a c program to create dos command type.

Answer

#include
int main( int count,char * argv[] ) {
    int i;
    FILE *ptr;
    char *str;
    char ch;
    if( count == 1) {


         printf( "The syntax of the command is incorrect.\n" );
    }
    for( i=1;i<cout;i++ ){
         ptr=fopen(argv[i],"r");
         if(ptr==NULL){
             printf("The system cannot find the file specified.");
             if(count>2)
                 printf("\nError occurred while procesing : %s.\n",argv[i]);
         }
         else {
             if(count>2) {
                 printf("%s\n\n",argv[i]);
             }
             while((ch=getc(ptr))!=-1)
                 printf("%c",ch);
         }
         fclose(ptr);
    }
    return 0;
}


 


Save the above file as open.c, compile and execute the go to command mode (current working directory) and write: open xy.c (xy.c any file present in that directory)
To run the open command in all directories and drive you will have to give the path of current working directory in command mode. Write:
C:tc\bin>PATH c:\tc\bin
Now press enter key. Now your open command will work in all directory and drive.

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

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

Ultimate strength to cement is provided by

A) Di-calcium silicate B) Tricalcium silicate
C) Tetra calcium alumino ferrite D) Tri-calcium aluminate
 
Answer & Explanation Answer: A) Di-calcium silicate

Explanation:
Report Error

View Answer Report Error Discuss

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

2 2468
Q:

Green pigment is called

A) Chlorophyll B) Xanthophyll
C) Carotene D) Phycobillin
 
Answer & Explanation Answer: A) Chlorophyll

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

4 2467