Questions

Q:

The law of conservation of energy states that

A) energy can neither be created nor destroyed B) energy can either be created nor destroyed
C) energy can neither be created or destroyed D) energy can either be created or destroyed
 
Answer & Explanation Answer: A) energy can neither be created nor destroyed

Explanation:

The law of conservation of energy is a law of science which states that energy can neither be created nor destroyed - only converted from one form of energy to another.

In 1842, Julius Robert Mayer discovered the Law of Conservation of Energy.

Report Error

View Answer Report Error Discuss

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

3 3011
Q:

How many Species go Extinct Every Day?

Answer

About 150 - 200 species of plant, insect, bird and mammal become extinct every day or 24 hrs.


This is not an accurate but an estimation by U.N. Convention on Biological Diversity and Global Extinction Rates. It is also said that current extinctions were 'up to 100 times higher than the background rate.'

Report Error

View answer Workspace Report Error Discuss

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

6 3011
Q:

First country to appoint Lokpal or equivalent to a Lokpal is ________.

A) Brazil B) Burma
C) Sweden D) India
 
Answer & Explanation Answer: C) Sweden

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: General Awareness
Exam Prep: Bank Exams

1 3010
Q:

Have you studied buses? What types?

Answer

There are three types of buses.


Address bus: This is used to carry the Address to the memory to fetch either Instruction or Data.


Data bus: This is used to carry the Data from the memory.


Control bus: This is used to carry the Control signals like RD/WR, Select etc.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

0 3010
Q:

Which IRQ does the system timer commonly use?

A) IRQ 1 B) IRQ 0
C) IRQ 3 D) IRQ 4
 
Answer & Explanation Answer: B) IRQ 0

Explanation:

IRQ-0 is the system timer commonly use in all computers. In a computer, IRQ is an interrupt request which acts as a hardware signal sent to the processor that temporarily stops a running program and allows a special program, an interrupt handler, to run instead.

Report Error

View Answer Report Error Discuss

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

3 3009
Q:

To evaluate a piece of media means to

A) disseminate the contents to a wide audience B) communicate the information to a group of people
C) express the main idea in a clear and specific way D) judge the purpose and message in a thoughtful way
 
Answer & Explanation Answer: D) judge the purpose and message in a thoughtful way

Explanation:
Report Error

View Answer Report Error Discuss

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

3 3009
Q:

Which is false concerning the use of the voting machine?

A) It does away with the need for numerous officials to count ballots. B) Fraud is nearly impossible.
C) It assures absolute secrecy. D) It was invented in 1898.
 
Answer & Explanation Answer: D) It was invented in 1898.

Explanation:

A voting machine is a machine used to register and tabulate votes.

 

In the given options, It was invented in 1898 is the false statement as it was actually invented in 1875 with some faults in it.

Report Error

View Answer Report Error Discuss

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

2 3009
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 3008