Plus One Computer Application Notes Chapter 1 Fundamentals of Computer

Students can Download Chapter 1 Fundamentals of Computer Notes, Plus One Computer Application Notes helps you to revise the complete Kerala State Syllabus and score more marks in your examinations.

Kerala Plus One Computer Application Notes Chapter 1 Fundamentals of Computer

Data and Information
Data: It represents raw facts and figures. It may be a number, string(combination of characters), etc.
Eg: Alvis, 6, First
Information: It is meaningful and processed form of data
Eg: Alvis aged 6 years is in first standard.

Data Processing: Data processing is defined as a series of actions or operations that converts data into useful information.
Data processing phases (6)

  1. Capturing data – In this step acquire or collect data from the user to input into the computer.
  2. Input – It is the next step. In this step appropriate data is extracted and feed into the computer.
  3. Storage – The data entered into the computer must be stored before starting the processing.
  4. Processing/Manipulating data – It is a laborious work. It consists of various steps like computations, classification, comparison, summarization, etc. that converts input into output.
  5. Output of information – In this stage, we will get the results as information after processing the data.
  6. Distribution of information – In this phase the information(result) will be given to the concerned persons/computers.

Functional units of computer
A computer is not a single unit but it consists of many functional units(lntended to perform jobs) such as Input unit, Central Processing Unit(ALU and Control Unit), Storage (Memory) Unit and Output Unit.
1. Input Unit: Its aim is to supply data (Alphanumeric, image , audio, video, etc.) to the computer for processing. The Input devices are keyboard, mouse, scanner, mic, camera, etc

2. Central Processing Unit (CPU): It is the brain of the computer and consists of three components
Arithmetic Logic Unit(ALU) – As the name implies it performs all calculations and comparison operations.
Control Unit(CU) – It controls the overall functions of a computer.
Registers – It stores the intermediate results temporarily.

3. Storage Unit(Memory Unit): A computer has huge storage capacity. It is used to store data and instructions before starts processing. Secondly, it stores the intermediate results and thirdly it stores information(processed data), that is the final results before send to the output unit(Visual Display Unit, Printer, etc)

Two Types of the storage unit
i. Primary Storage alias Main Memory: It is further be classified into Two- Random Access Memory(RAM) and Read-Only Memory(ROM). The one and only memory that the CPU can directly access is the main memory at a very high speed. It is expensive hence storage Capacity is less. RAM is volatile (when the power is switched off the content will be erased) in nature but ROM is non-volatile (It is permanent)

ii. Secondary Storage alias Auxiliary Memory: Because of the limited storage capacity of primary memory its need arises. When a user saves a file, it will be stored in this memory hence it is permanent in nature and its, capacity is huge.
Eg: Hand Disc Drive(HDD), Compact Disc(CD), DVD, Pen Drive, Blu Ray Disc etc.

4. Output Unit: After processing the data we will get information as result, that will be given to the end user through the output unit in a human-readable form. Normally monitor and printer are used.

Computer: It is an electronic machine used to perform tasks based upon set of instructions and produce results at a high degree of accuracy and speed.
Advantages of computer:

  1. Speed – It can perform operations at a high speed.
  2. Accuracy – It produces result at a high degree of accuracy.
  3. Diligence – Unlike human beings, a computer is free from monotony, tiredness, Jack of concentration etc. We know that it is an electronic machine. Hence it can work hours without making any errors.
  4. Versatility – It is capable of performing many tasks. It is useful in many fields.
  5. Power of Remembering – A computer consists of huge amount of memory. So it can store and recall any amount of information without delay. Unlike human beings it can store huge amount of data and can be retrieved whenever the need arises.

Disadvantages of computer

  1. No. IQ: It has no intelligent quotient. Hence they are slaves and human beings are the masters. It can’t make its own decisions.
  2. No feelings: Since they are machines they have no feelings and instincts. They can perform tasks based upon the instructions given by the humans (programmers).

Number System: It is a systematic way to represent numbers in different ways. Each number system has its own Base, that is a number and that number of symbols or digits used.
The various number systems are given below:
Most Significant Digit (MSD): The digit with the most weight is called MSD. MSD is also called Left Most Digit(LMD)
Plus One Computer Application Notes Chapter 1 Fundamentals of Computer 1
Least Significant Digit (LSD): The digit with the least weight is called LSD. LSD is also called Right Most Digit(RMD)
Eg:
1) 106 : Here MSD : 1 and LSD : 6
2) 345.78: Here MSD : 3 and LSD : 8
A Binary Digit is also called a bit.
The weight of each digit of a number can be represented by the power of its base.

Number conversions
In general, to convert a decimal number into another number system(binary or octal or hexadecimal) do the following
Divide the number successively by the base of the number system do you want to convert and write down the remainders from bottom to top.
To convert a decimal fraction into another number system .multiply the number by the base of the number system do you want to convert then integer part and fractional part are separated again multiply the fractional part by the base and do the steps repeatedly until the fractional part becomes zero. Finally, write down the integer part from top to bottom.

Decimal to Binary: Divide the number by the base 2 successively and write down the remainders from bottom to top.
Plus One Computer Application Notes Chapter 1 Fundamentals of Computer 2
Decimal fraction to binary
multiply the number by the base 2 then the integer part and fractional part are separated again multiply the fractional part by the base 2 and do the steps repeatedly until the fractional part becomes zero.
Finally, write down the integer part from top to bottom.
Plus One Computer Application Notes Chapter 1 Fundamentals of Computer 3
Decimal to Octal: Divide the number by the base 8 successively and write down the remainders from bottom to top.
Plus One Computer Application Notes Chapter 1 Fundamentals of Computer 4
Decimal fraction to octal
multiply the number by the base 8 then integer part and fractional part are separated again multiply the fractional part by the base 8 and do the steps repeatedly until the fractional part becomes zero.
Finally write down the integer part from top to bottom.
Plus One Computer Application Notes Chapter 1 Fundamentals of Computer 5
Decimal to Hexadecimal: Divide the number by the base 16 successively and write down the remainders from bottom to top.
Plus One Computer Application Notes Chapter 1 Fundamentals of Computer 6
Decimal fraction to hexadecimal
multiply the number by the base 16 then integer part and fractional part are separated again multiply- the fractional part by the base 16 and do the steps repeatedly until the fractional part becomes zero. Finally write down the integer part from top to bottom.
Plus One Computer Application Notes Chapter 1 Fundamentals of Computer 7
Converting a number from any number system into decimal: For this multiply each digit by its corresponding weight and sum it up.

