Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
0% found this document useful (0 votes)
4 views

Class-11-Preview of Python Worksheet

The document consists of a series of questions related to Python programming, covering topics such as operators, identifiers, data types, and built-in functions. It includes multiple-choice questions, fill-in-the-blanks, and code snippets for evaluation. The content is structured to assess knowledge of Python syntax and functionalities for a Class 11 curriculum.

Uploaded by

prafulla gouda
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
4 views

Class-11-Preview of Python Worksheet

The document consists of a series of questions related to Python programming, covering topics such as operators, identifiers, data types, and built-in functions. It includes multiple-choice questions, fill-in-the-blanks, and code snippets for evaluation. The content is structured to assess knowledge of Python syntax and functionalities for a Class 11 curriculum.

Uploaded by

prafulla gouda
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 12

PREVIEW OF CLASS-11 12) Which of the following is a valid

/DBMS/NETWORK arithmetic operator in Python?


1) Write the full form of IDLE. i) // OR ii) ? OR iii) < OR iv) and
2) Which of the following is not an 13) Find the invalid identifier from the
assignment operator? following:
i) **= a) Subtotal
ii) /= b) assert
iii) == c) temp_calc
iv) %= d) Name2
3) Write the type of tokens for the 14) Which operator is used for
following: replication?
i) _Var a) + OR b) % OR c) * OR d) //
ii) In 15) What is the value of the expression:
4) Find the correct identifiers out of the 4 + 4.00, 2 ** 4.0
following, which can be used for 16) Identify the invalid keyword in
naming variables, constants, or Python from the following:
functions in a Python program: a) True
For, while, INT, NeW, del, 1stName, b) None
Add+Subtract, name1 c) Import
5) Find the correct identifiers out of the d) return
following, which can be used for 17) Find the operator which cannot be
naming variables, constants, or used with a string in Python from the
functions in a Python program: following:
While, for, Float, int, 2ndName, a) +
A%B, Amount2, _Counter b) in
6) Which of the following is a valid c) *
logical operator? d) //
i) && OR ii) > OR iii) and OR iv) == 18) Name the mutable data types in
7) Write the data type of the following Python.
literals: 19) Find the valid identifier from the
i) 123 following:
ii) True a) My-Name
8) Which of the following is not a valid b) True
identifier name in Python? Justify c) 2ndName
your answer. d) S_name
a) 5Total 20) Identify the valid logical operator in
b) _Radius Python from the following:
c) pi a) ?
d) While b) <
9) Which of the following are valid c) **
operators in Python? d) and
i) */ OR ii) is OR iii) ^ OR iv) like 21) Which of the following can be used as
10) Which of the following are keywords valid variable identifiers in Python?
in Python? a) /
i) break OR ii) check OR iii) range b) =
OR iv) while c) ==
11) Find the invalid identifier from the d) and
following: 22) Which of the following can be used as
a) def valid variable identifiers in Python?
b) For a) 4th Sum
c) _bonus b) Total
d) First_Name
c) Number# 31)Operators Evaluation – 1 Mark
d) _Data Questions
23) Identify the mutable data types. a) 8/4 + 42 // 5 % 2 - 8
a) List b) 10 >= 5 and 7 < 12 or not 13 == 3
b) Tuple c) 6 * 3 + 42 // 5 – 8
c) Dictionary d) 10 > 5 and 7 > 12 or not 18 > 3
d) String e) 18 % 4 ** 3 // 7 + 9
24) Which of the following are valid f) 2 > 5 or 5 == 5 and not 12 <= 9
operators in Python? g) 6 * 3 + 42 // 5 – 8
a) ** h) 10 > 5 and 7 > 12 or not 18 > 3
b) between i) 51 + 4 - 33 // 19 - 3
c) like j) 1718 and not 19 == 0
d) || k) 8 * 3 + 2**3 // 9 – 4
25) Find the invalid identifier from the l) 12 > 15 and 8 > 12 or not 19 > 4
following: m) not(20 > 6) or (19 > 7) and (20 ==
a) yourName 20)
b) _false n) 17 % 20
c) 2My_Name o) 2 ** 3 ** 2
d) My_Name p) 7 // 5 + 8 * 2 / 4 – 3
26) Which of the following is a valid 32) If given A = 2, B = 1, C = 3, what will
assignment operator in Python? be the output of the following
a) ? expressions:
b) < (i) print((A > B) and (B > C) or (C >
c) *= A))
d) and (ii) print(A ** B ** C)
e) // 33) Write the output of the following
27) Which of the following is not a valid Python expressions:
identifier in Python? (a) print((4 > 5 and (2 != 1) or (4 <
a) KV2 9)))
b) _main (b) print(2 + 3 * 4 // 2 - 4)
c) Hello_Dear1 (c) print(10 % 3 – 10 // 3)
d) 7 Sisters
28) Which of the following is a valid 34. Name the Python library modules that
relational operator in Python? need to be imported to use the following
a) // functions:
b) ? (i) ceil() (ii) randrange()
c) < (iii) sin() (iv) randint()
d) and (v) sqrt() (vi) randint()
29) Find the valid identifier from the (vii) dump() (viii) random()
following: (ix) round() (x) load()
a) False (xi) writerow() (xii) sqrt()
b) Ist&2nd (xiii) replace() (xiv) load()
c) 2ndName (xv) cursor() (xvi) pi
d) My_Name (xvii) sin() (xviii) reader()
30) Identify the invalid logical operator in (xix) cursor() (xx) reader()
Python from the following: (xxi) stdin() (xxii) load()
a) and (xxiii) log() (xxiv) writer()
b) or (xxv) uniform() (xxvi) randint() (xxvii)
c) not random()
d) Boolean 35. module is used for working with CSV
files in Python?
36. Name the built-in function / method 44. Given the list Lst = [‘C’, ‘O’, ‘M’, ‘P’, ‘U’,
that is used to return the length of the ‘T’, ‘E’, ‘R’],
object. write the output of: print(Lst[3:6])
37. Name the function/method required
for: 45. What will be the output of the following
program?
(a) Finding second occurrence of 'm'
in "madam". a = 'hello'
(b) Getting the position of an item in b = 'virat'
the list. for i in range(len(a)):
38. Observe the following Python code print(a[i], b[i])
and write the name(s) of the header
file(s) which will be essentially 46. Give the output:
required to run in a Python compiler:
colors = ["violet", "indigo",
"blue", "green", "yellow",
X = randint(1,3)
Y = pow(X,3) "orange", "red"]
print(“hello”.upper()) del colors[4]
colors.remove("blue")
38. Name the built-in mathematical colors.pop(3)
print(colors)
function / method that is used to
return square root of a number. 47. If the following code is executed, what
39. Name the Python library module(s) will be the output?
which need to be imported to run the
following program: name = "Computer Science with
Python"
print(sqrt(random.randint(1,16 print(name[2:10])
)))
48. Given the list Lst = [12, 34, 4, 56, 78, 22,
40. Which of the following functions is 78, 89],
used to write data in binary mode? find the output of print(Lst[1:6:2])
(a) write() (b) output() (c) dump() (d)
49. Give the output of the following code:
send()
L = [1, 2, 3, 4, 5, 6, 7]
41. Identify the valid declaration of P: B = L
P= [‘Jan’, 31, ‘Feb’, 28] B[3:5] = 90, 34
a) dictionary print(L)

