Grade 8 Comp Sci_Term 1 Notes
Grade 8 Comp Sci_Term 1 Notes
Computer Science
NOTES 2021-‘22
1
1- NETWORKING CONCEPTS
1. What is a computer network?
A. A Computer network can be defined as a group of computers and other peripheral devices that are linked
together for the purpose of sharing data and hardware resources. Eg: If one of the computers in a network
has a printer attached to it, then all the computers in that network can access the printer and use it to print
the documents.
4. What is a Coaxial cable? Differentiate between Broadband and Baseband Coaxial cable. A. A Coaxial
cable is used in the transmission of video, communication signals, and audio. It is mainly used by the cable
television industry to connect to TVs to a cable TV service. However, this cable can also be used in networks
and has high bandwidth and greater transmission capacity. It is relatively inexpensive and can transmit data
at higher rates.
The difference between Broadband and Baseband Coaxial cables are: Broadband cables transmits multiple
signals at the same time and is used for longer distances whereas Baseband cables supports quick
transmission of a single signal at a time. It is mainly used for LANs.
3. This technology eliminates the use of 3. These waves or signals are focused into a
cables and adapters narrow beam through a plastic lens, which is
further converted into electronic signals by the
receiver.
2
6. What is the utility of Domain Name? Explain with the help of an example.
A. Domain Name is the unique name given to each website or resource connected to the Internet. Domain
names are easier to remember than IP addresses. A Domain name consists of two parts. One is the name of
the domain and the other is the web extension. The name of the domain comes before the dot(.) symbol
and the extension comes after it.
Example: The domain name for Phoenix Greens website is WWW.phoenixgreens.com.
phoenixgreens is the name of the domain and com is the extension.
(ii) Modem: A modem enables you to connect your computer to the available Internet connection over the
existing telephone lines. It converts the digital signals of a computer into analog signals to enable their
transmission via phone lines. At the destination, the receiving modem further converts the analog signal
into digital signals so that the data can be understood at the receiving end.
(iii) Cluster Area Network: It is also known as Campus Area Network(CAN). It is a network comprising a
series of small LANs over a small geographical area, such as school campus. This network covers an area
smaller than MAN.
(ii) Router and Repeater: Router is a communication device used to connect two different networks
whereas Repeater is a communication device used to regenerate a signal. Router plays a vital role in
controlling the traffic and keeping the network efficient whereas Repeater receives electronic signals,
cleans them, and retransmits them.
3
3- WORKING WITH MS ACCESS 2010
Hyperlink data type can store links to webpages, websites, files on an Intranet or LAN on your computer. It
stores upto to 1 GB of data.
(1) Tables: Tables are the building blocks of a database. They store the complete data in a structured
manner, i.e., in the form of rows and columns. Every table has a finite number of rows and columns. (2)
Data: A set of characters that represents a valid value is known as data.
(3) Reports: Reports are used to display the selected data in a printable format. Reports collect the
summarised data from one or more tables/queries and organise it in a printable form.
4
4. WORKING WITH QUERIES
1. What is a Query?
A. A Query is a simple question that one asks to find specific information from the database. A Query is a
database object that helps us to retrieve and view information from one or more database tables that meet
a specific condition or criterion. The information retrieved on the basis of a specified criterion in the query
is stored in a separate table, called a Query table.
A Parameter query is a type of Select query that prompts you for input before it runs. The query then uses
your input as the criterion that controls the results.
5
7. REVIEW PYTHON
2. What is the difference between the interactive mode and the Script mode of Python?
A. In the Interactive mode of Python, the interpreter executes the statements one by one. After the first
statement is executed successfully, it moves to the next statement. It means that in the interactive mode,
the statements are executed line by line giving the output instantaneously, whereas, in Script mode Python
does not automatically display results. To write lengthy programs, we use the Script mode in which we can
create and edit the programs. The files created in the Script mode can be saved for later use.
3. What is the purpose of adding a comment in the program? What are the two ways used to add the
comments in Python?
A. Comments are the statements that are added to a program with the purpose of making the code easier
to understand. The two ways used to add the comments in Python are: Single line comments and Multi line
comments.
A. The if statement is used to evaluate only one condition. It performs a course of action if the condition
evaluates to true, otherwise it skips the statements.
The if...else statement is used when either of the two different actions are to be performed depending
upon the result of the conditional expression. It works with two blocks: if and else. In case the conditional
expression evaluates to true, the statements in the if block are executed, and if the result is false, then the
statements in the else block are executed.
5. Differentiate between the function of ‘+’ operator when used with integer and string values.
A. The ‘+’ operator when used with the numbers, add the values and gives the sum as output, whereas,
when the ‘+’ operator is used with the string values, it concatenates two strings together.
A. In the statement a=10, the variable a is assigned value 10, however in the statement a==10, the value of
a is equated with 10. The ‘=’ (equal to) sign is the assignment operator in Python, whereas, ‘==’ sign is called
the equal to operator.