Binary to decimal conversion: For this multiply each bit by its corresponding weight and sum it up. The weights are power of 2.
Plus One Computer Application Notes Chapter 1 Fundamentals of Computer 8
Octal to decimal conversion: For this multiply each bit by its corresponding weight and sum it up. The weights are the power of 8.
Plus One Computer Application Notes Chapter 1 Fundamentals of Computer 9

Plus One Computer Application Notes Chapter 1 Fundamentals of Computer 10

Hexadecimal to decimal conversion: For this multiply each bit by its corresponding weight and sum it up. The weights are the power of 16.
Plus One Computer Application Notes Chapter 1 Fundamentals of Computer 11

Octal to binary conversion: Convert each octal digit into its 3-bit binary equivalent.
Consider the following table
Plus One Computer Application Notes Chapter 1 Fundamentals of Computer 12

Hexadecimal to binary conversion: Convert each Hexadecimal digit into its 4-bit binary equivalent.
Consider the following table
Plus One Computer Application Notes Chapter 1 Fundamentals of Computer 13

Binary to octal conversion
Divide the binary number into groups of 3 bits starting from the right to left(But in the fractional part start dividing from left to right). Insert necessary zeros in the left side(or right side in the case of fractional part)if needed and write down the corresponding octal equivalent.
Eg: (10100110)2= ()8?
Insert one zero in the left side to form 3 bits group
Plus One Computer Application Notes Chapter 1 Fundamentals of Computer 14

Binary to Hexadecimal conversion
Divide the binary number into groups of 4 bits starting from the right to left (But in the fractional part start dividing from left to right). Insert necessary zeros in the left side(or right side in the case of fractional part) if needed and write down the corresponding Hexadecimal equivalent.
Eg: (100100110)2 = ()16?
Insert 3 zeros in the left side to form 4 bits group
Plus One Computer Application Notes Chapter 1 Fundamentals of Computer 15

Octal to Hexadecimal conversion
First, convert an octal number into binary, then convert this binary into hexadecimal
Eg: Convert (67)8 = ( )16
Step I. First, convert this number into the binary equivalent for this do the following:
Plus One Computer Application Notes Chapter 1 Fundamentals of Computer 16
Step II. Next, convert this number into the hexadecimal equivalent for this do the following.
Plus One Computer Application Notes Chapter 1 Fundamentals of Computer 17
So the answer is (67)8 = (37)16

Hexadecimal to octal conversion
First convert Hexadecimal to binary, then convert this binary into 0ctal
Eg: Convert (A1)16 = ()8?
Step I. First convert this number into the binary equivalent. For this do the following
Plus One Computer Application Notes Chapter 1 Fundamentals of Computer 18
Step II. Next convert this number into octal equivalent. For this do the following.
So the answer is (A1)16 = (241)8

Data representation: The data stored in the computer memory is in the form of binary.

Representation of integers
There are three ways to represent integers on computers. They are as follows:

  1. Sign and Magnitude-Representation (SMR)
  2. 1’s Complement Representation
  3. 2’s Complement Representation

1) SMR: Normally a number has two parts sign and magnitude.
eg: Consider a number +5. Here + is the sign and 5 is the magnitude. In SMR the Most Significant Bit (MSB) js used to represent the sign. If MSB is 0 sign is +ve and MSB is 1 sign is -ve.
eg: If a computer has word size is 1 byte then +5 is represented as 0 0 0 0 0 1 0 1
-5 is represented as 1 0 0 0 0 1 0 1
Here MSB is used for a sign then the remaining 7 bits are used to represent magnitude. So we can represent 27 = 128 numbers. But there are negative and positive numbers. So 128 + 128 = 256 number. The numbers are 0 to +127 and 0 to -127. Here zero is repeated. So we can represent 256 – 1 = 255 numbers.

2) 1’s Complement Representation: To get the 1’s complement of a binary number, just replace every 0 with 1 and every 1 with 0. Negative numbers are represented using 1’s complement but +ve number has no 1’s complement.
eg: To find the 1 ’s complement of -21 + 21 = 0 0 0 1 0 1 0 1
To get the 1’s complement change all 0 to 1 and all 1 to 0.
-21 = 11101010
1’s complement of -21 is 1 1 1 0 1 0 1 0
Eg: 2) Find the 1’s complement of +21
Positive numbers are represented by using SMR.
+21 = 0 0 0 1 0 1 0 1 (No need to take the 1’s complement)

3) 2’s Complement Representation: To get the 2’s complement of a binary number, just add 1 to its 1’s complement +ve number has no 2’s complement.
eg:- To find the 2’s complement of -21
+21 = 0 0 0 1 0 1 0 1
First take the 1 ’s complement for this change all 1 to 0 and all 0 to 1
-21 = 1 1 1 0 1 0 1 0
Then add 1 = 1 1 1 0 1 0 1 1
2’s complement of -21 is 1 1 1 0 1 0 1 1

b) Representation of floating point numbers.
A real number consists of an integer part and fractional part and represent by using Exponent and Mantissa method. This method is also used to represent too big numbers as well as too small numbers.
Eg: .0000000000000000000000001 can be represented easily as 1 × 10-25. Here 1 is the Mantissa and -25 is the exponent.
A computer with 32 bit word length is used 24 bits for mantissa and the remaining 8 bits used to store exponent.
1. Representation of characters,
a) ASCII(American Standard Code for Information Interchange): It is 7 bits code used to represent alphanumeric and some special characters in computer memory. It is introduced by the U.S. government. Each character in the keyboard has a unique number.
Eg: ASCII code of ‘a’ is 97, when you press ‘a’ on the keyboard, a signal equivalent to 1100001 (Binary equivalent of 97 is 1100001) is passed to the computer memory. 27 = 128, hence we can represent only 128 characters by using ASCII. It is not enough to represent all the characters of a standard keyboard.

