Questions

Q:

What does GUI stand for?

Answer

 


Graphical User Interface

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

1 3398
Q:

Differentiate between RAM & ROM?

Answer

RAM: Read / Write memory, High Speed, Volatile Memory.


ROM: Read only memory, low speed, non volite memory.

Report Error

View answer Workspace Report Error Discuss

Subject: Hardware

1 3397
Q:

In the context of memory management, what are placement and replacement algorithms?

Answer

Placement algorithms determine where in available real-memory to load a program. Common methods are first-fit, next-fit, best-fit. Replacement algorithms are used when memory is full, and one process (or part of a process) needs to be swapped out to accommodate a new program. The replacement algorithm determines which are the partitions to be swapped out.

Report Error

View answer Workspace Report Error Discuss

3 3397
Q:

How have you influenced employees to follow your strategic vision for the organization?

Answer

Tips :


Leaders develop ownership by involving employees in the decision-making and planning process. They provide resources to facilitate employee success and empower employees by devolving authority to get things done efficiently. Effective leaders develop processes that engage employees in achieving the strategic vision. 

Report Error

View answer Workspace Report Error Discuss

4 3397
Q:

In which of the following kind of organisms is the phenomenon found where in the female kills the male after copulation __________

A) Drgonfly B) Honey bee
C) Spider D) Pit viper
 
Answer & Explanation Answer: C) Spider

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

8 3397
Q:

Which one of the following Articles of the Constitution of India has provision for the President to proclaim emergency

A) Article 348 B) Article 352
C) Article 356 D) Article 360
 
Answer & Explanation Answer: B) Article 352

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

0 3397
Q:

Which organelles in the cell, other than nucleus contains DNA?

A) Centriole B) Goalgi apparatus
C) Lysosomes D) Mitochondria
 
Answer & Explanation Answer: D) Mitochondria

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

10 3396
Q:

How would you dynamically allocate a 2-D array of integers?

Answer

#include "alloc.h"


#define MAXROW 3


#define MAXcol 4


main()


{


        int *p, i, J;


        p = (int *) malloc (MAXROW * MAXCOL * sizeof (int));


         for ( i=0; i < MaxROW ; i++)


         {


                for (j=0; j < MAXCOL ; j++)


                { 


                      p [ i * MAXCOL + j] = i;


                       printf ( "%d", p [i * MAXCOL + j] );


                 }


                  printf ("\n");


          }


}

Report Error

View answer Workspace Report Error Discuss

Subject: Programming

0 3395