Questions

Q:

In the below puzzle, a word starts and ends with the same letter. Can you figure out what the word is?

_otato_

Answer

rotator

Report Error

View answer Workspace Report Error Discuss

Subject: Word Puzzles

18 2896
Q:

Why is RNA necessary to act as a messenger?

Answer

Why_is_RNA_necessary_to_act_as_a_messenger1548936409.jpg image


RNA acts as a messenger in between the DNA and ribosome as it transforms the genetic information from the DNA and as DNA is big and can't fit into the nuclear pores. 

Report Error

View answer Workspace Report Error Discuss

Subject: Biology Exam Prep: CAT , Bank Exams , AIEEE
Job Role: Bank PO , Bank Clerk , Analyst

1 2896
Q:

Which of these is an example of personification?

A) The moon smiled at me B) This shirt is as white as snow
C) Water is as hot as sun D) It is like a soft butter
 
Answer & Explanation Answer: A) The moon smiled at me

Explanation:

"The moon smiled at me" is the example of personification in the given options.

 

Personification is a technique in which we give objects human traits like emotions, gestures, speech,... by using metaphor. 

Here moon is an object which cannot smile but using metaphor sense, we gave that sense to it.

Report Error

View Answer Report Error Discuss

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

2 2895
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 2895
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 2895
Q:

Which of the following can be a symptom of AIDS?

A) Hair loss B) Severe weight gain
C) Tiredness D) All the above
 
Answer & Explanation Answer: C) Tiredness

Explanation:

From the aboe given options, only extreme and unexplained tiredness is the symptom of AIDS.

 

The other symptoms of AIDS include: recurring fever, thrush — a thick, whitish coating of the tongue or mouth that's caused by a yeast infection and sometimes accompanied by a sore throat, diarrhea that lasts more than a week, headaches, lightheadedness, and/or dizziness.

Report Error

View Answer Report Error Discuss

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

2 2894
Q:

Molar mass of HNO3?

A) 63 g/mol B) 53 g/mol
C) 48 g/mol D) 52 g/mol
 
Answer & Explanation Answer: A) 63 g/mol

Explanation:

Calculation of molar mass of HNO3:

Atomic masses of H, N, O are 1, 14, 16 respectively

Now the molar mass of HNO3 is

HNO3 = 1X1 + 1X14 + 3X16

= 1 + 14 + 48

= 63 g/mol or amu.

Report Error

View Answer Report Error Discuss

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

1 2894
Q:

Most pathogenic bacteria are thermophiles.

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

Explanation:

The given statement that "Most pathogenic bacteria are thermophiles" is FALSE.

Report Error

View Answer Workspace Report Error Discuss

Subject: General Science
Exam Prep: AIEEE , Bank Exams
Job Role: Analyst , Bank Clerk , Bank PO

0 2894