b) EBCDIC(Extended Binary Coded Decimal Interchange Code): It is an 8 bit code introduced by IBM(International Business Machine). 28 = 256 characters can be represented by using this.

c) ISCII(Indian Standard Code for Information Interchange): It uses 8 bits to represent data and introduced by the standardization committee and adopted by the Bureau of Indian Standards(BIS).

d) Unicode: The limitations to store more characters is solved by the introduction of Unicode. It uses 16 bits so 216 = 65536 characters (i.e, world’s all written language characters) can store by using this.

Representation of audio, image, and video: Various methods are used to represent an image, audio and video data. A file (image or audio or video) consists of two parts header information (such as file name, its size, format etc.) and image data(a compressed form of value pixels intensity). Image file formats are JPEG (Joint Picture Experts Group) Format, BMP (Bitmap), TIFF (Tagged Image File Format), GIF(Graphics Interchange Format), PNG (Portable Network Graphic).
Audio File formats are WAV,MP3,MIDI,AIFF etc.
Video File formats AVI, JPEG2, WMV etc.

Plus One Maths Notes Chapter 10 Straight Lines

Kerala State Board New Syllabus Plus One Maths Notes Chapter 10 Straight Lines.

Kerala Plus One Maths Notes Chapter 10 Straight Lines

I. Slope of Line
The slope of a line is the ‘tan’ of the angle the line makes with the positive direction of the x-axis. If θ is the angle then, slope = tan θ.

The slope of the x-axis is zero and that of the y-axis is not defined.

Parallel lines have the same slope.

The product of the slopes of perpendicular lines is -1.

The slope is positive if θ < 90°. The slope is negative if θ > 90°.

The slope of a line passing through two points (x1, y1) and (x2, y2) is \(\frac{y_{2}-y_{1}}{x_{2}-x_{1}}\)

If three points A, B, and C are collinear, then AB and BC have the same slope.

If m1 and m2 be slopes of two lines then, θ the angle between is given by tan θ = \(\left|\frac{m_{2}-m_{1}}{1+m_{1} m_{2}}\right|\), 1 + m1m2 ≠ 0

II. Equation of a Line
Equation of x-axis is y = 0.

Equation of y-axis is x = 0.

The equation of a horizontal line is y = a. If ‘a’ is positive then the line is above the x-axis and if negative it will be below the x-axis.

The equation of a vertical line is x = a. If ‘a’ is positive then the line is to the right of the x-axis and if negative it will be to the left of the x-axis.

Point-slope form: y – y1 = m(x – x1), where ‘m’ is the slope and (x1, y1) is a point on the line.

Two-Point form:
y – y1 = \(\frac{y_{2}-y_{1}}{x_{2}-x_{1}}\) (x – x1) where (x1, y1) and(x2, y2) are two point on the line.

Slope intercept form:
1. y = mx + c, where ‘m’ is the slope and ‘c’ is the y-intercept.
2. y = m(x – d), where ‘m’ is the slope and ‘d’ is the x-intercept.

Intercept form: \(\frac{x}{a}+\frac{y}{b}=1\) = 1, where ‘a’ and ‘b‘ are x and y intercept respectively.

Normal form: x cos θ + y sin θ = p, where ‘p’ is the length of the normal from the origin to the line and ‘θ’ is the angle the normal makes with the positive direction of the x-axis.

General equation of a Line: ax + by + c = 0, where a, b and c are real constants.
1. Slope of the line ax + by + c = 0 is \(-\frac{a}{b}\)

2. Parallel lines differ in constant term, i.e; a line parallel to ax + by + c = 0 is ax + by + k = 0.

3. A line perpendicular to ax + by + c = 0 is bx – ay + k = 0.

4. The equation of the family of lines passing through the intersection of the lines a1x + b1y + c1 = 0 and a2x + b2y + c2 = 0 is of the form a1x + b1y + c1 + k(a2x + b2y + c2) = 0.

5. The perpendicular distance of a point (x1, y1) from the line ax + by + c = 0 is \(\left|\frac{a x_{1}+b y_{1}+c}{\sqrt{a^{2}+b^{2}}}\right|\)

6. The distance between the parallel lines ax + by + c = 0 and ax + by + k = 0 is \(\left|\frac{c-k}{\sqrt{a^{2}+b^{2}}}\right|\)

7. Normal form of the equation ax + by + c = 0 is x cos θ + y sin θ = p;
Where cos θ = \(\pm \frac{a}{\sqrt{a^{2}+b^{2}}}\); sin θ = \(\pm \frac{b}{\sqrt{a^{2}+b^{2}}}\) and p = \(\pm \frac{c}{\sqrt{a^{2}+b^{2}}}\)

Proper choice of signs is made so that p should be positive.

III. Shifting of Origin
An equation corresponding to a set of points with reference to a system of coordinate axes by shifting the origin is shifted to a new point is called a translation of axes.

Let us take a point P (x, y) referred to the axes OX and OY. Let (h, k) be the coordinates of origin and P(X, Y) be the coordinate of P(x, y) with respect to the new axis. Then, the transformation relation between the old coordinates (x, y) and the new coordinates (X, Y) are given by X = x + h and Y = y + k.

Plus One Maths Notes Chapter 9 Sequences and Series

Kerala State Board New Syllabus Plus One Maths Notes Chapter 9 Sequences and Series.

Kerala Plus One Maths Notes Chapter 9 Sequences and Series

