Questions

Q:

A thing of beauty is a joy forever meaning

A) some beauty gives happiness B) beauty gives a nice sleep
C) a quietness D) nothingness
 
Answer & Explanation Answer: A) some beauty gives happiness

Explanation:
Report Error

View Answer Report Error Discuss

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

1 2836
Q:

A spring is an example of which of these

A) Newton's 3rd law B) Hooke's law
C) Newton's 1st law D) Conservation of mass law
 
Answer & Explanation Answer: B) Hooke's law

Explanation:

When you compress or stretch a spring, as soon as the stress is relieved, the spring attains its normal shape instantly. Its Elastic potential energy helps it do so. Generally, these elastic substances follow the Hooke’s law.

 

According to this Law, the force needed to change the shape of spring is proportional to the displacement of the spring. The displacement referred here is how far the spring is compressed or stretched from its normal shape. Mathematically, Hook’s Law can be summarised as F= – k x. Here ‘k’ is the spring constant and ‘x’ is the displacement.

Report Error

View Answer Report Error Discuss

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

0 2836
Q:

Which of the following is the best conductor of electricity?

A) Aluminium B) Gold
C) Silver D) Copper
 
Answer & Explanation Answer: C) Silver

Explanation:

silver is the best conductor of electricity.

When compared to remaining 3 metals, as Silver having more number of free electrons in its valency shell it is the good conductor of electricity.

Conductors Thermal Conductivity @ 25degree C

Silver --- 429
Copper --- 401
Gold --- 310
Aluminium --- 250

Report Error

View Answer Report Error Discuss

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

5 2835
Q:

When was the demand for a separate Telangana hit a turning point on?

Answer

The demand for a seperate Telangana hit a turning point on December 16,2010 when around 12-15 lakh attended the 'Telangana Maha Garjana' at Warangal in Andhra pradesh. The rally ste off a chain of events that culminated in the Centre agreeing to form a Telangana state.

Report Error

View answer Workspace Report Error Discuss

Subject: Indian Politics

6 2835
Q:

Which structure is not part of the Endomembrane System?

A) Chloroplast B) Plasma membrane
C) Nuclear envelope D) Golgi apparatus
 
Answer & Explanation Answer: A) Chloroplast

Explanation:

The endomembrane system is composed of the different membranes that are suspended in the cytoplasm within a eukaryotic cell. These membranes divide the cell into functional and structural compartments or organelles. In eukaryotes, the organelles of the endomembrane system include the nuclear membrane, the endoplasmic reticulum, the Golgi apparatus, lysosomes, vesicles, endosomes and the cell membrane, among others.

Report Error

View Answer Report Error Discuss

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

2 2835
Q:

What is the difference between asset management and invest management?

Answer

Investment and asset are really close in meaning. Investment is when you put your money in stock, bond or other financial instruments. Whereas Asset is what you own generally reffered to land, proprietorship , factory, etc.

Report Error

View answer Workspace Report Error Discuss

Subject: Finance

2 2835
Q:

What are three characteristics of the agricultural revolution?

A) Farmers learned to control water through wells and canals B) New tools made it possible for more crops to be grown
C) Crop rotation was invented, making it harder on soil D) All the above
 
Answer & Explanation Answer: D) All the above

Explanation:
Report Error

View Answer Report Error Discuss

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

6 2835
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 2834