Tuesday, 5 May 2015

NTSE - SAT (Maths) Quiz - 21

NTSE QUIZ 21 (SAT-Maths)

NTSE - SAT (Maths) Quiz - 21
MCQs
Q1: Two trains starting at the same time from two stations 240 km apart and are going in opposite directions cross each other at 160 km from one of the stations. What is the ratio of their speeds?

(a) 2 : 1
(b) 2 : 2
(c) 1 : 3
(d) 1 : 4

Q2: A positive number is by mistake divided by 6 instead of being multiplied by 6. What is the % error on the basis of correct answer?

(a) 3
(b) 97
(c) 17
(d) 83

Q3: The ratio of two numbers is 3 : 8 and their difference is 115. The greater number is

(a) 69
(b) 115
(c) 184
(d) 230

Q4: A person has to cover a distance of 6 km in 45 minutes. If he covers half of the distance in the remaining time, to cover the remaining distance in the remaining time, his speed must be

(a) 6 km/h
(b) 8 km/h
(c) 12 km/h
(d) 15 km/h

Q5: At an examination in which maximum marks are 500, A got 10% less than B, B got 25% more than C, C got 20% less than D. If A got 360 marks, what % of marks was obtained by D?

Sunday, 3 May 2015

NTSE SAT Quiz-20

NTSE SAT QUIZ-20

MCQs


Q1: Belief in equality of income and wealth is called:

(a) Capitalism
(b) Equalitarianism
(c) Altruism
(d) Socialism

Q2: Which of the following satellites helps to telecast TV network programmes all over the country?

(a) INSAT-1B
(b) Rohini
(c) Apple
(d) Aryabhatta

Q3: Latin America, Africa and Asia are jointly said to belong to the

(a) third world
(b) first world
(c) second world
(d) developed world

Q4: Which of the following is wrong?

(a) President can be removed by impeachment
(b) President is head of the state
(c) President is head of the Government
(d) President is elected by an electoral college of elected members of Lok Sabha, Rajya Sabha and Legislative Assemblies of the State.

Q5: The colour of the star is an indication of 

Saturday, 2 May 2015

CBSE Class 12 - Business Studies - CH1 - Nature and Significance of Management (V. Short Q-A)

Nature and Significance of Management
CBSE Class 12 - Business Studies - CH1 - Nature and Significance of Management (V. Short Q-A)

Very Short Q & A

Q1: Define the term 'Management'.

Answer:  Management is the  function of getting things done through people and directing the efforts of individuals towards a common objective. It is the process of conducting a set of function (planning, organizing, staffing, directing and controlling) to get the work done in an efficient and effective manner.

Q2: Which force has consisted of the essence of management?

Answer: Co-Ordination.

Q3: Why is it said that management is all-pervasive?

Answer: It is said management is all-pervasive because it is required in all spheres of business or non-business organization. Management is essential for all organisations big or small, profit or non-profit, services or manufacturing.

Q4: List the four objectives of the management.

Answer: Objectives of Management are:
  • Achieve maximum output with minimum efforts.
  • Optimum use of resources
  • Maximum prosperity
  • Human betterment and Social Justice.
Q5: "Doing the task with minimum cost" name the term associated with management?

Answer: Efficiency

