Discover millions of audiobooks, ebooks, and so much more with a free trial

From $11.99/month after trial. Cancel anytime.

Touchpad Plus Ver. 1.1 Class 7
Touchpad Plus Ver. 1.1 Class 7
Touchpad Plus Ver. 1.1 Class 7
Ebook281 pages1 hour

Touchpad Plus Ver. 1.1 Class 7

Rating: 0 out of 5 stars

()

Read preview

About this ebook

Computer Science Textbook Designed for Joyful Learning

KEY FEATURES
- National Education Policy 2020
- Fun Zone: contains variety of exercises to reinforce the concepts.
- Let’s Plug-in: links back to previous knowledge before starting the lesson.
- Special Chapter: on Computational Thinking and Artificial Intelligence.
- QR Code: for digital interaction.
- Artificial Intelligence: Special Chapter on Artificial Intelligence
- Computational Thinking: Special Chapter on Computational Thinking

DESCRIPTION
Touchpad PLUS (Version 1.1) is based on Windows 7 and MS Office 2010. This series contains five sections:
- Digital World section introduces fundamental and application concepts to embrace computer science and integrate them with other subjects and skills.
- Cyber Word section covers Internet literacy and makes the students aware of cybercrime and cyber security, website development, etc.
- Computational Thinking section includes interesting and engaging activities on Reasoning, Visualization, Interpretation, Critical Thinking, Information Processing and Algorithmic Intelligence and there by making them smarter.
- Coding World section introduces students to the world of coding and thus developing their problem solving and logical skills.
- Artificial Intelligence (AI) section takes the students on a voyage to the world of latest trends like Robotics and AI along with an AI game, making them future ready.

WHAT WILL YOU LEARN
You will learn about:
- Digital World
- Cyber World
- Computational Thinking
- Coding
- Artificial Intelligence

WHO THIS BOOK IS FOR
Grade - 7

TABLE OF CONTENTS
1. Number System
2. Formulas, Functions and Charts in Excel
3. More on Excel
4. Animations in Flash
5. Introduction to Photoshop
6. Internet Services
7. Computer Safety and Security
8. Introduction to HTML5 and CSS3
9. Conditional Statements in Python
10. AI for Sustainable Development Goals
11. Project Work
12. Explore More (Tech Update)
13. OGO Cyber Sample Questions
14. Glossary
LanguageEnglish
Release dateOct 5, 2021
ISBN9789390475964
Touchpad Plus Ver. 1.1 Class 7

Read more from Nisha Batra

Related to Touchpad Plus Ver. 1.1 Class 7

Related ebooks

Computers For You

View More

Reviews for Touchpad Plus Ver. 1.1 Class 7

Rating: 0 out of 5 stars
0 ratings

0 ratings0 reviews

What did you think?

Tap to rate