b) string 50. Write the output of the following Python


statements:
c) tuple
Array = [8, 5, 3, 2, 1, 1]
d) list print(Array[-1:-6:-1])
42. Find the output: 51. Given the list L = [1, 3, 6, 82, 5, 7, 11, 92],
what will be the output of print(L[2:5])?
A = [17, 24, 15, 30]
A.insert(2, 33) 52. Given the list L = [“H”, “T”, “W”, “P”,
print(A[-4]) “N”],
43. Find the output: write the output of print(L[3:4])

Name = “Python Examination” 53. Write the output of the following code:
print(Name[:8:-1]) t1 = [10, 12, 43, 39]
print(t1 * 3)
54. Given the list L = [1, 3, 6, 82, 5, 7, 11, 92], 63. Given the list L = [1, 30, 67, 86, 23, 15,
write the output of print(L[1:6]) 37, 131, 9232],
write the output of print(L[3:7])
55. Identify the valid declaration of L:
L = [‘Mon’, ‘23’, ‘hello’, ‘60.5’] 64. A list is declared as Lst = [1,2,3,4,5,6,8],
a) dictionary OR b) string OR c) tuple OR what will be the value of sum(Lst)?
d) list
65. Identify the valid declaration of L:
56. If the following code is executed, what L = (‘Mon’, ‘23’, ‘hello’, ‘60.5’)
will be the output? a) dictionary OR b) string OR c) tuple OR
d) list
name =
"ComputerSciencewithPython" 66. If the following code is executed, what
print(name[3:10]) will be the output?

