Class 12 Ip Pre Board Set A
Class 12 Ip Pre Board Set A
PRE-BOARD 1 (2023-24)
General Instructions:
1. This question paper contains five sections, Section A to E.
2. All questions are compulsory.
3. Section A have 18 questions carrying 01 mark each.
4. Section B has 07 Very Short Answer type questions carrying 02 marks each.
5. Section C has 05 Short Answer type questions carrying 03 marks each.
6. Section D has 03 Long Answer type questions carrying 05 marks each.
7. Section E has 02 questions carrying 04 marks each. One internal choice is given in Q35 against part
c only.
8. All programming questions are to be answered using Python Language only
PART -A
1 If different branches of a hospital in different state capitals are connected together, which type 1
of network it forms?
(a) LAN
(b) MAN
(c) WAN
(d) None of the above
2 Stealing someone’s intellectual work and representing it as another person’s work is known as 1
_____.
a. Phishing
b. Spamming
c. plagiarism
d. hacking
What may the possible output after the following query is executed?
SELECT AVG(SALRY) FROM EMPLOYEE;
(a) 5500
(b) 3666.667
(c) 5000
(d) NULL
5 Select the proper output for the following query from the options: 1
select right(substr('Innovative ideas',2,7),3);
(a) vati
(b) ati
(c) itav
(d) ita
6 URL stands for 1
(a) Universal Resource Locator
(b) Uniform Resource Locator
(c) Universal Range Limit
(d) None of the above
CRAYONS 20.00 50
GRAPH 25.00 40
BOOK
PENCIL SET 90.00 20
What will be the output after the execution of the given query?
SELECT COUNT (DISTINCT NAME) FROM Cosmetics ;
(a) 5
(b) 6
(c) 4
(d) 2
10 Consider the below given series, named Batsman, which command will be used to print 6 as 1
output?
a WD Parnell
b David Warner
c RG Sharma
d KL Rahul
e Baber Azam
f Ross Taylor
dtype: object
a. Batsman .index
b. Batsman .length
c. Batsman .values
d. Batsman .size
11 Identify the function used for reading data from a csv file. 1
a) read.csv()
b) read_csv()
c) read_data()
d) csv_read()
12 When a DataFrame is created from List of Dictionaries, then dictionary keys will become 1
______
(i) Column labels
(ii) Row labels
(iii) Both of the above
(iv) None of the above
13 An online activity that enables us to publish website or web application on the internet 1
17 Assertion(A) : Incognito browsing opens up a version of the browser that will track your 1
activity
Reasoning(R) : Incognito browsing is useful when entering sensitive data
PART-B
19 Explain the terms Static and dynamic Web pages.
2
OR
What are cookies?
Table : Hotel
EMPID Category Salary
E101 MANAGER 60000
E102 EXECUTIVE 65000
E103 CLERK 40000
E104 MANAGER 62000
E105 EXECUTIVE 50000
E106 CLERK 35000
E107 MANAGER 61000
E108 CLERK 36000
He now wants to count number of staffs under each category where the number of staffs is
more than 2. He has executed the following query:
Select category, sum(salary) from hotel where count(*)>2 group by category;
But he got an error. Identify the error(s) and rewrite the query. Also underline the correction(s)
done.
22 Write a program to create a series object using dictionary, having 3 movie names as data with 2
index labels 2000,2010 and 2020.
OR
List any one Positive impact and negative impact of usage of technology.
Name S_Price
0 Apple 220
1 Banana 45
2 Orange 160
Write suitable Python statements for the following:
ii. Add a column called Margin with the following data: [80,13,50,30].
29 Mr. Manoj who is a business man by profession faced following situations. Identify the type of 3
crime for each situation/incident happened to him?
(i) He was constantly receiving abusive emails
(ii) He clicked on an unknown link received as a result his personal sensitive information was
acquired by someone
(iii) His laptop was controlled by somebody in an unauthorised way
OR
What do you understand by Cyber crime? List any two cyber crimes? How cyber crimes are
handled in our country?
OR
Discuss the significance of Order by clause in detail with the help of suitable example
SECTION D
i. LCASE()
ii. LTRIM()
iii. SUBSTR()
iv. NOW()
v. MONTHNAME()
32 ABC Radio services is an international organization with their head office at Telangana 5
They are planning to set up its new centre at Kochi for its office and broadcasting activities. It
has 4 blocks of buildings as shown in the diagram below.
You as a network expert have to suggest the best network related solutions for their problems
raised in (i) to (v), keeping in mind the distances between the buildings and other given
parameters.
Kochi
Telangana Broadcasting
News collection
Advertisements
Recruitment
Broadcasting 50
News collection 250
Advertisements 50
Recruitment 100
i. Suggest the most appropriate location of the server inside the Kochi campus (out of
the four buildings) to get the best connectivity for maximum number of computers.
Justify your answer.
ii. Suggest and draw cable layout to efficiently connect various buildings within the
Kochi campus for a wired connectivity.
iii. Which networking device will you suggest to be procured by the company to
interconnect all the computers of various buildings of MUMBAI campus?
iv. Company is planning to get its website designed which will allow listeners to see
daily news details after registering themselves on its server. Out of the static or
dynamic, which type of website will you suggest?
v. Which of the following will you suggest to establish the online face to face
communication between the people in the ADMIN office of Telangana campus and
Kochi office?
a) Cable TV b) Email c) Video conferencing d) Text chat
OR
Write a python program to plot a line chart based on the given data to depicts the annual
gross profit (in lakhs of Rs) of a company for a period of 5 years.
SECTION E
34 Reela, a database administrator has designed a database for a watch shop. Help her by writing 1+1+2
answers of the following questions based on the given table: Watches
TABLE: WATCHES
Watchid Watch_Name Price Type Qty_Store
W001 High Time 10000 Unisex 100
W002 Life Time 15000 Ladies 150
W003 Wave 20000 Gents 200
W004 High Fashion 7000 Unisex 250
W004 Golden Time 25000 Gents 100
W005 Lady bird 8500 Ladies 150
i. Write a query to display the highest price from the table watches
ii. Write a query to display watch names in upper case.
iii. Write a query to display total number of watches under each type.
OR (Option for part iii only)
Write a query to display sum of price of watches under each type where quantity
available is more than 100.
35 Mr. Roshan, a data analyst has designed the DataFrame df that contains data about sales made 1+1+2
by 4 salesmans in two half yearlys as shown below. Answer the following questions:
First Second
Salesman1 23000 18000
Salesman2 11000 15000
Salesman3 60000 40000
Salesman4 35000 12000
B. Write Python statement to display the data of Second half yearly column of indexes
Salesman1 to Salesman3
Write Python statement to compute and display the sum of data of First column and Second
column of the above given DataFrame.