Questions

Q:

What is marketspace?

Answer

Marketspace refers to an information and communication based electronic exchange environment. It is a relatively new concept in marketing. Since physical boundaries no longer interfere with buy/sell decisions, the world has grown into several industry specific marketspaces which are integration of marketplaces through sophisticated computer and telecommunication technologies.

Report Error

View answer Workspace Report Error Discuss

0 3439
Q:

The instrument of instructions contained in the Government of India Act, 1935 has been incorporated in the Constitution of India in the year 1950 as ______ 

A) Fundamental Rights B) Directive Principles of the State Policy
C) Fundamental Duities D) Emergency Provisions
 
Answer & Explanation Answer: D) Emergency Provisions

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian Politics

5 3438
Q:

Ethernet system uses which of the following technology?

A) Ring B) Bus
C) Star D) Tree
 
Answer & Explanation Answer: B) Bus

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Computer
Exam Prep: Bank Exams

9 3436
Q:

Nissil granules occur in

A) Eosinophil B) Glial cell
C) Neuron D) Lymphocyte
 
Answer & Explanation Answer: C) Neuron

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Biology

6 3436
Q:

What happens when two atoms form a chemical bond?

A) Two atoms fuse together to form a chemical bond B) The atoms share or transfer electrons
C) A chemical bond forms when two atoms transfer or share protons to achieve a stable nucleus D) Like charges in the atoms cause them to stick together
 
Answer & Explanation Answer: B) The atoms share or transfer electrons

Explanation:

All chemistry is based on sharing electrons. A chemical bond forms when two atoms transfer or share outer electrons to complete their outer shells.

Report Error

View Answer Report Error Discuss

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

6 3436
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 3436
Q:

Which of the following is regarded by historians as a crucial stage in describing the progress of civilization?

A) Writing B) The discovery of fire
C) Agriculture D) The use of internet
 
Answer & Explanation Answer: C) Agriculture

Explanation:
Report Error

View Answer Report Error Discuss

Filed Under: Indian History

3 3435
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 3434