I. Sequence and Series
A sequence can be regarded as a function whose domain is the set of natural numbers or some subset of it of the type {1, 2, 3, ….., k}.
Generally denoted by a1, a2, …….., an, ………
Let a1, a2, …….., an, …….. be a sequence. Then the expression a1 + a2 + ……. + an + …….. is called the series associated with the given sequence.

II. Arithmetic Progression (AP)
A sequence a1, a2, ……, an, …….. is called an arithmetic sequence or arithmetic progression if an+1 = a2 + d, n ∈ N, where a1 is called the first term and the constant term d is called the common difference of the AP.

Standard form of an AP:
a, a + d, a + 2d, …….. where a is the first term and d is a common difference.

If a constant is added to each term of an AP, the resulting sequence is also an AP.

If a constant is subtracted to each term of an AP, the resulting sequence is also an AP.

If each term of an AP is multiplied by a constant k, the resulting sequence is also an AP. But the resulting AP will have a common difference kd.

If each term of an AP is divided by a constant k, the resulting sequence is also an AP. But the resulting AP will have a common difference \(\frac{d}{k}\).

nth term, an = a + (n – 1)d

Sum of n terms, Sn = \(\frac{n}{2}\) [2a + (n – 1)d]

Sn = \(\frac{n}{2}\) [t1 + tn]

Arithmetic mean between a and b is \(\frac{a+b}{2}\)

III. Geometric Progression (GP):
A sequence a1 + a2 + ……… + an + …….. is called Geometric sequence or Geometric progression if \(\frac{a_{k+1}}{a_{k}}=r\), k ≥ 1, where a1 is called the first term and the constant term r is called the common ratio of the AP.

Standard form of a GP:
a, ar, ar2,…… where a is the first term and r is a common difference.

nth term, tn = arn-1

Sum of n terms,
Plus One Maths Notes Chapter 9 Sequences and Series 1

Geometric mean between a and b is √ab

Arithmetic mean ≥ Geometric mean.

Infinite G.P, and its Sum G. P. of the form a + ar + ar2 + ar3 + …… ∞ is called infinite G.P.
S = \(\frac{a}{1-r}\); |r| < 1

IV. Special Series
Plus One Maths Notes Chapter 9 Sequences and Series 2

Plus One Maths Notes Chapter 8 Binomial Theorem

Kerala State Board New Syllabus Plus One Maths Notes Chapter 8 Binomial Theorem.

Kerala Plus One Maths Notes Chapter 8 Binomial Theorem

Binomial theorem gives the expansion of (a + b)n for a rational number ‘n’. In this Unit, we study the binomial theorem for positive integral indices only.

I. Binomial Theorem
The expansion of a binomial for any positive integral ‘n’ is given by the binomial theorem.
Plus One Maths Notes Chapter 8 Binomial Theorem 1
There are (n + 1) terms in the expansion of (a + b)n.

The sum of the indices of ‘a’ and ‘b’ in every term of the expansion is ‘n’.

The general term in the expansion is tr+1 = nCr an-r br

Middle term in the expansion:
1. If ‘n’ is even, \(\left(\frac{n}{2}+1\right)^{t h}\) term.

2. If ‘n’ is odd, \(\left(\frac{n+1}{2}\right)^{t h}\) and \(\left(\frac{n+1}{2}+1\right)^{b_{t}}\) term.

Plus One Maths Notes Chapter 7 Permutation and Combinations

Kerala State Board New Syllabus Plus One Maths Notes Chapter 7 Permutation and Combinations.

Kerala Plus One Maths Notes Chapter 7 Permutation and Combinations

I. Fundamental Principle of Counting
If an event can occur in ‘m’ different ways, following which another event can occur in ‘n’ different ways, then the total number of occurrences of the events in the given order is m × n.

II. Permutation
A permutation is the arrangement of some or all of a number of different objects.

Factorial notation: The notation n! represents the product of first n natural numbers,
ie; n! = n(n – 1 )(n – 2) ….. 3.2.1
1. 1! = 1
2. 0! = 1

The number of permutation of ‘n’ different objects taken ‘r’ at a time, where the objects do not repeat is n(n – 1)(n – 2)……(n – r + 1) which is denoted by nPr.
Plus One Maths Notes Chapter 7 Permutation and Combinations 1
The number of permutation of ‘n’ different objects taken ‘r’ at a time, where repetition is allowed is nr.

Permutation when all the objects are not distinct.
1. The number of permutations of ‘n’ objects, where ‘p’ objects are of the same kind and rest all different = \(\frac{n !}{p !}\)

2. The number of permutations of ‘n’ objects, where ‘p1’ objects are of one kind, ‘p2’ objects are of the second kind, …….., ‘pk‘ objects are of a kth kind and rest all different = \(\frac{n !}{p_{1} ! p_{2} ! \ldots p_{k} !}\)

III. Combinations
A combination is a selection of some or all of a number of different objects (the order of selection is not important). The number of selection of ‘n’ things taken ‘r’ at a time is nCr.
Plus One Maths Notes Chapter 7 Permutation and Combinations 2

Plus One Maths Notes Chapter 6 Linear Inequalities

Kerala State Board New Syllabus Plus One Maths Notes Chapter 6 Linear Inequalities.

Kerala Plus One Maths Notes Chapter 6 Linear Inequalities

Two real numbers or two algebraic expressions related by the symbols <, >, ≤ or ≥ form an inequality. In this unit we study linear inequalities in one and two variables, their formation and solution graphically.

I. Linear Inequalities in One Variable
The solution of an inequality in one variable is a value of the variable ‘x’ which makes it a true statement.

Equal numbers can be added or subtracted from both sides of the inequation.

If we multiply or divide both sides of an inequation by a positive number, the inequality sign will not be changed.

If we multiply or divide both sides of an inequation by a negative number, the inequality sign will be reversed.

To represent x < a (or x > a) on a number line, put a circle on the number ‘a’ and a dark line to the left (or right) of the number ‘a’.

To represent x ≤ a (or x ≥ a) on a number line, put a dark circle on the number ‘a’ and a dark line to the left (or right) of the number ‘a’.

