Questions

Q:

Father of Indian Engineering -

A) James Hickey B) Dr. M.S. Swaminathan
C) Nandalal Bose D) M.Visweswariah
 
Answer & Explanation Answer: D) M.Visweswariah

Explanation:

M.Visweswariah is known as the Father of Indian Engineering.

 

Father of Indian Printing - James Hickey

Father of Indian Green Revolution - Dr. M.S. Swaminathan

Father of Indian Painting - Nandalal Bose.

Report Error

View Answer Report Error Discuss

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

3 2866
Q:

Excessive use of which ofthe following fertilizers may be responsible for the presence of a toxic substance in groundwater?

A) Nitrogen B) Phosphate only
C) Potassium only D) Phosphate and potassium
 
Answer & Explanation Answer: A) Nitrogen

Explanation:

Excessive use of nitrate including manure may be responsible forthe presence of toxic substance in groundwater. Phosphate can also enter the groundwater via excessive use of fertilizers. High application rates of nitrogen containing fertilizers combined with the high-water solubility of nitrate, leads to increased runoff into surface water as well as leaching into groundwater, thereby causing groundwater pollution.

Only a fraction of the nitrogen-based fertilizers, is converted to produce and other plant matter. Nitrate pollution in groundwater comes from pit latrines, it can cause blue baby syndrome.

Report Error

View Answer Report Error Discuss

Filed Under: General Science
Exam Prep: Bank Exams

3 2866
Q:

STUFF and REPLACE are used to replace characters in a string

A) TRUE B) FALSE
Answer & Explanation Answer: A) TRUE

Explanation:

They both are used to replace characters in a string

Report Error

View Answer Workspace Report Error Discuss

0 2866
Q:

Which of the following is not a subatomic particle?

A) neutron B) ion
C) electron D) proton
 
Answer & Explanation Answer: B) ion

Explanation:

The particles which makes upon an atom are called subatomic particles. Electrons, protons and Neutrons that makes an atom are called subatomic particles.

Whereas,

An ion is an atom or group of atoms in which the number of electrons is different from the number of protons.

Report Error

View Answer Report Error Discuss

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

16 2866
Q:

DNA fingerprinting is used to identify the

A) Rapist B) Parents
C) Thieves D) All of the above
 
Answer & Explanation Answer: D) All of the above

Explanation:

DNA fingerprinting is used to identify the parents, thieves and rapists.

Report Error

View Answer Report Error Discuss

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

19 2865
Q:

Havana is the capital city of

A) Suriname B) Belgium
C) Greece D) Cuba
 
Answer & Explanation Answer: D) Cuba

Explanation:

Havana is the capital city of Cuba.

It's currency is Cuban Peso.

Report Error

View Answer Report Error Discuss

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

14 2865
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 2865
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 2864