Questions

Q:

Words that sound the same but are spelled different

words_that_sound_the_same_but_are_spelled_different1540289338.jpg image

A) Homonyms B) Homographs
C) Heteronyms D) Homophones
 
Answer & Explanation Answer: D) Homophones

Explanation:

Words that sound the same but are spelled different are called homophones. Homophones are a type of homonyms.

Some of the Examples of homophones are ::

One - Won

Son - Sun

Hole - Whole

Loan - Lone

Steal - Steel

Which - Witch

What - Watt

Sea - See

Report Error

View Answer Report Error Discuss

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

1 2649
Q:

The technique of DNA fingerprinting in human was developed for first time by _________

A) Lalji Singh B) Alec Jeffreys
C) R. Ericson D) J. Black
 
Answer & Explanation Answer: B) Alec Jeffreys

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

6 2649
Q:

What is the functional unit of a skeletal muscle called?

A) Myofibril B) Sarcomere
C) Fiber D) Fasciculus
 
Answer & Explanation Answer: B) Sarcomere

Explanation:

The myofibrils are composed of actin and myosin filaments, repeated in units called sarcomeres, which are the basic functional units of the skeletal muscle.

Report Error

View Answer Report Error Discuss

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

2 2649
Q:

Sponges are most accurately described as

A) marine predators B) chemoautrophs
C) filter feeders D) freshwater scavengers
 
Answer & Explanation Answer: C) filter feeders

Explanation:
Report Error

View Answer Report Error Discuss

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

3 2649
Q:

Which of the following does not influence haemoglobin saturation?

A) Nitric oxide B) Carbon dioxide
C) Temperature D) DPG
 
Answer & Explanation Answer: A) Nitric oxide

Explanation:
Report Error

View Answer Report Error Discuss

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

4 2648
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 2648
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 2648
Q:

How do you detect if two 8-bit signals are same?

Answer

Pass input to XOR and give their outputs to OR gate, if your output is 0 both 8-bit signals are same.


OR


Pass input to XNOR and give their outputs to AND gate, if your output is 1 both 8-bit signals are same. 

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

1 2648