II. Linear Inequalities in two Variables
The region containing all the solutions of an inequality is called the solution region.

In order to identify the half-plane represented by inequality, it is just sufficient to take any point (a, b) [say point (0, 0)] not on the line and check whether it satisfies the inequality or not. If it satisfies, then the inequality represents the half-plane and shade the region which contains the point, otherwise, the inequality represents that half-plane which does not contain the point within it.

If the inequality is of the type ax + by ≥ c or ax + by ≤ c, then the point on the line ax + by = c is also included in the solution. So draw a dark line in the solution region.

If the inequality is of the type ax + by > c or ax + by < c, then the point on the line ax + by = c are not to be included in the solution. So draw a broken or dotted line in the solution region.

Plus One Maths Notes Chapter 5 Complex Numbers and Quadratic Equations

Kerala State Board New Syllabus Plus One Maths Notes Chapter 5 Complex Numbers and Quadratic Equations.

Kerala Plus One Maths Notes Chapter 5 Complex Numbers and Quadratic Equations

we have studied linear equations in one and two variables and quadratic equations in one variable. We have seen that the equation x2 + 1 = 0 has no real solution since the root of a negative number does not exist in a real number. So, we need to extend the real number system to a larger number system to accommodate such numbers.

I. Complex Numbers
A number of the form a + ib, where a and b are real numbers and i = √-1.
Usually, a complex number is denoted by z, a is the real part of z denoted by Re(z) and b is the imaginary part of z denoted by Im(z).

II. Algebra of Complex Numbers

Addition: Let z1 = a + ib and z2 = c + id be two complex numbers. Then the sum z1 + z2 is obtained by adding the real and imaginary parts.

1. z1 + z2 = z2 + z1, commutative.
2. z1 + (z2 + z3) = (z1 + z2) + z3, associative.
3. 0 + i0 is the identity element.
4. -z is the inverse of z.

Multiplication: Let z1 = a + ib and z2 = c + id be two complex numbers.
Then the product z1z2 is defined as follows:
z1z2 = (ac – bd) + i(ad + bc).

1. z1z2 = z2z1, commutative.
2. z1(z2z3) = (z1z2)z3, associative.
3. 1 + i0 is the identity element.
4. \(\frac{1}{z}\) is the inverse of z.
5. z1(z2 + z3) = z1z2 + z1z3, distributive law.

Power of ‘i’: i3 = -i, i4 = 1
In general i4k = 1, i4k+1 = i, i4k+2 = -1, i4k+3 = -i

Identities:
Plus One Maths Notes Chapter 5 Complex Numbers and Quadratic Equations 1
Plus One Maths Notes Chapter 5 Complex Numbers and Quadratic Equations 2

The Modulus and Conjugate of a complex number:
Consider a complex number z = a + ib . Then, the conjugate of z is denoted by \(\bar{z}\), defined as \(\bar{z}\) = a – ib and the modulus of z is denoted by |z|, defined as \(\sqrt{a^{2}+b^{2}}\).

Properties:
Plus One Maths Notes Chapter 5 Complex Numbers and Quadratic Equations 3

III. Representation of Complex Number

Argand Plane:
Plus One Maths Notes Chapter 5 Complex Numbers and Quadratic Equations 4
A complex number z = a + ib which corresponds to the ordered pair (a, b) can be represented geometrically as the unique point P(a, b) in the XY-plane, where the real part is taken along the x-axis and the imaginary part along the y-axis. Such a plane is called the Argand Plane or Complex plane.

Polar Form:
Plus One Maths Notes Chapter 5 Complex Numbers and Quadratic Equations 5
Let the point P represent the non-zero complex number z = x + iy. Let the directed line segment OP be of length ‘r’ and be the angle which OP makes with the positive direction of the x-axis. Then, P is determined by the unique ordered pair of a real number (r, θ) called polar coordinate of the point P, where x = r cos θ, y = r sin θ and therefore the polar form of z can be represented as z = r(cos θ + i sin θ).
The principle argument of z is value ‘θ’ such that -x ≤ θ ≤ π, denoted by arg z.
To find the principle argument, we find tan α = |\(\frac{y}{x}\)|, 0 ≤ α ≤ \(\frac{\pi}{2}\)

The quadrant on which ‘P’ lies arg z =
I α
II π – α
III α – π
IV
Positive real axis 0
Negative real axis π
Positive imaginary axis \(\frac{\pi}{2}\)
Negative imaginary axis \(-\frac{\pi}{2}\)

Plus One Maths Notes Chapter 4 Principle of Mathematical Induction

Kerala State Board New Syllabus Plus One Maths Notes Chapter 4 Principle of Mathematical Induction.

Kerala Plus One Maths Notes Chapter 4 Principle of Mathematical Induction

Induction means the generalization from a particular case or facts. In contrast to deductive reasoning, inductive depends on working with each case and developing a conjecture by observing incidences till we have observed each and every case. In algebra or in another discipline of mathematics, there are certain results or statements that are formulated in terms of n, where n is a positive integer. To such statements, the well-suited principle that is based on the specific technique is known as the principle of mathematical induction.

The Principle of Mathematical Induction:
Suppose there is a statement P(n) involving the natural number n such that

1. The statement is true for n = 1, i.e; P(1) is true, and

2. If the statement is true for n = k (where k is some positive integer), then the statement is also true for n = k + 1, i.e; the truth of P(k) implies the truth of P(k+1). Then, P(n) is true for all natural numbers n.

Kerala Syllabus 10th Standard History Notes Malayalam Medium Chapter 10 Civic Consciousness Solutions

Students can Download Social Science Part 1 Chapter 10 Civic Consciousness Questions and Answers, Summary, Notes Pdf, Activity in Malayalam Medium, Kerala Syllabus 10th Standard Social Science Solutions helps you to revise the complete Kerala State Syllabus and score more marks in your examinations.

Kerala State Syllabus Class 10th Standard Social Science History Chapter 10 Notes Malayalam Medium പൗരബോധം

