Grade 11 Final Revision first semester
Grade 11 Final Revision first semester
-1-
6. CHALLENGE QUESTION: Why is a Ring network more secure than a Bus?
Because you need to hack all computers on a Ring network to see all
the network traffic
Because it is a closed loop
Because buses have lots of windows
Because it requires less cable
4. You have learned that there are three types of network topology.
Which one is NOT network topology ?
BUS
WAN
RING
STAR
5. Bus topology are the fastest network topology. What is the speed of
Bus topology ?
100Mbps
1000Mbps
10Mbps
1mbps
Tree topology
Bus Topology
Ring topology
Star topology
11. A term that refers to the way in which the nodes of a network are
linked together.
a) network
b) topology
c) connection
d) interconnectivity
12. A network comprising o multiple topologies.
a) Complex
b) Hybrid
c) Bus
d) Star
a) Star
b) Ring
c) Bus
d) Daisy Chaining
a) Star
b) Mesh
c) Ring
d) Bus
-3-
15.______ topology requires a multipoint connection.
a) Star
b) Mesh
c) Ring
d) Bus
a) LAN
b) WAN
c) MAN
d) PAN
a. Mesh
b. Star
c. Bus
d. Ring
a. Mesh
b. Star
c. Bus
d. Ring
-4-
Multipoint topology is
a. Bus
b. Star
c. Mesh
d. Ring
a. Multipoint linking
c. None of Above
d. Both a and b
a. LAN
b. MAN
c. WAN
d. Internetwork
a. Star
b. Bus
c. Ring
d. Hybrid
-5-
The topology with highest reliability is ?
a. Bus topology
b. Star topology
c. Ring Topology
d. Mesh Topology
a. HUB
b. Switch
c. Only a
d. Both a and b
a. Mesh
b. Bus
c. Ring
d. stub
a. An active hub
b. A passive hub
-7-
-8-
-9-
-10-
https://www.proprofs.com/quiz-school/browse
=====================================================================
1. Data integrity restrictions serve to _____.
a. restrict the amount of data accessed by users
b. control data input formats and ensure data-entry validity
c. ensure consistency in repeatedly entered data
d. conserve storage space
2. Data redundancy results from _____.
a. essential data not appearing in the database
b. identical data appearing in multiple places in the database
c. identical data accessed by multiple users
d. identical data inputted in multiple formats
-11-
Third : (dynamic web application)
Question 1:
<?php>...</?>
<script>...</script>
<?php...?>
<&>...</&>
Question 3:
!
$
&
Question 5:
;
?>
New line
.
-12-
Question 6:
JavaScript
Perl and C
VBScript
Question 7:
False
True
Question 8:
In PHP you can use both single quotes ( ' ' ) and double quotes
( " " ) for strings:
True
False
Question 9:
True
False
Question 10:
Question 11:
function myFunction()
create myFunction()
new_function myFunction()
-13-
Question 12:
True
False
Question 13:
$my-Var
$my_Var
$myVar
Question 17:
True
False
Question 20:
==
!=
===
=
-15-
Forth :SQL Statement :
CREATE TABLE:
DELETE:
INSERT:
-16-
ORDER BY:
SELECT column_name
FROM table_name
ORDER BY column_name ASC | DESC;
ORDER BY is a clause that indicates you want to sort the result set by a particular
column either alphabetically or numerically.
SELECT:
SELECT column_name
FROM table_name;
SELECT statements are used to fetch data from a database. Every query will begin
with SELECT.
SELECT DISTINCT:
UPDATE:
UPDATE table_name
SET some_column = some_value
WHERE some_column = some_value;
UPDATE statements allow you to edit rows in a table.
WHERE:
SELECT column_name(s)
FROM table_name
WHERE column_name operator value;
WHERE is a clause that indicates you want to filter the result set to include only rows
where the following condition is true.
ALTER TABLE:
ALTER TABLE table_name
ADD column_name datatype;
ALTER TABLE lets you add columns to a table in a database.
-17-
Very Important Notes
CREATE TABLE statements create database tables. These statements
specify each of the columns in a table and specify table-level constraints such
as foreign references.
INSERT statements add rows to database tables.
DELETE statements delete rows from database tables.
UPDATE statements modify rows in database tables.
SELECT statements are used to retrieve data from database tables.
These statements return tables, often constructed from columns from
multiple tables.
-18-
Sql Statements Examples :
SELECT *
FROM emp;
This statement display all column from table emp
SELECT ename,
FROM emp
WHERE ename ='KING'
This statement display ename column where name=king
-19-
INSERT INTO Albums (AlbumName, ArtistId) VALUES
('Ziltoid the Omniscient', '12');
UPDATE Artists
SET ArtistName = 'The Artist Formerly Known as Prince'
WHERE ArtistName = 'Prince';
we update the value of the ArtistName column in the Artists table.
Revision finished
Good luck
-20-