



Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
IMPORTANT QUESTIONS FOR BOARD EXAMINATIONS
Typology: High school final essays
1 / 7
This page cannot be seen from the preview
Don't miss anything!




General Instructions: ● All questions are compulsory. ● Question paper is divided into 4 sections A, B, C and D.
(a) Which of the following is valid arithmetic operator in Python: (i) // (ii)? (iii) < (iv) and
(b) Write the type of tokens from the following: (i) if (ii) roll_no
(c) Name the Python Library modules which need to be imported to invoke the following functions: (i) sin() (ii) randint ()
(d) Rewrite the following code in python after removing all syntax error(s). Underline each correction done in the code. 30=To for K in range(0,To) IF k%4==0: print (K*4) Else: print (K+3)
(e) Find and write the output of the following python code: def fun(s): k=len(s) m=" " for i in range(0,k): if(s[i].isupper()): m=m+s[i].lower() elif s[i].isalpha(): m=m+s[i].upper() else: m=m+'bb' print(m) fun('school2@com')
(f) Find and write the output of the following python code: 3
def Change(P ,Q=30): P=P+Q Q=P-Q print( P,"#",Q) return (P) R= S= R=Change(R,S) print(R,"#",S) S=Change(S) (g) What possible outputs(s) are expected to be displayed on screen at the time of execution of the program from the following code? Also specify the maximum values that can be assigned to each of the variables FROM and TO. import random AR=[20,30,40,50,60,70]; FROM=random.randint(1,3) TO=random.randint(2,4) for K in range(FROM,TO+1): print (AR[K],end=”#“) (i) 10#40#70# (ii) 30#40# 50 # (iii) 50#60#70# (iv) 40#50#7 0 #
Q2. (a) What do you understand by the term Iteration? 1 (b) Which is the correct form of declaration of dictionary? (i) Day={1:’monday’,2:’tuesday’,3:’wednesday’} (ii) Day=(1;’monday’,2;’tuesday’,3;’wednesday’) (iii) Day=[1:’monday’,2:’tuesday’,3:’wednesday’] (iv) Day={1’monday’,2’tuesday’,3’wednesday’]
(c) Identify the valid declaration of L: L = [1, 23, ‘hi’, 6]. (i) list (ii) dictionary (iii) array (iv) tuple
(d) Find and write the output of the following python code: x = "abcdef" i = "a" while i in x: print(i, end = " ")
Write a Recursive function recurfactorial(n) in python to calculate and return the factorial of number n passed to the parameter. (j) Write a function in Python, INSERTQ(Arr,data) and DELETEQ(Arr) for performing insertion and deletion operations in a Queue. Arr is the list used for implementing queue and data is the value to be inserted. OR Write a function in python, MakePush(Package) and MakePop(Package) to add a new Package and delete a Package from a List of Package Description, considering them to act as push and pop operations of the Stack data structure.
Q.3 Questions 3 (a) to 3 (c) : Fill in the blanks (a) ………………………..is an example of Public cloud. 1 (b) ……………………………. is a network of physical objects embedded with electronics, software, sensors and network connectivity.
(c) ---------------------- is a device that forwards data packets along networks. 1 (d) ---------------------- describes the maximum data transfer rate of a network or Internet connection.
(e) Give the full forms of the following (i) HTTP (ii) FTP (v) VoIP (vi) SSH
(f) How many pair of wires are there in twisted pair cable(Ethernet)?What is the name of port ,which is used to connect Ethernet cable to a computer or a labtop?
(g) Identify the type of cyber crime for the following situations: (i) A person complains that Rs. 4.25 lacs have been fraudulently stolen from his/her account online via some online transactions in two days using NET BANKING. (ii) A person complaints that his/her debit/credit card is safe with him still some body has done shopping/ATM transaction on this card. (iii) A person complaints that somebody has created a fake profile on Facebook and defaming his/her character with abusive comments and pictures.
(h) Software Development Company has set up its new center at Raipur for its office and web based activities. It has 4 blocks of buildings named Block A, Block B, Block C, Block D. Number of Computers
Block A 25 Block B 50 Block C 125 Block D 10 Shortest distances between various Blocks in meters: Block A to Block B 60 m Block B to Block C 40 m Block C to Block A 30 m Block D to Block C 50 m (i) Suggest the most suitable place (i.e. block) to house the server of this company with a suitable reason. (ii) Suggest the type of network to connect all the blocks with suitable reason. (iii)The company is planning to link all the blocks through a secure and high speed wired medium. Suggest a way to connect all the blocks. (iv) Suggest the most suitable wired medium for efficiently connecting each computer installed in every block out of the following network cables: ● Coaxial Cable ● Ethernet Cable ● Single Pair Telephone Cable. SECTION-C Q. 4 (a) Which key word is used to sort the records of a table in descending order? 1 (b) Which clause is used to sort the records of a table? 1 (c) Which command is used to modify the records of the table? 1 (d) Which clause is used to remove the duplicating rows of the table? 1 (e) Differentiate between Primary key and Candidate key. OR Differentiate between Degree and Cardinality.
(f) Differentiate between Django GET and POST method. 2 (g) Write a output for SQL queries (i) to (iii), which are based on the table: STUDENT 3
(d) Ravi received a mail form IRS department ( as shown above). On clicking “ Click- Here” ,he was taken to a site designed to imitate an official-looking website, such as IRS.gov. He uploaded some important information on it. Identify and explain the cybercrime being discussed in the above scenario.
(e) (^) Differentiate between open source and open data. 2 (f) Enumerate any two disability issues while teaching and using computers 2