Civic Consciousness Textbook Questions and Answers in Malayalam

Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 1

Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 2
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 3
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 4

Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 5
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 6
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 7
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 8

Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 9
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 10
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 11
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 12

Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 13
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 14
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 15
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 16
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 17

Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 18
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 19
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 20
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 21
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 22

Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 23
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 24
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 25
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 26
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 27

Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 28
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 29
Kerala Syllabus 10th Standard Social Science Solutions Chapter 10 Civic Consciousness in Malayalam 30

Civic Consciousness Notes | Class 10 History Chapter 10 Notes Kerala Syllabus

You can Download Civic Consciousness Questions and Answers, Summary, Activity, Notes, Kerala Syllabus 10th Standard Social Science Solutions Part 1 Chapter 10 help you to revise complete Syllabus and score more marks in your examinations.

Kerala Syllabus 10th Standard Social Science Part 1 Chapter 10 Civic Consciousness Questions and Answers

SSLC History Chapter 10 Notes

Civic consciousness is an important’ idea in the contemporary world. A society lacking civic consciousness will become weak. For maintaining the unity and integrity of a nation, people having civic consciousness are unavoidable. A society with civic consciousness can only solve the problems of die society.

10th Standard Social Question 1.
Point out factors determining civic consciousness.
Answer:

  • Family
  • Education
  • Organizations
  • Social system
  • Political system

HSSLive.Guru

Civic Consciousness Question 2.
Consider the following issues in your society and suggest remedial measures using your civic consciousness

Issues What can be done?
Water scarcity
Environmental Pollution
Corruption

Answer:

Issues What can be done?
Water scarcity 1. Efficient use of water
2. Rainwater harvesting
3. Protection of water bodies
4. Give awareness to friends
Environmental Pollution 1. Waste disposal at sources
2. Afforestation
3. Do not litter waste
4. Keep surroundings clean
5. Do not bum plastics
Corruption 1. Giving awareness about evils of corruption
2. Complaining
3. Do not give bribe

Kerala SSLC Social Science Notes 2017 Question 3.
How can children be educated about Civic consciousness?
Answer:
Children need to be taught civic consciousness early because unlike a specific skill, civic consciousness is a school of thought in itself. It is belief in hygiene, respect for other members of society, and humane behavior. Begin by teaching children to keep their immediate surroundings clean and tidy. If they learn to appreciate cleanliness, they will be able to practice it outside of home as well. Explain to them that just because other people dirty their surroundings do not mean them should too.

10th Standard Science Syllabus Question 4.
Suggest the activities that can be initiated by the school for developing civic consciousness in students.
Answer:

  • Environmental day observation
  • Planting of trees
  • Class on importance of blood donation
  • Visit of orphanages
  • Awareness on storage of water and rainwater harvesting.

Civic Consciousness Example Question 5.
Analyze the role played by organizations in developing civic consciousness. ‘
Answer:

  • Develops political sense
  • Develops nationalism
  • Teacher human rights,\olerance, etc.
  • Participates in environment protection.

Question 6.
Give examples of great personalities who had shown civic consciousness
Answer:

  • APJ Abdul Kalam
  • Mother Theresa
  • Mayilamma
  • Dasharath Manjhi

Social Science Activity for Class 10 Question 7.
Find out relationship between civic sense and morality.
Answer:
Civic consciousness means social ethics. It reflects the actual personality and shows the responsibility of any person. Morality refers to those principles concerning the distinction between right and wrong or good and bad behavior.

Social Science Class 10 Kerala Syllabus Question 8.
Describe the role of democracy in developing civic consciousness.
Answer:
Democracy plays significant role in developing civic consciousness. Democracy is the base of all factors contributing to civic consciousness. Rather than an administrative system, democracy is a lifestyle. In each and every human activity, there should be a democratic approach. It is the requirement of a democratic society to develop a group of people having co-operation and tolerance. So democracy will enable us to think about one fellow man, and protect their freedom, equality, and human rights. In short, democracy is the key element of civic sense.

10 Standard Science Question 9.
There are instances of moral and immoral activities in our society. Identify them and fill the following table.

Moral activities Immoral activities
1. 1.
2. 2.

Answer:

Moral activities Immoral activities
1. Earn money by hard work 1. Earns money by exploiting others
2. Protects public properties 2. Spoils public properties
3. Helps fellow beings 3. Hurts fellow beings
4. Plant trees 4. Cut trees

These are many factors which help the formation of civic consciousness. Family, education, democratic system, etc., help the formation of the civic consciousness. There is a close relation between civic consciousness and morality.

Question 10.
Given below-some activities with civic sense and with-out civic consciousness. Mark (✓) against the one having civic sense an (✗) against the one having no civic sense.

Statement Have conscio­usness Have no conscio­usness
1. Traffic rules should be obeyed while driving in rush roads.
2. There is nothing wrong in littering domestic wastes in public places
3. It is my responsibility too to protect historical monuments
4. It is my duty to protect nature.
5. There is no need to complain against injustice
6. In unavoidable/ necessary circumstances, correction is permissible
7. The elders should be respected and protected.

Answer:

Statement Have civic consciousness Have no civic consc­iousness
1. Traffic rules should be obeyed while driving in rush roads.
2. There is nothing wrong in littering domestic wastes in public places
3. It is my responsibility too to protect historical monuments
4. It is my duty to protect nature.
5. There is no need to. complaint against injustice
6. In unavoidable/necessary circumstances, correction is permissible
7. The elders should be respected and protected.

Civic consciousness faces many challenges. The basis of civic consciousness is the activities for the betterment of the society. Media also play an important role in fostering civic consciousness.

Civic Consciousness Model Questions & Answers

Question 11.
What do you mean by civic consciousness?
Answer:
Civic consciousness means social ethics. It reflects the actual personality and shows the responsibility of any person.

HSSLive.Guru

