Questions

Q:

'.bak' extension refers to what kind of file?

A) Document B) Movie/Video file
C) Backup file D) Audio file
 
Answer & Explanation Answer: C) Backup file

Explanation:

In computing, ".bak" is a filename extension commonly used to signify a backup copy of a file.

Report Error

View Answer Report Error Discuss

3 3655
Q:

Second and third class levers are differentiated by

A) the location of the load B) the location of the fulcrum
C) the presence of multiple loads D) the type of fulcrum present
 
Answer & Explanation Answer: A) the location of the load

Explanation:
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 3653
Q:

After Srinagar (J&K), India's 2nd Tulip Garden will come up in which state?

A) Uttarakhand B) Himachal Pradesh
C) Delhi D) Karnataka
 
Answer & Explanation Answer: A) Uttarakhand

Explanation:

India's 2nd Tulip Garden will come up in Pithoragarh district of Uttarakhand state.

Report Error

View Answer Report Error Discuss

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

4 3652
Q:

A subset of the database which contain virtual data that is derived from the database files but is not explicitly stored is called

A) Touple B) View
C) Relation D) Key
 
Answer & Explanation Answer: B) View

Explanation:

A view may be a subset of the database or it may contain virtual data that is derived from the database files but is not explicitly stored .

 

 

Report Error

View Answer Report Error Discuss

Filed Under: Database
Job Role: Database Administration

0 3652
Q:

The flow of thermal energy is called

A) Heat B) Current
C) Voltage D) Potential
 
Answer & Explanation Answer: A) Heat

Explanation:

The flow of thermal energy due to differences in their temperatures is called Heat.

The_flow_of_thermal_energy_is_called1558527324.png image

Report Error

View Answer Report Error Discuss

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

2 3651
Q:

What is the primary purpose of most constitutions?

A) to provide a substitute for government B) to define and limit government power
C) to give the government absolute power D) to define a moral code for people to follow
 
Answer & Explanation Answer: B) to define and limit government power

Explanation:

There are many reasons why a constitution is needed. One of the primary purposes is to define and limit power of the government.

It gives the structures for the functioning of the country such as courts and parliament and limits the power.

e.g. to imprison without trial for the government.

Report Error

View Answer Report Error Discuss

4 3651
Q:

India was elected as a President of General Assembly of the United Nations in 1953. Who occupied this office on behalf of India?

A) S. Radha Krishnan B) Gopalswamy Iyyengar
C) V.K. Krishna Menon D) Vijayalakshmi Pandit
 
Answer & Explanation Answer: D) Vijayalakshmi Pandit

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: World Organisations

9 3650
Q:

How would you use the function memmove()?

Answer

#include "mem.h"


#include "alloc.h"


main()


{


      int area;


      char *dest;


      char src[] = "Life is the camera and you are the target"


                                  "so keep smiling always";


      area = sizeof (src);


      dest = malloc (area);


      memmove (dest, src, area);


      printf("\n%s", dest);


      printf("\n%s",src);


}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

1 3649