The document contains a worksheet with 20 questions related to Python programming concepts, including identifiers, operators, and data types. Each question is followed by multiple-choice answers, with the correct answers provided at the end. Additionally, a quote from the Bhagavad Gita is included at the end of the document.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0 ratings0% found this document useful (0 votes)
3 views2 pages
Lovejeet Ar Worksheet 6
The document contains a worksheet with 20 questions related to Python programming concepts, including identifiers, operators, and data types. Each question is followed by multiple-choice answers, with the correct answers provided at the end. Additionally, a quote from the Bhagavad Gita is included at the end of the document.
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 2
Last Moment Key Points
Target 35.35 – Worksheet 2
Q.No. Question 1. Which of the following is a valid identifier: i. 9type ii. _type iii. Same-type iv. True 2. Which of the following is a relational operator: i. > ii. // iii. or iv. ** 3. Which of the following is a logical operator: i. + ii. /= iii. and iv. in 4. Identify the membership operator from the following: i. in ii. not in iii. both i & ii iv. Only i 5. Which one is a arithmetic operator: i. not ii. ** iii. both i & ii iv. Only ii 6. What will be the correct output of the statement : >>>4//3.0 i. 1 ii. 1.0 iii 1.3333 iv. None of the above 7. What will be the correct output of the statement : >>> 4+2**2*10 i. 18 ii. 80 iii. 44 iv. None of the above 8. Give the output of the following code: >>> a,b=4,2 >>> a+b**2*10 i. 44 ii. 48 iii. 40 iv. 88 9. Give the output of the following code: >>> a,b = 4,2.5 >>> a-b//2**2 i. 4.0 ii. 4 iii. 0 iv. None of the above 10. Give the output of the following code: >>>a,b,c=1,2,3 >>> a//b**c+a-c*a i. -2 ii. -2.0 iii. 2.0 iv. None of the above 11. If a=1,b=2 and c= 3 then which statement will give the output as : 2.0 from the following: i. >>>a%b%c+1 ii. >>>a%b%c+1.0 iii. >>>a%b%c iv. a%b%c-1 12. Which statement will give the output as : True from the following : i. >>>not -5 ii. >>>not 5 iii. >>>not 0 iv. >>>not(5-1) 13. Give the output of the following code: >>>7*(8/(5//2)) i. 28 ii. 28.0 iii. 20 iv. 60 14. Give the output of the following code: >>>import math >>> math.ceil(1.03)+math.floor(1.03) i. 3 ii. -3.0 iii. 3.0 iv. None of the above 15. What will be the output of the following code: >>>import math >>>math.fabs(-5.03) i. 5.0 ii. 5.03 iii. -5.03 iv . None of the above Single line comments in python begin with… ...................... symbol. 16. i. # ii. “ iii. % iv. _ 17. Which of the following are the fundamental building block of a python program. i. Identifier ii. Constant iii. Punctuators iv. Tokens Last Moment Key Points Target 35.35 – Worksheet 2 18. The input() function always returns a value of ...................... type. i. Integer ii. float iii. string iv. Complex 19. ……….. function is used to determine the data type of a variable. i. type( ) ii. id( ) iii. print( ) iv. str( ) 20. The smallest individual unit in a program is known as a…………… i. Token ii. keyword iii. punctuator iv. identifier 1 ii 2 i 3 iii 4 iii 5 iv 6 ii 7 iii 8 i 9 i 10 i 11 ii 12 iii 13 ii 14 i 15 iii 16 i 17 i 18 iii 19 i 20 i
Man is made by his belief. As he believes, so he is. ~ Bhagavad Gita