Question 12.
Why is civic consciousness important?
Answer:
Separatism, vandalism, intolerance, racism, road rage etc. are all examples of lack of civic consciousness. People are becoming less and less tolerant of each other, of other’s cultures, backgrounds, and other similar traits. India has really diverse people and the need of the hour is general civic sense. It is not uncommon to read or hear about communal friction. Even living in the city has become difficult because people have no consideration whatsoever for fellow city-dwellers.

When civic consciousness is absent in a society, it leads to a lot of problems. Disregard for the law is a primary cause for lacking civic sense. A person who has high civic values does not resort to shortcuts and unethical tactics to get his work done. And being unethical in daily activities does not benefit anyone, as the behavior only gets emulated by other members of society. Ultimately, the situation will reach a point where hardly anything can be done to restore it.

For example, being inconsiderate towards fellow society members will only come right back at you. You have to be social, mature and unbiased when it comes to situations in public. The current state of public transport, for example, is disheartening. And we have no one to blame but ourselves for this condition. There are spit marks, urine, vulgar graffiti, random garbage and overflowing sewers at every nook and corner of India. No city in this country has managed to fight the menace. It is easy to pin everything on the government, but people must first question themselves and their own civic sense. Roads are not dirty because nobody cleaned it, but because somebody dirtied it in the first place.

And such dirt and grime is not acceptable to anybody; it exists only because everybody does it. Even swine flu, which is quickly spreading across the coun: try, was caused by the absence of hygiene. It does not help that people are irresponsible with the disposal of bio-waste. And people continue to indulge in such behavior in spite of knowing the harmful effect. Using everybody does it is an excuse. In India, even prominent personalities indulge in proud displays of lack of civic sense. Take, for example, ministers who delay planes with complete disregard for other passengers or companies that freely pollute rivers and lakes. Itis difficult for a country to change its mindset when its leaders themselves are setting bad examples, round the clock, all the time.

Question 13.
Point out the evils that will be developed in the absence of civic sense.
Answer:
Separatism, vandalism, intolerance, racism, road rage

Question 14.
Point out the I importance of family values in Life
Answer:

  • A family is a unit of parents and the children. Value is defined as the quality or worth of a thing.
  • Social standards and customs defined by a family prove the emotional and physical basis for a child.
  • Values developed by a family are the foundation for how children learn, grow and function in the world. These beliefs transmit the way of life a child lives and changes into an individual in a
  • society.
  • These values and morals guide the individual every time in his actions. Children tun out to be a good person because of the value taught and given by his family members.
  • Ideas passed down from generation to generation make up a family values. It answers the basic question of how one want to like the family life. Family values enhance the character and turn the children to be good human beings.
  • Beliefs and trusts built around a family helps the children to be responsible and conscientious adults.
  • A child has a strong sense of what is right and wrong and are less likely to become victim of deviant influences.
  • Children who are influenced by strong moral values identify them in others quickly which then produces a new generation with similar beliefs.

Question 15.
Where and how does civic education take place? Many institutions help develop citizens’ knowledge and skills and shape their civic character and commitments. Family, religious institutions, the media, and community groups exert important influences. Schools, however, bear a special and historic responsibility for the development of civic competence and civic responsibility. Schools fulfill that responsibility through both formal and informal education beginning in the earliest years and continuing through the entire educational process.

Question 16.
What is the major challenge of civic consciousness?
Answer:
Standing for one’s own interest by neglecting general interests of the society is the major challenge of civic consciousness.

Let Us Assess

Question 17.
Point out the characteristics of persons having civic consciousness.
Answer:

  • Social commitment.
  • Tolerance.
  • Helping Mentality
  • Environmental concerns
  • Moral values
  • Sympathy

Question 18.
Explain Civic consciousness?
Answer:
Civic sense is nothing but social ethics. It is considered by the people for the unspoken norms of society. A lot of people assume that civic sense is just about keeping the roads, streets and public property clean. But civic sense is more than that; it has to do with law-abiding, respect for fellow men and maintaining decorum in public places. A lot of foreign countries function in a smooth manner because of the strong civic sense amongst its people.

Question 19.
Discuss the role of family in inculcating civic consciousness.
Answer:
The family is important in developing the moral values of child. There is a close contact between the parents and children, which determines the personality of child.
Family is the foundation on which values are built. Moral values like truthfulness, happiness, peace, justice are instilled in children’s thoughts, feelings and actions and they function as ideals and standards that govern their actions in their life.

The value system practiced in the family becomes automatic to the young family embers if they are taught moral values systematically. The family, shapes the child’s attitude towards people and society, and helps in mental growth in the child and supports his ambitions and values. Blissful and cheerful atmosphere in the family will develop the love, affection, tolerance, and generosity.

A child learns his behavior by modeling what he sees around him. Family plays a major role in helping a child socialize and has great influence and bearing on the progress of the child. Joint family stem, the presence of elders in the family plays the effective . role in social and moral development of the children. It will also help young generation of the family to imbibe human values and eradicate their negative mental tendencies when they are among elders. Children identify themselves with their parents, other family elders and adopt them as their personal models for emulation and imitation and hero-worship them.

The behavioral problems are set correct only by the involvement of family in the child’s life as they spend most of their time in adolescence with the parents. Family is the first social organization that provides the immediate proximity from which the kid can learn his behavior.

 

Question 20.
What is civic education?
Answer:
Civic Education in a democracy is education in self-government. Democratic self-government means that citizens are actively involved in their own governance; they do not just passively accept the dictums of others or acquiesce to the demands of others. As Aristotle put it in his Politics (c 340 BC), “If liberty and equality, as is thought by some, are chiefly to be found in democracy, they will be attained when all persons alike share in the government to the utmost. “In other words, the ideals of democracy are most completely realized when every member of the political community shares in its governance.

Members of the political community are its citizens, hence citizenship in a democracy in membership in the body politic. Membership implies participation, but not participation for participation’s sake. Citizen participation in a democratic society must be based on informed, critical reflection, and on the understanding and acceptance of the rights and responsibilities that go with that membership.