Q6: Which characteristic of management is signified by the following statement?
       Statement: In organization employees are happy and satisfied (there is no chaos and effect of management is noticeable.

Answer: It signifies management is an intangible force.

Q7: "In order to be successful, an organization must change its goals according to the needs of the environment." Whish characteristics of management are highlighted in this statement?

Answer: It highlights that management is dynamic functioning.

Sunday, 26 April 2015

CBSE Class 8 Science - CH 14 - Chemical Effects of Electric Current (MCQs)

Chemical Effects of Electric Current

MCQs
CBSE Class 8 Science - CH 14 - Chemical Effects of Electric Current (MCQs)

Q1: The liquid will conduct electric current in a circuit when the vessel is filled with _________.

(a) distilled water
(b) salt solution
(c) air
(d) helium


Q2: Which of the following substance is not a good conductor of electricity?

(a) copper
(b) aluminium
(c) rubber
(d) mercury


Q3: The decomposition of liquid compound on passing an electric current though it is known as ______

(a) electroplating
(b) electrolysis
(c) magnetic effect
(d) electro-resistivity


Q4: The glowing of filament bulb is due to

Saturday, 25 April 2015

CBSE Class 10 - Maths - Polynomials - NCERT Ex 2.1

POLYNOMIALS
NCERT Exercise 2.1 and other Q & A

Q1: The graphs of y = p(x) are given in below, for some polynomials p(x). Find the number of zeroes of p(x), in each case.

CBSE Class 10 - Maths - Polynomials - NCERT Ex 2.1

Answer
(i) As shown in the graph, it does not intersect x-axis. Hence it has no real zeroes.
(ii) From the graph, it intersects x-axis at one point. ∴ it has one real zero.
(iii) As the graph shows, it intersects x-axis at three points. ∴ the graph polynomial has three real zeroes.
(iv) From the graph, it is clear it intersects x-axis at two points. Hence it has two zeroes.
(v) As the graph shows, it meets x-axis at four points. ∴ it has four real zeroes.

Thursday, 23 April 2015

CBSE Class 12 - Computer Science (C++) Questions on Class Design

Computer Science (C++) - Class Design

Questions Asked in Board Papers on Class Design

Q1(CBSE 2013):  Define a class Tourist in C++ with the following specifications:
     Data Members:
  • CarNo - to store bus number
  • Origin - to store Place name
  • Destination - to store Place name
  • Type - to store Car Type such as 'E' for Economy
  • Distance - to store the Distance in Kilometers
  • Charge - to store the Car Fare
    Member Functions:
  • A constructor function to initialize Type as 'E' and Freight as 250
  • A function CalcCharge( ) to calculate Fare as per the following criteria:
    Type Charge
    'E' 16*Distance
    'A' 22*Distance
    'L' 30*Distance

  • A function Enter( ) to allow user to enter values for CarNo, Origin, Destination, Type and Distance. Also this function should call CalcCharge( ) to calculate Fare.
  • A function Show( ) to display the content of all the data members on screen.
 Answer:
 const int BUFFSIZE = 40;
 class Tourist
 {
   // private data members
   int carNum;
   char origin[BUFFSIZE];
   char destination[BUFFSIZE];
   char carType;
   int distance;
   int charges;
  public:
    // member functions
    // constructor
   Tourist()
    {
     carType = 'E';
     charges = 250;
    }

   // calculate charges
   void CalcCharges()
    {
     if (Type == 'E')
     {
      charges = 16*distance;
     }
    else if (Type == 'A')
     {
      charges = 22*distance;
     }
    else if (Type == 'C')
     {
      charges = 30*distance;
     }
 };

 // enter values
 void Tourist::Enter()
 {
   cout << "Enter CarNo, Origin, Destination, Type, Distance:";
   cin >> carNum;
   gets(origin);
   gets(destination);
   cin >> carType >> Distance;
   CalcCharges();
 }
 
 // show/display details
 void Show()
 {
   cout << "Car No: " << carNum 
        << "\nOrigin: " << origing 
        << "\nDestination: " << destination
        << "\nType: " << carType
        << "\nDistance: " << distance
        << "\nCharges: " << charges << endl; 
 }
 };

Q2(CBSE 2012): Define a class Flat in C++ with the following description:
     Private Members:

Saturday, 18 April 2015

CBSE Class 10 - Maths - CH2 - Polynomials - Study Points

Polynomials

CBSE Class 10 - Maths - CH2 - Polynomials - Study Points


Study Points

1. An expression of the form a0 + a1x + a2x2 + ----- + anxn where an is called a polynomial in variable x of degree n. where; a0 ,a1, ----- an are real numbers and are called terms/co-efficients of the polynomial and each power of x is a non negative integer.

2. Polynomials in the variable x are denoted by f(x), g(x), h(x) etc.
    e.g. f(x) = a0 + a1x + a2x2 + ----- + anxn

3. A polynomial p(x) = a (where a is constant) is of degree 0 and is called a constant polynomial.

4. A polynomial p(x) = ax + b is of degree 1 and is called a linear polynomial. e.g. 4x - 3, 5x...

5. A polynomial p(x) = ax2 + bx + c of degree 2 and is called a quadratic polynomial.
    e.g. 3x2 -x + 5, 1- x2...

6. A polynomial p(x) = ax3 + bx2 + cx + d of degree 3 and is called a cubic polynomial.
    e.g. √5x3 - 2x2 + 5x -1...