57. Which statement is not correct? name =


a) The statement x = x + 10 is valid "Computer_Science_with_Python"
b) List slice is a list itself print(name[-25:10])
c) Lists are immutable while strings are
mutable 67. How many times is the word ‘hello’
d) Lists and strings in Python support printed in the following statement?
two-way indexing
S = 'python rocks'
58. What will be the output of the following for ch in S[3:8]:
code snippet? print('hello')

msg = “Hello Friends” a) 5 OR b) 6 OR c) 7 OR d) 4


print(msg[::-1])
68. Given the list L = [1, 3, 6, 82, 5, 7, 11, 92],
a) Hello OR b) Hello Friend OR c) 'sdneirF write the output of print(L[1:4:2])
olleH' OR d) Friend
69. Given the string x = "hello world",
59. Identify the valid declaration of L: write the output of print(x[:2], x[:-2])
L = [1, 23, ‘hi’, 6]
70. Identify the correct option to print the
a) list OR b) dictionary OR c) array OR d)
value 80 from the list L = [10, 20, 40, 80,
tuple
20, 5, 55]:
60. A list is declared as L = [(2,5,6,9,8)], a) L[80] OR b) L[4] OR c) L[L] OR d) L[3]
what will be the value of print(L[0])?
71. If a = [5, 4, 3, 2, 2, 2, 1],
61. What will be the output when the evaluate the expression: print(a[a[a[a[2]
following code is executed? + 1]]])

str1 = "helloworld" 72. Give the output of the following:


print(str1[:-1])
x = "Marvellous"
a) 'dlrowolleh' OR b) ‘hello’ OR c) ‘world’ print(x[2:7], "and", x[-4:-1])
OR d) 'helloworl'
73. What is the output produced by the
62. If the following code is executed, what following code?
will be the output?
alst = [1, 2, 3, 4, 5, 6, 7,
name = "Kendriya Vidyalaya 8, 9]
Class 12" print(alst[::3])
print(name[9:15])
74. Is there any difference in ‘a’ or “a” in
Python?
75. A string with zero characters is called aTuple = ("Orange", [10, 20,
__________ string. 30], (5, 15, 25))

76. Is there any difference between 1 or ‘1’ 90. Suppose a tuple T is declared as T =
in Python? (10, 12, 43, 39), which of the
following is incorrect?
77. Python does not support a character
91. Suppose a tuple T1 is declared as T1
type. (T/F)
= (10, 20, 30, 40, 50), which of
78. Write a code to create an empty string the following is incorrect?
'str1'. 92. Identify the data type of X:

79. What do you mean by traversing a X = tuple(list((1,2,3,4,5)))


string?
93. A tuple is declared as T =
80. What is the index value of the first (20,5,16,29,83), what will be the
element of a string? problem with the code T[1]=100?
94. Suppose a tuple T is declared as T =
81. What is the index value of the last
(10, 20, 30, 40), what will be the
element of a string?
output of print(T*2)?
82. If the length of the string is 10, what 95. What will be the output of
would be the positive index value of the print(t1.index(4)) if
last element? t1=(2,3,4,5,6)?
96. What is the length of the tuple
83. If the length of a string is 9, what would
t=(((('a',1),'b','c'),'d',2),'
be the index value of the middle
e',3)?
element?
97. A tuple is declared as T =
84. Index value of a string can be in float. (2,5,6,9,8), what will be the value
(T/F) of sum(T)?
98. Which of the following statements
85. What type of error is returned by the
will create a tuple?
following statement if the length of
99. Find the output of the following:
string 'str1' is 10?
S = 1, (2,3,4), 5, (6,7)
print(str1[13])
len(S)
86. A tuple is declared as
100. Identify the valid declaration of Rec:
t1=(1,2,3,3,5,6,5,6,7,3,8,9),
what will be the value of Rec=(1,'Vikrant',50000)
print(t1.count(3))?
87. Find the output from the following code: 101. A tuple is declared as T = (1,2),
(1,2,4), (5,3), what will be the
t=tuple() value of min(T)?
t=t+(‘Python’,) 102. Consider the tuple
print(t) DAYS=("SUN","MON","TUES"),
print(len(t))
identify the invalid statement(s).
88. Suppose a tuple T is declared as T = 103. Suppose a tuple Tup is declared as
"Yellow", 20, "Red", what will be Tup = (12, 15, 63, 80), which of
the output of print(a) after a, b, c the following is incorrect?
= T? 104. What is the output of the following
89. Choose the correct way to access value code?
20 from the tuple:
for i in range(-3,4,2):
print(i, end = '$')
105. If a = (1, 2, 3), what is the x,_, z = (3.3, 4.1, 2.2)
difference between a*3 and [a, a, print(_)
a]?
121. What is the output of the following
106. If a = (1, 2, 3), is a *3 line of code?
equivalent to a + a+ a?
107. Does a slice operator always _,_ = (3.3, 4.1, 2.2)
produce a new tuple? print(_)
108. How is an empty tuple created? 122. What is the output of the following
109. How is a tuple containing just one line of code?
element created?
110. What is the difference between x = (3.3, 4.1, 2.2) *2
(30) and (30,)? print(x)
111. Predict the output: 123. What is the output of the following
G='a','b' line of code?
H=('a','b') x = (3.3, 3.3, 4.1, 4.1, 2.2,
print(G==H) 2.2)
112. Predict the output: print(x.index(3.3))

T=(1,)*3 124. What is the output of the following


T[0]=2 line of code?
print(T)
x = (3.3, 3.3, 4.1, 4.1, 2.2,
113. Find the output: 2.2)
print(x[0::2] == x[1::2])
(a,b,c)=(1,2,3)
125. Which of the following methods
114. Find the output: will not work with a Python tuple
object?
a,b,c,d=(1,2,3) a). sort() b). count() c). index() d). None
115. Find the output: of the above

