Monday 12 August 2019

Motivational Quotes -1 (#eduvictors)

Motivational Quotes

Watch this 18 seconds video to learn What are the three things important to be a good human being?'

Friday 9 August 2019

CBSE Class 11 - Informatics Practices - Python Basics Questions and Answers (Part-2) (#eduvictors)(#cbsenotes)

Python Basics  Q & A (Part-2)

CBSE Class 11 - Informatics Practices
CBSE Class 11 - Informatics Practices - Python Basics  Questions and  Answers (Part-2) (#eduvictors)(#cbsenotes)


Q1: What are the different modes that can be used to test Python Program?  

Answer: In Python, programs can be written in two ways namely Interactive mode and Script mode.
Interactive mode or Interpreter mode allows us to write codes in Python command prompt  (  >>> ).
Script mode is used to create and edit python source file with the extension .py


Q2: Write the command to leave python shell or interpreter.

Answer: ^D (Ctrl+D) or quit () is used to leave the interpreter.


Q3: What is the advantage of interpreter mode?

Answer:  Working in interactive mode is convenient for beginners and for testing small pieces of code, as we can test them immediately.


Wednesday 7 August 2019

CBSE Class 12 - Business Studies - Financial Markets (MCQs) (#eduvictors)(#class12BusinessStudies)

Financial Markets (MCQs)

Class 12 - Business Studies

CBSE Class 12 - Business Studies - Financial Markets (MCQs) (#eduvictors)(#class12BusinessStudies)

Q1. Primary and secondary markets

(a) Compete with each other
(b) Complement each other
(c) Function independently
(d) Control each other


Q2. Financial market facilitates business firms

(a) To raise funds
(b) To recruit workers
(c) To make more sales
(d) To minimize fund requirement



Q3. The total number of Stock Exchange in India is

(a) 20
(b) 21
(c) 22
(d) 23


Saturday 3 August 2019

CBSE Class 11 - Informatics Practices - Chapter Python Basics (Q and A) (#eduvictors)(#cbsenotes)

Python Basics 

(Q and A)
CBSE Class 11 - Informatics Practices - Chapter Python Basics (Q and A) (#eduvictors)(#cbsenotes)

CBSE Class 11 - Informatics Practices


Q1: Who developed Python languages? Name the languages Python is based on.

Answer: Python programming language was developed by Guido Van Rossum in February 1991 python is based on or influenced with two programming language

- Abc language, a teaching language created as a replacement of BASIC, and

- Modula-3


Q2: Is Python a high level language or not?

Answer: Yes, is a very high level programming language like C or Pascal.

Thursday 1 August 2019

CBSE Class 10 - Chemistry - Chapter: Chemical Reactions - Assertion Reasoning Type Questions (#eduvictors)(#cbsenotes)

Chapter: Chemical Reactions - Assertion Reasoning Type Questions 

CBSE Class 10 - Chemistry
CBSE Class 10 - Chemistry - Chapter: Chemical Reactions - Assertion Reasoning Type Questions (#eduvictors)(#cbsenotes)


The questions below consist of statements of an Assertion and a Reason. Use the following key to choose the appropriate answer:

(A) If both assertion and reason are CORRECT and the reason is the CORRECT explanation of the assertion.

(B) If both assertion and reason are CORRECT, but the reason is NOT THE CORRECT explanation of the assertion.

(C) If the assertion is CORRECT, but the reason is INCORRECT

(D) If the assertion is INCORRECT, but the reason is CORRECT

(E) If both assertion and reason are INCORRECT

QUESTIONS:

1. ASSERTION: Combustion reactions are also called exothermic oxidation reactions.
REASON: In these reactions, oxygen is added and heat energy is released.


Tuesday 30 July 2019

CBSE Class 7 Maths - Lines and Angles - Worksheet -2 (#eduvictors)(#cbsenotes)

Lines and Angles (Worksheet -2)
CBSE Class 7 Maths 

CBSE Class 7 Maths - Lines and Angles - Worksheet -2 (#eduvictors)(#cbsenotes)

Fill in the blanks


1. A/An _________ is formed when lines or line segments meet.


2. The lines that form an angle are called the _______ or the _______ of the angle. 


3. The common end point is called the _________ of the angle. 


4. The angle formed by two lines or line segments can be a/an _______ angle, where the measure of the angle is less than 90°.

Saturday 27 July 2019

CBSE Class 11 - Informatics Practices - Python Snippets -1 (Arithmetic Operators) (#cbsenotes)(#eduvictors)

Python Snippets - 1(Arithmetic Operators)

CBSE Class 11 - Informatics Practices - Python Snippets -1 (Arithmetic Operators) (#cbsenotes)(#eduvictors)

Arithmetic operators are used with numeric values to perform mathematical operations. Python supports the following arithmetic operators

+   Addition: To add two numbers i.e. a + b
-   Subtraction: To find difference of two numbers i.e. a - b
*   Multiplication: Product of two numbers e.g. 2 × 3 = 6
/   Division: To find quotient in division i.e. returning the floating-point result of the computation
%   Modulus: To remainder in division method
//  Floor Division or Intger Division i.e. rounds the result down to the nearest whole number
**  Exponentiation e.g. find 12² = 144

The above said are also called binary arithmetic operator because it requires two operands.