Questions

Q:

Who has won the orange cap for scoring the most runs in IPL 2018?

A) Rishabh Pant (Delhi Daredevils) B) Virat Kohli (Royal Challengers Bangalore)
C) Ambati Rayudu (Chennai Super Kings) D) Kane Williamson (Sunrisers Hyderabad)
 
Answer & Explanation Answer: D) Kane Williamson (Sunrisers Hyderabad)

Explanation:

Kane Williamson, the captain of Sunrisers Hyderabad team has won orange cup for scoring the most runs in IPL 2018.

The orange cap is presented annually in the Indian Premier League to the highest run scorer.

Report Error

View Answer Report Error Discuss

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

6 2867
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 2867
Q:

Which is evidence that supports the dynamo theory?

A) Earth's outer core contains liquid that conducts electricity B) Earth's core contains a large amount of iron
C) Granite and basalt conduct electricity D) Convection occurs in Earth's inner core
 
Answer & Explanation Answer: B) Earth's core contains a large amount of iron

Explanation:

In physics, the dynamo theory proposes a mechanism by which a celestial body such as Earth or a star generates a magnetic field.

Earth's crust core contains a large amount of iron and nickel is the evidence of the dynamo theory.

Report Error

View Answer Report Error Discuss

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

3 2866
Q:

Genes are made of 

A) Carbohydrates B) Proteins
C) Fats D) Nucleotides
 
Answer & Explanation Answer: D) Nucleotides

Explanation:

Genes: The DNA is the genetic material. The DNA is made of several nucleotides. A nucleotide means, one nitrogenous base one sugar molecule and a phosphate molecule. These Nucleotides occur in sequences and several nucleotides form one gene ( a functional gene is called a cistron)

Report Error

View Answer Report Error Discuss

Filed Under: Biology

3 2866
Q:

Closely stacked flattened sacs (plants only)

A) Vacuoles B) Lysosomes
C) Golgi apparatus D) None of the above
 
Answer & Explanation Answer: C) Golgi apparatus

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2866
Q:

Acute diabets  patients smell of 

A) acetone B) ether
C) ethyl alcohol D) methyl alcohol
 
Answer & Explanation Answer: A) acetone

Explanation:

Acute diabetes results in the formation of acetone in the body. Hence such patients smell of acetone.

Report Error

View Answer Report Error Discuss

Filed Under: Chemistry

2 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 2865