Question 21.
Suggest methods for overcoming the challenges feed by civic consciousness.
Answer:
i) Critically evaluate one’s own activities.
ii) Stand for own interests without hurting public interests.
iii) Develop democratic approach.
iv) Give equal consideration to rights and duties.

Question 22.
Discuss the role of education and media in developing civic consciousness.
Answer:
The aim of education is to enable a person to practice the knowledge he learnt from various subjects in the society. In this way, education helps in developing tolerance, values, leadership qualities, scientific awareness, and environmental awareness. A society with great civic sense can be produced by value-based education.

Media also play important role in developing civic sense. Both print and electronic media influence the society. News and information are brought to the society by these media. Correct and fact-based in-formation will help in creative idea dorm action. Thus media should be free and impartial. Their role should also be evaluated critically.

HSSLive.Guru

Question 23.
Prepare a note on “Social science learning and civic consciousness”.
Answer:
The study of social science helps in developing civic sense in people. Social science itself deals with studies related to man and society. The study of social studies help in civic sense development in the following ways.

  • Social science studies help individuals to behave will in a society and respect the diversities of the nation wittolerance.
  • Social studies helps to understand the socio-political-economic and environmental issues under various
  • situations.
  • Social studies studies enable a person to suggest creative and effective solutions to solve social issues.
  • Social studies being the message of peace and coexistence into the propel.
  • Social studies familiarise examples of great personalities and thereby enrich the society with great civic sense.

Question 24. (Qn. Pool-2017)
What is meant by civic consciousness?
Answer:
Civic consciousness is the awareness that each citizen is for the society and the best interests of the society are same that of the interests of the citizen.

Question 25. (Qn. Pool-2017)
Write two problems in society due to the lack of civic consciousness. Suggest two measures to rectify them.
Answer:
Problems — Measures to rectify
Water scarcity — Rainwater harvesting
Environmental pollution — Garbage treatment of source
Corruption — Awareness against corruption
Epidemics — Awareness, cleaning
Poisoned vegetables — Organic farming (Any two)

Question 26.
What are the important factors that formulate civic consciousness?
Answer:
Family, education, associations, social system, political system.

Question 27. (Qn. Pool-2017)
Family and education play significant role in fostering civil consciousness. Substantiate.
Answer:
Family:

  • Respect elders
  • Foster responsibility in members
  • Encourage social-services

Education:

  • Equips to utilize knowledge for the benefit of society.
  • Creates value-based education, environmental awareness, scientific awareness, tolerance, etc.

Question 28. (Qn. Pool-2017)
Explain the role of media and democratic system in fostering civic consciousness.
Answer:
Media:

  • Truthful news and information made possible to reaches the people.
  • Do independent and impartial media work.
  • Evaluate information critically.

Democratic system:

  • Inevitable component of civic consciousness.
  • Democracy is a way of life. Foster co-operation and create awareness about liberty, equality and right.
  • Democracy is based on the rule of law.

Question 29. (Qn. Pool-2017)
Mother Teresa and Kallen Pokkudan became role models of civic consciousness based on their style of life. Substantiate.
Answer:
Mother Teresa: Nursing the destitute and charity work
Kallen Pokkudan: Planted mangroves and created environmental awareness

Question 30. (Qn. Pool-2017)
What is meant by morality?
Answer:
Morality means executing one’s duties as responsible persons with discretion to choose right from the wrong.

Question 31. (Qn. Pool-2017)
Those who tries to foster civic consciousness in society faces a number of challenges. Write two measures to overcome them.
Answer:

  • Should take up work without denying public interest.
  • Act democratically with tolerance. (Similar answers should be considered)

Question 32. (Qn. Pool-2017)
How can we utilize the study of social science in formulating civic consciousness?
Answer:

  • Respects diversity through study to social science.
  • Behave intolerance.
  • Helps to understand the various backgrounds of political, social, economic and environmental problems.
  • Equips the individual to suggest comprehensive solutions to different problems.
  • Disseminate the message of peace and co-operation among the people in society.

10 Standard Science Part Question 33. (Qn. Pool -2017)
What are the problems faced by people due to the absence of civic consciousness?
Answer:
Selfishness, absence of peace and insecurity.

Question 34. (Qn. Pool-2017)
Civic consciousness helps to solve several problems faced by society. Substantiate.
Answer:
Problems — Measures to rectify
Scarcity of water — Rainwater harvesting
Environmental pollution — Garbage disposal at source
Corruption —Awareness against corruption

Question 35. (Qn. Pool-2017)
Associations can promote environmental awareness and awareness on human rights in individuals. Substantiate.
Answer:
Possible. Several associations are working in the fields of environmental protection, human rights protection, charity, etc.,

Question 36. (Orukkam – 2017)
Kerala Syllabus 10th Standard Social Science Solutions Part 1 Chapter 10 Civic Consciousness 1
Answer:
Kerala Syllabus 10th Standard Social Science Solutions Part 1 Chapter 10 Civic Consciousness 2

Question 37. (Orukkam – 2017)
The main challenge faced by civic consciousness is the mindset to do anything for the sake of one’s own personal interest by.negating public interest. Find out the ways to overcome the challenges of civic consciousness.
Kerala Syllabus 10th Standard Social Science Solutions Part 1 Chapter 10 Civic Consciousness 3
Answer:
Kerala Syllabus 10th Standard Social Science Solutions Part 1 Chapter 10 Civic Consciousness 4

HSSLive.Guru

Question 38. (Orukkam – 2017)
Prepare a table and classify the following statements as activities with civic consciousness and without civic consciousness.
1. Obey traffic rules even if you are busy.
2. There is nothing wrong in disposing of garbage in public places.
3. Don’t complain against injustice.
4. It is my duty to protect historical monuments.
5. Corruption is permissible during crucial situations.
Answer:

Civic Consciousness Absence of Civic ’ Consciousness
1. Obey traffic rules even if you are ‘ busy. 1. There is nothing wrong in disposing garbage in public places.
2. It is my duty to protect historical monuments. 2. Don’t complain against injustice.
3. Corruption is permissible during crucial situations.