Review must be at least 10 words

    Book preview

    Touchpad Plus Ver. 1.1 Class 7 - Nisha Batra

    Although the words, data and information are often used interchangeably, but there is an important distinction between the two words. In the strict sense, data consists of the raw numbers that computers organise to produce information.

    From early age, we are introduced to the concept of numbers and counting. Toddlers learn at an early age that they can carry two cookies, one in each hand. Kindergarteners start counting by twos and fives. Invariably, we use the decimal number system. Our number system is based on 10, most likely because we have 10 fingers. Let us learn more about the number system.

    Number System

    A number system is simply a method of counting. Many different number systems exist. Consider a clock. Clocks have 24 hours, each composed of 60 minutes. Each minute is in turn composed of 60 seconds. When we time a race, we count in seconds and minutes. Computers, like clocks, have their own number system, the binary system.

    The digital computer represents all kinds of data and information in binary numbers. It includes audio, graphics, video, text and numbers. The total number of digits used in a number system is called its base or radix. Therefore, when someone says that they are working with number system of radix 2, it means base 2, that is, binary number system. The base is written after the number as subscript such as (512)10 is written for a number expressed in decimal number system.

    Some important number systems are given below:

    ★ Decimal number system

    ★ Binary number system

    ★ Octal number system

    ★ Hexadecimal number system

    The decimal number system is used in general. However, the computers use binary number system. The octal and hexadecimal number systems are also used in the computer.

    Decimal Number System

    The Decimal Number System consists of ten digits from 0 to 9. These digits can be used to represent any numeric value. The base of decimal number system is 10. It is the most widely used number system. The value represented by individual digit depends on the weight and position of the digit.

    Each number in this system consists of digits which are located at different positions. The position of the first digit towards left side of the decimal point is 0. The position of second digit towards left side of the decimal point is 1. Similarly, the position of first digit towards right side of decimal point is –1. The position of second digit towards right side of decimal point is –2, and so on.

    The value of the number is determined by multiplying the digits with the weight of their position and adding the results. This method is known as expansion method. The rightmost digit of the number has the lowest weight. This digit is called Least Significant Digit (LSD). The leftmost digit of a number has the highest weight. This digit is called Most Significant Digit (MSD). The digit 7 in the number 724 is the most significant digit and 4 is the least significant digit.

    The following table shows Positional weight of decimal number (724)10.

    Binary Number System

    The word binary comes from 'Bi-' meaning two. We see 'bi-' in words such as ‘bicycle‘ (two wheels) or ‘binocular’ (two eyes). The binary numbers have the base of 2.

    A computer is a machine made up of transistors, switches and other components. All these electronic components are in two mutually exclusive states, either ON or OFF. The two binary digits represent these two states. Every instruction to the computer is, therefore, converted into 0s and 1s so that it is understood and implemented. This language is therefore known as the machine language. A binary number is made up of only 0s and 1s.

    Example of Binary Number:

    110100

    There is no 2, 3, 4, 5, 6, 7, 8 or 9 in Binary!

    For Example: 1101 represents an odd number (13); 10010 represents an even number (18)

    Let us first learn how to form binary numbers.

    Binary Number System consists of two digits 0 and 1. Its base is 2. Each digit or bit in binary number system can be 0 or 1. A combination of binary numbers may be used to represent different quantities like 1001. The positional value of each digit in binary number is twice the place value or face value of the digit of its right side. The weight of each position is a power of 2.

    The place value of the digits according to position and weight is as follows:

    Octal Number System

    Octal Number System consists of eight digits from 0 to 7. The base of octal system is 8. Each digit position in this system represents a power of 8. Any digit in this system is always less than 8. Octal number system is used as a shorthand representation of long binary numbers. The number (841)8 is not valid in this number system as 8 is not a valid digit.

    Hexadecimal Number System

    The Hexadecimal Number System consists of 16 digits from 0 to 9 and A to F. The letters A to F represent decimal numbers from 10 to 15. The base of this number system is 16. Each digit position in hexadecimal system represents a power of 16. The number (764)16 is valid hexadecimal number. It is different from (764)10 which is seven hundred and sixty four. This number system provides shortcut method to represent long binary numbers.

    Decimal to Binary Conversion

    To convert a decimal number into a binary number, follow these steps:

    Step 1 Divide the decimal number by 2 (the base of the binary number system).

    Step 2 Note down the quotient and the remainder.

    Step 3 Divide the quotient obtained again by 2 and note down the resulting quotient and remainder.

    Step 4 Repeat the procedure till you reach a quotient less than 2.

    Step 5 List the last quotient and all the remainders (moving from bottom to top). You have your binary number.

    Look at the given examples to understand the conversion better.

    Example 1: Convert the decimal number 26, i.e., (26)10 to binary.

    Example 2: Convert the decimal number 64, i.e., (64)10 to binary.

    Binary to Decimal Conversion

    To convert a binary number into a decimal number, follow these steps:

    ★ Start from the rightmost digit known as the Least Significant Digit (LSD) before the fractional point, and move leftwards.

    ★ While doing so, multiply each digit by 2 raised to a particular power. The powers of 2 start from 0 and increase to 1, 2, and so on as you move leftwards.

    ★ Add up all the resulting products. You have your decimal number.

    The following examples will help you to understand the conversion.

    Example 1: What is (1111)2 in decimal number?

    = 1 × 2³ + 1 × 2² + 1 × 2¹ + 1 × 2⁰

    = 8 + 4 + 2 + 1

    = 15

    (1111)2 = (15)10

    Example 2: Convert (10111)2 to decimal number.

    = 1 × 2⁴ + 0 × 2³ + 1 × 2² + 1 × 2¹ + 1 + 2⁰

    = 16 + 0 + 4 + 2 + 1

    = 23

    (10111)2 = (23)10

    Example 3: Convert 101.101 to decimal number.

    101.101 = 1 × 2² + 0 × 2¹ + 1 × 2⁰ + 1 × 2−¹ + 0 × 2−² + 1 × 2−³

    = 1 × 4 + 0 + 1 × 1 + ½ + 0 + 1/8

    = 4 + 1 + 0.5 + 0.125

    = 5.625

    (101.101)2 = (5.625)10

    Operations on Binary Numbers

    Binary Addition

    Binary addition is similar to the addition of decimal numbers. When the value of addition exceeds the value 1, say 10 or 11, then 1 is carried over to the left of the current position. The rules for adding two binary digits are given below:

    For example, let us add the binary numbers (101111)2 and (10111)2.

    Binary Subtraction

    In binary subtraction, binary number of lower value is subtracted from the binary number of higher value. The following table explains the subtraction of digit Y from digit X. If Y is greater than X, then 1 is borrowed from the next position. When the binary digit 0 borrows 1 from the next most significant digit, it becomes 10.

    For example let us subtract the binary number (111)2 from (1000)2.

    Binary Multiplication

    Binary numbers are multiplied in the same manner as decimal numbers. When two binary numbers are multiplied, for each digit of the second number, the product of that digit of the first binary number is calculated. Then it is shifted leftwards so that its rightmost digit lines up with the digit in second number that was used. The sum of all these partial products gives the result. The following rules are followed to multiply two binary numbers.

    Enjoying the preview?
    Page 1 of 1