a, b, c, d, e = (p, q, r, s, 126. What will be the result of the


t) = t1 following code?

116. How can you add an extra element d1 = {“abc” : 5, “def” : 6,


“ghi” : 7}
to a tuple?
print(d1[0])
117. Which of the following will create
a tuple x? (a) abc O(b) 5 OR (c) {“abc”:5} OR (d)
118. What is the output of the following Error
line of code?
127. Which of the following statements
x= (2, 1, 4) create a dictionary?
print(len(x)) (a) d = { } OR (b) d = {“john”:40,
“peter”:45} OR (c) d = (40 : “john”, 45 :
119. What is the output of the following “peter”} OR (d) All of the above
line of code?
128. Which statement is correct for a
x,y, z = (3.3, 4.1, 2.2) dictionary?
print(x) (i) A dictionary is an ordered set of
key:value pairs
120. What is the output of the following
(ii) Each of the keys within a dictionary
line of code?
must be unique
(iii) Each of the values in the dictionary
must be unique ’Feb’, ’Mar’ and values are 31, 28, and 31
(iv) Values in the dictionary are respectively.
immutable
136. Write a statement in Python to
129. Which is the correct form of declare a dictionary whose keys are 5, 8,
declaration of a dictionary? 10 and values are May, August, and
(i) October respectively.
Day={1:’monday’,2:’tuesday’,3:
’wednesday’} 137. Write a code to add the following key-
(ii) value pairs to a given dictionary:
Day=(1;’monday’,2;’tuesday’,3;
’wednesday’) A={‘class’:’VI’,
(iii) ‘Sec’:’B’,’Rollno’:1}
Day=[1:’monday’,2:’tuesday’,3: Key | Value
’wednesday’] Fee | Done
(iv)
Route | AB
Day={1’monday’,2’tuesday’,3’we
dnesday’} 138. Which of the following is the correct
form of using dict()?
130. Declare a dictionary in Python named
(a) dict([('a' , 45), ('b',
QUAD having Keys (1,2,3,4) and Values
78)]) OR (b) dict({'a' : 45, 'b'
(“India”,”USA”,”Japan”,”Australia”).
:78}) OR (c) dict('a'=45, 'b'=78)
131. Write a statement in Python to OR (d) All of these
declare a dictionary whose keys are 1, 2,
139. Given the dictionary:
3 and values are Apple, Mango, and
Banana respectively. a={1:10,2:20,3:30}
132. Given the dictionary: (a) Write code to delete the second
element using the del command.
employee={'salary':10000,'age'
:22,'name':'Mahesh'} 140. (b) Write code to delete the third
employee.pop('age') element using the pop() function.
What is the output of
print(employee)? *********************
DBMS
133. Write the output of the following
code: 141. Which command is used to change
the number of columns in a table?
d={'amit':19,'vishal':20}
142. Which keyword is used to select
print(d.keys())
rows containing a column that
134. What will be the output of the matches a wildcard pattern?
following code? 143. Differentiate between Degree and
Cardinality.
d = {1 : “SUM”, 2 : “DIFF”, 3
144. All aggregate functions except
: “PROD”}
___________ ignore null values in
for i in d:
print(i) their input collection.
a) Count (attribute) OR b) Count (*)
(a) 1 2 3 OR (b) SUM DIFF PROD OR (c) 1 OR c) Avg () OR d) Sum ()
SUM 2 DIFF 3 PROD OR (d) 3 SUM 3 DIFF 145. Group functions can be applied to
3 PROD any numeric values, some text types,
and DATE values. (True/False)
135. Write a statement in Python to
declare a dictionary whose keys are ‘Jan’,
146. Which command is used to change
the existing information of a table?
147. Expand the term: RDBMS. 164. In SQL, write the name of the
148. Write an Aggregate function that is aggregate function which is used to
used in MySQL to find the number of calculate & display the average of
rows in a database table. numeric values in an attribute of a
149. For each attribute of a relation, relation.
there is a set of permitted values, 165. Write an SQL query to display all
called the _______ of that attribute. the attributes of a relation named
a) Dictionaries OR b) Domain OR c) “TEST” along with their description.
Directory OR d) Relation 166. What is the use of the LIKE
150. In SQL, write the query to display keyword in SQL?
the list of databases stored in MySQL. 167. Which of the following is NOT a
151. Which is not a constraint in SQL? DML command?
a) Unique OR b) Distinct OR c) a) SELECT OR b) DELETE OR c)
Primary key OR d) Check UPDATE OR d) DROP
152. Which command is used to see the 168. What is the purpose of the
structure of the table/relation? following SQL command: SHOW
a) View OR b) Describe OR c) Show DATABASES;
OR d) Select 169. Identify the error in the following
153. A virtual table is called a SQL query which is expected to
___________. delete all rows of a table TEMP
154. Which clause is used to remove the without deleting its structure and
duplicating rows of the table? write the correct one: DELETE
i) OR ii) Distinct OR iii) Any OR iv) TABLE TEMP;
Unique 170. In SQL, name the command/clause
155. Which clause is used in a query to that is used to display the rows in
place the condition on groups in descending order of a column.
MySQL? 171. In SQL, what is the error in the
i) Where OR ii) Having OR iii) Group following query: SELECT NAME,
By OR iv) None of the above SAL, DESIGNATION WHERE
156. Which command is used for DISCOUNT=NULL;
counting the number of rows in a 172. Write any two aggregate functions
database? used in SQL.
i) Row OR ii) Count OR iii) 173. Which of the following is a DML
Rowcount OR iv) Row_count command?
157. A ResultSet is an object that is a) SELECT OR b) Update OR c)
returned when a cursor object is used INSERT OR d) All
to query a table. (True/False) 174. In SQL, write the query to display
158. In SQL, name the clause that is the list of databases.
used to place a condition on groups. 175. Which of the following will
159. In SQL, which command is used to suppress the entry of a duplicate value
change the structure of an already in a column?
created table? a) Unique OR b) Distinct OR c)
160. Which operator performs pattern Primary Key OR d) NOT NULL
matching in SQL? 176. A non-key attribute whose values
161. What does the following function are derived from the primary key of
result in? count(field_name) some other table is called
162. In SQL, what are aggregate ___________.
functions? a) Alternate Key OR b) Foreign Key
OR c) Primary Key OR d) Candidate
163. How many Primary and Foreign
Key
keys can a table have?
177. Identify the DDL Command.
178. Which clause is used with a 193. Which is known as the range
SELECT command in SQL to display operator in MySQL?
the records in ascending order of an a) IN
attribute? b) BETWEEN
179. A relation has 45 tuples & 5 c) IS
attributes, what will be the Degree & d) DISTINCT
Cardinality of that relation? 194. If column “salary” of table
180. In SQL, which aggregate function “EMP” contains the dataset {10000,
is used to count all records of a table? 15000, 25000, 10000, 25000}, what
181. Anita is executing an SQL query will be the output of the following
but not getting the appropriate output. SQL statement?
Help her to do the correction: SELECT SUM(DISTINCT
Select name from teacher where SALARY) FROM EMP;
subject=Null; a) 75000
182. Sunita executes the following two b) 25000
statements but got the variation in c) 10000
result 6 and 5. Why? d) 50000
(i) select count(*) from user ; 195. Which of the following functions
(ii) select count(name) from user ; is used to find the largest value from
183. What is the difference between the given data in MySQL?
WHERE and HAVING in SQL? a) MAX()
b) MAXIMUM()
184. Write a command to add a new
c) LARGEST()
column marks in table ‘student’ with
d) BIG()
data type int.
196. Name the clause used in a query
185. Write a query to display the
to place the condition on groups in
structure of table teacher.
MySQL.
186. In SQL, what is the use of the
197. Write an SQL statement to find
BETWEEN operator?
the total number of records in table
187. In SQL, name the clause that is EMP.
used to display the tuples in ascending
198. Write a command to list the
order of an attribute.
available databases in MySQL.
188. In SQL, what is the use of the IS
199. In SQL, name the keyword used
NULL operator?
to display unique values of an
189. Write any one aggregate function attribute.
used in SQL.
200. In SQL, what is the use of the
190. Which of the following is a DDL ORDER BY clause?
command?
201. Write the function used in SQL to
a) SELECT
display the current date.
b) ALTER
c) INSERT 202. Which of the following is a DML
d) UPDATE command?
a) CREATE
191. In SQL, write the query to display
b) ALTER
the list of tables stored in a database.
c) INSERT
192. Which of the following types of d) DROP
table constraints will prevent the entry
203. In SQL, write the command/query
of duplicate rows?
to display the structure of table emp
a) CHECK
stored in a database.
b) DISTINCT
c) PRIMARY KEY 204. Which of the following types of
d) NULL column constraints will allow the
entry of unique and not null values in
the column? are coming to a network device than it
a) UNIQUE can handle and process at a time.
b) DISTINCT
c) PRIMARY KEY 216. Name the protocol that is used to
d) NULL transfer files from one computer to
another.
205. In SQL, name the clause that is
used to display the unique values of 217. Raj is a social worker. One day, he
an attribute of a table. noticed someone writing insulting or
206. In SQL, what is the use of the <> demeaning comments on his post. What
operator? kind of cybercrime is Raj facing?
207. Write any two aggregate functions
218. Name the transmission media
used in SQL.
which consists of an inner copper core
208. Which of the following is/are and a second conducting outer sheath.
DML command(s)?
a) SELECT 219. Write the expanded form of GPRS.
b) ALTER
c) DROP 220. Define Bandwidth.
d) UPDATE 221. _______________ describes the
209. In SQL, write the query to display maximum data transfer rate of a
the list of databases. network or Internet connection.
210. Which of the following types of
table constraints will not prevent 222. Mahesh wants to transfer data
NULL entries in a table? within a city at a very high speed. Write
a) UNIQUE the wired transmission medium and type
b) DISTINCT of network.
c) PRIMARY KEY 223. What is a Firewall in a Computer
d) NOT NULL Network?
211. Rearrange the following a) The physical boundary of Network
transmission media in increasing order of b) An operating System of Computer
data transfer rates: Network
UTP CAT - 5, UTP CAT – 6, IR, Bluetooth, c) A system designed to prevent
OFC unauthorized access
d) A web browsing Software

