Saturday 20 June 2015

CBSE Class 12 Business Studies CH 7 - Directing (V Short Q and A)

Directing

CBSE Class 12 Business Studies CH 7 - Directing (V Short Q and A)

V Short Q & A

Q1: Define directing.

Answer: Directing refers to the process of instructing, guiding, counselling, motivating and leading people in the organisation to achieve its objectives.

Q2: List any two essential elements of Direction.

Answer:
   1. Supervision
   2. Communication
   3. Leadership
   4. Motivation

Q3: What does Unity of Direction signify?

Answer: Unity of direction signifies the existence of only one head and one plan for a group of activities which have the same objective. It results from a sound organisation structure.

Q4: Every manager from the top executive to superior performs the function of directing.  Which characteristic of directing is referred to here?

Answer: It refers that directing takes place every level of management.

Q5: It takes place throughout the life of the organization irrespective of people occupying managerial positions. Mention the characteristic of directing high lighted here 

Answer: Directing is pervasive and it is a continuing process.

Q6: List any three factors of effective supervision.

Answer:
   1. Skills and abilities
   2. Leadership position
   3. Nature of supervision
   4. Group cohesiveness

Q7: "To oversee the subordinates at work"  Which element of directing is referred to?

Answer: Supervision

Q8: Is directing is a pervasive function of management?

Answer: Yes, as every manager from the top executive to subordinates performs it.

Q9: Which element of directing help in inspiring subordinates to give their best to the organization?

Friday 19 June 2015

CBSE Class 7 Science CH10 Respiration In Organisms (MCQs)

Respiration In Organisms

Human Respiratory System
image credits: wikipedia

MCQs

Q1: Breathing is a ________ process while respiration is a _______ process.

(a) physical, chemical
(b) chemical, physical
(c) physical, physical
(d) chemical, chemical

Q2: Organisms which respire in absence of air are called _________. 

(a) microbes
(b) anaerobes
(c) aerobes
(d) none of these

Q3: Plants breathe through tiny pores in the leaves called ________.

(a) leaf blade
(b) trachea
(c) pores
(d) stomata

Q4: In earthworm, the exchange of gases occurs through ________.

(a) lungs
(b) gills
(c) moist skin
(d) tracheae

Q5: During Inspiration or Inhalation, inside lungs

Thursday 18 June 2015

CBSE Class 6 Science CH 4 - Sorting Material Into Groups

Sorting Material Into Groups

CBSE Class 6 Science CH 4 - Sorting Material Into Groups
Sorting Into Groups
(image credits:openclipart)

MCQs

Q1: Which of the following is lustrous material?

(a) wood
(b) plastic
(c) copper
(d) chalk

Q2: Materials that are difficult to compress are called _______

(a) hard materials
(b) soft materials
(c) sponge materials
(d) none of these

Q3: Which one of the following is insoluble in water?

(a) oxygen
(b) sugar
(c) salt
(d) sawdust

Q4: As you cannot see through objects made from materials, such materials are called _________.

(a) transparent
(b) opaque
(c) translucent
(d) none of these

Q5: A material which does not dissolve completely into water is called _______.

Wednesday 17 June 2015

CBSE Class 7 Science CH 8 Winds, Storms and Cyclones (MCQs)

Winds, Storms and Cyclones 

(MCQs) 
CBSE Class 7 Science CH 8 Winds, Storms and Cyclones (MCQs)
Weather Symbols (Can you guess?)
image credits: openclipart


Q1: When wind speed increases, air pressures

(a) increases
(b) decreases
(c) remains constant
(d) none of these


Q2: What is the name given to the wind blowing from sea to land?

(a) Thunderstorm
(b) Land breeze
(c) Sea breeze
(d) cyclone


Q3: Which one of the following statement is INCORRECT?

(a) When air gets heated, it expands.
(b) when air gets cooled, it contracts.
(c) The warm air is heavier than cold air.
(d) Air moves from high pressure region to low pressure region.


Q4: The direction of airflow is also affected by Earth’s rotation. It is called ________.

(a) Coriolis Effect
(b) El nino Effect
(c) La Nina Effect
(d) Greenhouse Effect

Q5: An instrument used to study the speed of winds is called _________.

Sunday 14 June 2015

CBSE Class 7 Science CH12 Reproduction In Plants (MCQs)

Reproduction In Plants 

MCQs
Structure of Flower
Q1: Which one of the following is NOT a type of asexual reproduction?

(a) Budding
(b) Pollination
(c) Spores
(d) Fragmentation

Q2: Hydra produces by

(a) Fragmentation
(b) Budding
(c) Spores
(d) fusion of gametes

Q3: Which of the following is a male reproductive part of a flower?

(a) Stamen
(b) Pistil
(c) Stem
(d) Root

Q4: The small bulb-like projection coming out of yeast is known as ________.

(a) Fragment
(b) Spore
(c) Bud
(d) Seed

Q5: Which of the following is a male reproductive part of a flower?

CBSE Class 6 - Science - CH7: Getting To Know Plants (MCQs)(#eduvictors)(#class6Science)

GETTING TO KNOW PLANTS

CBSE Class 6 - Science - CH7: Getting To Know Plants (MCQs)

MCQs

Q1: Small plants, soft perishable stems, attain height up to five feet, generally annuals and biennials. These plants are ________.

(a) Herbs
(b) Shrubs
(c) Trees
(d) none of these

Q2: Woody perennials, attain height between 3m to 5m, bushy appearance, profusely branched stems from the ground. These plants are ______.

(a) Herbs
(b) Shrubs
(c) Trees
(d) none of these


Q3: Woody perennial, single main stem called trunk, which gives out a number of branches. These plants are _________.

(a) Herbs
(b) Shrubs
(c) Trees
(d) none of these

Q4: Tomato plant is a _________

(a) Herb
(b) Shrub
(c) Tree
(d) none of these

Q5: Mango plant is a _________

CBSE Class 12 - Computer Science - C++ - Board Questions on Header Files

Board Questions On Header Files

There is 1 or 2 Marks questions based on function mapping to header files


Q1(CBSE 2012): Write the names of the header file to which of the following belong:

   (i) sqrt( )
   (ii) randomize()

Answer: (i) math.h
              (ii) stdlib.h

Q2: Name the header file that will be needed for the following code:

   void main()
   {
     char word [] = "Board Examination";
  cout << setw(20) << word;
   }   

Answer: iostream.h (for cout), iomanip.h (for setw)

Q3(CBSE 2012): Which C++ header file(s) are especially required to be included to run the following C++ code. (Note: Do not include any header which is/are not required):

   void main()
   {
      char TEXT[] = "something";
   cout << "Remaining SMS chars: " << 160 - strlen(TEXT) << endl;
   }

Answer: iostream.h (for cout), string.h (for strlen)

Q4(CBSE 2013): Observe the following C++ code and write name(s) of the header file(s) which will be essentially required to run in a C++ compiler:

    void main()  
 {
     int number;
  cin >> number;
  if (abs(number) == number)
    cout << "positive" << endl;
 }

Answer: iostream.h (for cin, cout), math.h (for abs)