224. Which of the following is not done


NETWORK
by cyber criminals?
212. _______________ is a network a) Unauthorized account access
device that connects dissimilar networks. b) Mass attack using Trojans as botnets
c) Report vulnerability in any system
213. Give one example of each – Guided d) Email spoofing and spamming
media and Unguided media.
225. Name the wired transmission
214. Ravi received a mail from IRS media which has a higher bandwidth.
department, and upon clicking “Click –
Here,” he was taken to a site designed to 226. Name the network device that
imitate an official-looking website such connects dissimilar networks.
as IRS.gov. He uploaded some important
227. Arrange the following media in
information on it. Identify the type of
decreasing order of transmission rates:
cyber attack.
Twisted Pair Cables, Optical Fiber,
215. __________ is a specific condition Coaxial Cables.
in a network when more data packets
228. Name the protocol used for 243. Which of these is not an example
remote login. of unguided media?
(i) Optical Fibre Cable OR (ii) Radio
229. Website in-charge Kabir of a school wave OR (iii) Bluetooth OR (iv)
is handling downloading/uploading Satellite
various files on the school website. Write
the name of the protocol being used in
244. What is HTML?
the above activity. 245. Name the protocol that is used to
upload and download files on the
230. What is the use of Data Encryption internet.
in network communication? 246. Your friend Kaushal complains
that somebody accessed his mobile
231. Give the full form of the following:
device remotely and deleted important
a) URL
files. Also, he claims that the
b) TDMA
password of his social media accounts
232. Differentiate between Bps and was changed. What crime was
bps. Kaushal a victim of? Also, classify
the crime on the basis of its intent
233. Identify the Guided and Unguided (malicious/non-malicious).
Transmission Media from the following: 247. Which is not a network topology?
Satellite, Twisted Pair Cable, Optical (a) BUS OR (b) STAR OR (c) LAN
Fiber, Infra-Red waves. OR (d) RING
234. Name the protocol used to send an 248. Which of the following appears
email. harmless but actually performs
malicious functions such as deleting
235. Your friend Sunita complains that or damaging files?
somebody has created a fake profile on (a) WORM OR (b) Virus OR (c)
Twitter and is defaming her character Trojan Horse OR (d) Malware
with abusive comments and pictures. 249. Name the protocol that is used to
Identify the type of cybercrime in this send emails.
situation.
250. Your friend Ranjana complains
236. Name the transmission media best that somebody has created a fake
suitable for connecting to desert areas. profile on Facebook and is defaming
her character with abusive comments
237. Write the expanded form of VPN. and pictures. Identify the type of
cybercrime in this situation.
238. Rearrange the following terms in
increasing order of data transfer speed: 251. Name the transmission media best
Telephone line, Fiber Optics, Coaxial suitable for connecting to hilly areas.
Cable, Twisted Paired Cable. 252. Write the expanded form of Wi-Fi.
253. What does TCP/IP stand for?
239. What is Telnet? 254. An attack that encrypts files in a
240. State whether the following computer and only gets decrypted
statement is True or False: When two after paying money to the attacker.
entities are communicating and do not (a) Botnet OR (b) Trojan OR (c)
want a third party to listen, this Ransomware OR (d) Spam
situation is defined as secure 255. Write the name of the topology in
communication. which all the nodes are connected
241. Expand the term: (a) XML (b) through a single coaxial cable.
SMS 256. Write the full form of VoIP.
242. Name two web scripting languages. 257. Expand the term DHCP.
258. Name the protocol that is used for
the transfer of hypertext content over
the web.
259. In a multinational company, Mr. A
steals Mr. B’s intellectual work and
represents it as his own work without
citing the source of information. What
kind of act is this activity termed as?
260. Give at least two names for Guided
and Unguided Transmission Media in
networking.
261. Write the expanded form of Wi-Fi
and GSM.
262. Rearrange the following terms in
increasing order of data transfer rates:
Gbps, Mbps, Tbps, Kbps, bps
263. Name the protocol that is used to
transfer files.
264. Your friend’s mother receives an
email to access additional services of
a bank at zero cost from some agency
asking her to fill her bank details like
credit card number and PIN in the
form attached to the mail. Identify the
type of cybercrime in this situation.
265. Name the fastest available
transmission media.
266. Write the expanded form of LAN
& MAN.
*****************

You might also like