Data Handling - Solution
Data Handling - Solution
3 Data handling
Multiple Choice Questions
Question 1
1. Numeric
2. None ✓
3. Mappings
4. list ✓
5. Sequence
6. set ✓
7. tuple ✓
8. dictionary ✓
Question 2
1. Integer ✓
2. Boolean ✓
3. complex ✓
4. floating point ✓
5. list
6. None
Question 3
Which Python built-in function returns the unique number assigned to an object?
1. identity( )
2. id( ) ✓
3. refnum( )
4. ref( )
Question 5
The operator used to check if both the operands reference the same object memory, is the ..........
operator.
1. in
2. is ✓
3. id
4. ==
Question 6
For two objects x and y, the expression x is y will yield True, if and only if
1. id(x) == id(y) ✓
2. len(x) == len(y)
3. x == y
4. all of these
Question 7
1. String
2. Tuples
3. Set ✓
4. dictionary ✓
Question 8
1. integer
2. floating point ✓
3. complex
4. all of these
Question 9
1. 4
2. 4.0 ✓
3. 2.5
4. none of these
Question 10
1. 4✓
2. 4.0
3. 2.5
4. none of these
Question 11
1. True
2. False ✓
3. Only in Functions
4. Only in modules
Question 12
In Python, a variable is assigned a value of one type, and then later assigned a value of a
different type. This will yield .......... .
1. Warning
2. Error
3. None
4. No Error ✓
Question 13
In Python, a variable may be assigned a value of one type, and then later assigned a value of a
different type. This concept is known as .......... .
1. mutability
2. static typing
3. dynamic typing ✓
4. immutability
Question 14
Is it safe to directly use the == operator to determine whether objects of type float are equal ?
1. Yes
2. No ✓
3. Yes, if the values are < 100
4. Yes, if the values are > 100
Question 15
a = 8.6
b = 2
print ( a//b )
1. 4.3
2. 4.0 ✓
3. 4
4. compilation error
Question 16
1. Operands ✓
2. Expression
3. operators
4. Equation
Question 17
1. Operands
2. Expression ✓
3. operators
4. Equation
Question 18
x = 10.0
y = (x < 100.0) and x >= 10
1. 110
2. True ✓
3. False
4. Error.
Question 19
1. 0.000001 ✓
2. 'None' ✓
3. 0
4. [ ]
5. False
6. True ✓
7. 1 ✓
8. 33 ✓
9. None
10. 0.0
Question 20
import math
x = 100
print ( x > 0 and math.sqrt( x ) )
1. True
2. 1
3. 10
4. 10.0 ✓
Question 21
1. not
2. %
3. and ✓
4. +
5. **
Question 22
Question 23
To increase the value of x five times using an augmented assignment operator, the correct
expression will be
1. x += 5
2. x *= 5 ✓
3. x = x ** 5
4. none of these
Question 24
1. 0
2. 1
3. 10 ✓
4. 1.0
Question 25
1. 5✓
2. 1
3. 10
4. 0
Question 26
1. 5
2. 1
3. 10 ✓
4. 0
Question 27
Question 28
1. 0
2. 1
3. 10 ✓
4. 1.0
Question 29
What will be the result of the expression 'a' or " (" is an empty string) ?
1. 'a' ✓
2. "
3. 1
4. 0
Question 30
What will be the result of the expression 'a' and " (" is an empty string) ?
1. 'a'
2. "✓
3. 1
4. 0
Question 31
1. 'a' ✓
2. "
3. 'x'
4. 1
Question 32
1. 'a'
2. ''
3. 'x' ✓
4. 1
Question 33
1. 'a'
2. ''
3. 'None' ✓
4. 1
Question 34
1. 'a' ✓
2. ''
3. 'None'
4. 1
Question 35
1. false
2. False ✓
3. 'false'
4. 'False'
Question 36
1. false
2. False
3. 'false' ✓
4. 'False'
Two forms of floating-point numbers are: fractional form and exponent notation.
Question 3
Question 4
Question 5
Question 6
Question 7
Question 8
Question 9
Question 10
To check if two objects reference the same memory address, is operator is used.
Question 11
Question 12
Question 13
To generate a random integer in a range, randint() or random.randint() function is used.
Question 14
To generate a random number in a sequence of values where two values have a difference a step
value, randrange() or random.randrange() function is used.
Question 15
True/False Questions
Question 1
Question 2
Question 3
Question 4
Question 5
Question 6
Question 7
Value false is a legal literal value in Python.
False
Question 8
Question 9
Question 10
Question 11
Question 12
Question 13
Question 14
Question 15
Question 16
Dividing two integers results in an integer.
False
Question 17
Question 18
Two floating point numbers should not be compared for equality using ==
True
Question 19
In implicit conversion, all operands' data types are converted to the datatype of the largest
operand.
True
Question 20
Explicit type conversion involves the use of a function to convert datatype of a value.
True
Answer
Data types are used to identify the type of data a memory location can hold and the associated
operations of handling it. The data that we deal with in our programs can be of many types like
character, integer, real number, string, boolean, etc. hence programming languages including
Python provide ways and facilities to handle all these different types of data through data types.
The data types define the capabilities to handle a specific type of data such as memory space it
allocates to hold a certain type of data and the range of values supported for a given data type,
etc.
Question 2
Answer
Two integer types are supported by Python. They are:
1. Integers (signed)
2. Booleans
Question 3
How are these numbers different from one another (with respect to Python)? 33, 33.0, 33j, 33 + j
Answer
The number 33 is an integer whereas 33.0 is a floating-point number. 33j represent the imaginary
part of a complex number. 33 + j is a complex number.
Question 4
The complex numbers have two parts : real and imaginary. In which data type are real and
imaginary parts represented ?
Answer
In Python, the real and imaginary parts of a complex number are represented as floating-point
numbers.
Question 5
How many string types does Python support? How are they different from one another?
Answer
Python supports two types of strings — Single-line strings and Multi-line strings. Single line
strings are enclosed in single or double quotes and terminate in one line. Multi-line strings store
multiple lines of text and are enclosed in triple quotes.
Question 6
str1 = '''Hell
o'''
str2 = '''Hell\
o'''
print(len(str1) > len(str2))
Answer
len(str1) is 6 due to the EOL character. len(str2) is 5 as backslash (\) character is not counted in
the length of string. As len(str1) is greater than len(str2) so the output is True.
Question 7
What are Immutable and Mutable types in Python? List immutable and mutable types of Python.
Answer
Mutable types are those whose values can be changed in place whereas Immutable types are
those that can never change their value in place.
1. Lists
2. Dictionaries
3. Sets
1. Integers
2. Floating-Point numbers
3. Booleans
4. Strings
5. Tuples
Question 8
What are three internal key-attributes of a value-variable in Python ? Explain with example.
Answer
1. Type
2. Value
3. Id
a=4
The type of a is int which can be found with the built-in function type() like this:
type(a).
Value can be found using the built-in function print() like this:
print(a)
Id is the memory location of the object which can be determined using built-in function id() like
this:
id(a)
Question 9
Is it true that if two objects return True for is operator, they will also return True for == operator?
Answer
Yes, if is operator returns true, it implicitly means that the equality operator will also return True.
is operator returning true implies that both the variables point to the same object and hence ==
operator must return True.
Question 10
1. 20 and 20.0
2. 20 and int(20)
3. str(20) and str(20.0)
4. 'a' and "a"
Answer
1. The type of 20 is int whereas the type of 20.0 is float so they are two different objects.
Both have the same value of 20. So, as values are same equality (==) operator return True
but as objects are different is operator returns False.
2. The value and type of both 20 and int(20) are the same and both point to the same object
so both equality (==) and is operator returns True.
3. For str(20) and str(20.0), both equality (==) and is operator returns False as their values
are different and they point to two different objects.
4. For 'a' and "a", both equality (==) and is operator returns True as their values are same
and they point to the same object.
Question 11
Answer
In Python, an atom is something that has a value. Identifiers, literals, strings, lists, tuples, sets,
dictionaries, etc. are all atoms. An expression in Python, is any valid combination of operators
and atoms. It is composed of one or more operations.
Question 12
What is the difference between implicit type conversion and explicit type conversion?
Answer
Question 13
Two objects (say a and b) when compared using == ,return True. But Python gives False when
compared using is operator. Why? (i.e., a == b is True but why is a is b False?)
Answer
As equality (==) operator returns True, it means that a and b have the same value but as is
operator returns False, it means that variables a and b point to different objects in memory. For
example, consider the below Python statements:
>>> a = 'abc'
>>> b = input("Enter a string: ")
Enter a string: abc
>>> a == b
True
>>> a is b
False
Here, both a and b have the same value 'abc' but they point to different objects.
Question 14
(a) str1[0]
(b) str1[1]
(c) str1[-5]
(d) str1[-4]
(e) str1[5]
Answer
(a) H
(b) e
(c) H
(d) e
Explanation
Question 15
If you give the following for str1 = "Hello", why does Python report error?
str1[2] = 'p'
Answer
Python reports error because strings are immutable and hence item assignment is not supported.
Question 16
(a) type (6 + 3)
(e) type (6 // 3)
(f) type (6 % 3)
Answer
(a) type (6 + 3)
⇒ int + int
⇒ int
So the result is int.
(c) type (6 * 3)
⇒ int * int
⇒ int
So the result is int.
(d) type (6 / 3)
⇒ int / int
⇒ float
So the result is float.
(e) type (6 // 3)
⇒ int // int
⇒ int
So the result is int.
(f) type (6 % 3)
⇒ int % int
⇒ int
So the result is int.
Question 17
Answer
Augmented assignment operators combine the impact of an arithmetic operator with an
assignment operator. For example, to add the value of b to the value of a and assign the result
back to a then instead of writing:
a=a+b
we can write
a += b.
Augmented assignment operators are useful as they provide a shorthand way by combining the
arithmetic and assignment operators.
Question 18
Answer
In the first expression, 555 is of int type whereas in the second expression 555.0 is of float type.
Question 19
Given three Boolean variables a, b, c as : a = False, b = True, c = False. Evaluate the following
Boolean expressions:
(a) b and c
(b) b or c
Answer
(a) b and c
⇒ False and True
⇒ False
(b) b or c
⇒ True or False
⇒ True
Question 20
(a) 1 < x
(b) x >= 4
(c) x == 3
(d) x == 3.0
Answer
(a) True
(b) False
(c) True
(d) True
(e) True
(f) False
(g) True
(h) True
(i) False
Question 21
Answer
1 / 3 * b * b * h
Answer
math.pi * r * r * h
Answer
1 / 3 * math.pi * r * r * h
Answer
(x - h) ** 2 + (y - k) ** 2 == r ** 2
Answer
Answer
a ** n * a ** m == a ** (n + m)
Answer
(a ** n) ** m == a ** (n * m)
Answer
a ** n / a ** m == a ** (n - m)
Answer
a ** -n == 1 / a ** n
Question 22
int() converts its argument into an integer. As 'a' is a letter, it cannot be converted into a valid
integer hence int('a') produces an error.
Question 23
int('a') produces error but following expression having int('a') in it, does not return error. Why?
len('a') + 2 or int('a')
Answer
The or operator tests the second operand only if the first operand is false otherwise it ignores it.
In the expression, the first operand of or operator is len('a') + 2. It evaluates to 3 and as it is a
non-zero value hence it is True for or operator. As first operand of or operator is True so it
doesn't evaluate its second argument int('a') and no error is returned.
Question 24
Write expression to convert the values 17, len('ab') to (i) integer (ii) str (iii) boolean values
Answer
Question 25
(i) 22 / 17 = 37 / 47 + 88 /83
(ii) len('375')**2
Answer
(i) It produces an error as LHS value in this case is an expression that evaluates to a literal
whereas LHS value should be a variable.
(ii) len('375')**2
⇒ 3 ** 2 [∵ len('375') = 3]
⇒9 [∵ 3 * 3 = 9]
Question 26
Answer
As values of 22.0/7.0 and 22/7 are equal, subtracting them will give the result as 0.0.
int (22.0) gives 22 so the expression becomes 22/7 - 22/7 which results in 0.0
Question 27
Answer
(i) This produces an error as false is an invalid literal in Python. It should be False. Had the
expression being False and None, the return value will be False.
(ii) This logical expression evaluates to 0. As first operand of and operator is false so it will
return the first operand itself.
(iii) This logical expression evaluates to None. As first operand of and operator is True so it will
return the second operand.
(iv) This logical expression evaluates to None. As first operand of and operator is false so it will
return the first operand itself.
Question 28
Answer
Question 29
Evaluate the following for each expression that is successfully evaluated, determine its value and
type for unsuccessful expression, state the reason.
(d) 2 * (2 * (len("01")))
Answer
(d) 2 * (2 * (len("01")))
⇒ 2 * (2 * 2)
⇒2*4
⇒8
Question 30
Write an expression that uses exactly 3 arithmetic operators with integer literals and produces
result as 99.
Answer
9 * 10 + 21 % 12
Question 31
Add parentheses to the following expression to make the order of evaluation more clear.
Answer
Question 32
A program runs to completion but gives an incorrect result. What type of error would have
caused it?
Answer
Logical errors can make a program run till completion but give incorrect result.
Question 33
In Python, strings are immutable while lists are mutable. What is the difference?
Answer
In Python, strings are immutable means that individual letter assignment for strings is not
allowed. For example:
name='hello'
name[0] = 'p'
The above Python code will cause an error as we are trying to assign some value to an individual
letter of a string.
Lists are mutable in Python means that we can assign values to individual elements of a list. For
example:
a = [1, 2, 3, 4, 5]
a[0] = 10
The above Python code will work correctly without any errors as Lists are mutable in Python.
Question 34
How does the // operator differ from the / operator? Give an example of where // would be
needed.
Answer
The Division operator (/) divides its first operand by second operand and always returns the
result as a float value whereas Floor Division operator (//) divides its first operand by second
operand and truncates the fractional part of the result and returns it as an int value. Floor
Division operator is useful in situations where we only need the integer part of the division
operation result. For example, to determine how many minutes are there in some given number
of seconds:
secs = 2565
mins = 2565 // 60
Question 35
MidAir Airlines will only allow carry-on bags that are no more than 22 inches long, 14 inches
wide, and 9 inches deep. Assuming that variables named length, width, and depth have already
been assigned values, write an expression combining the three that evaluates to True if bag fits
within those limits, and False otherwise.
Answer
What are main error types? Which types are most dangerous and why?
Answer
Logical Errors are the most dangerous as they are hardest to prevent, find and fix.
Question 37
(a) Compile-time errors are usually easier to detect and to correct than run-time errors.
Answer
Question 38
Answer
Question 39
Differentiate between a syntax error and a logical error in a python program. When is each type
of error likely to be found?
Answer
Syntax errors are found at compile type whereas Logical errors are found when the program
starts executing.
Question 40
Answer
An Error is a bug in the code that causes irregular output or stops the program from executing
whereas an Exception is an irregular unexpected situation occurring during execution on which
programmer has no control.
What is the result produced by (i) bool (0) (ii) bool (str(0))? Justify the outcome.
Answer
The result is True as str(0) converts 0 to string "0". As it becomes a non-empty string so its truth
value is truetval
Question 2
What will be the output, if input for both the statements is 5 + 4/2.
Answer
Output of first statement is False as '5 + 4/2' is entered as a string so it cannot be equal to the
number 6.
The second statement gives an error as int() function cannot convert the string '5 + 4/2' to a valid
integer.
Question 3
Following Python code has an expression with all integer values. Why is the result in floating
point form?
a, b, c = 2, 3, 6
d = a + b * c/b
print(d)
Answer
The output of the above Python code is 8.0. Division operator is present in the expression. The
result of Division operator is of float type. Due to implicit conversion, other operand in this
expression are also converted to float type and hence the final result is in floating point form.
Question 4a
a = va = 3
b = va = 3
print (a, b)
Answer
3 3
Question 4b
a = 3
b = 3.0
print (a == b)
print (a is b)
Answer
True
False
As values of a and b are equal so equality operator returns True. a is of int type and b is of float
type so a and b are different objects so a is b returns False.
Question 5a
What will be output produced by following code? State reason for this output.
a, b, c = 1, 1, 2
d = a + b
e = 1.0
f = 1.0
g = 2.0
h = e + f
print(c == d)
print(c is d)
print(g == h)
print(g is h)
Answer
Output
True
True
True
False
Explanation
Value of d becomes 2 and as values of c and d are equal so print(c == d) prints True.
Question 5b
What will be output produced by following code? State reason for this output.
a = 5 - 4 - 3
b = 3**2**3
print(a)
print(b)
Answer
Output
-2
6561
Explanation
a=5-4-3
⇒a=1-3
⇒ a = -2
The exponentiation operator (**) has associativity from right to left so:
b = 3**2**3
⇒ b = 3**8
⇒ b = 6561
Question 5c
What will be output produced by following code? State reason for this output.
a, b, c = 1, 1, 1
d = 0.3
e=a+b+c-d
f=a+b+c == d
print(e)
print(f)
Answer
Output
2.7
False
Explanation
e = a+b+c-d
⇒ e = 1+1+1-0.3
⇒ e = 3-0.3
⇒ e = 2.7
As 0.3 is float so implicit conversion converts 3 also to float and result of the expression is of
float type.
f = a + b + c == d
⇒ f = 1 + 1 + 1 == 0.3
⇒ f = 3 == 0.3
⇒ f = False
Question 6a
a = 12
b = 7.4
c = 1
a -= b
print(a, b)
a *= 2 + c
print(a)
b += a * c
print(b)
Answer
Output
4.6 7.4
13.799999999999999
21.2
Explanation
a -= b
⇒a=a-b
⇒ a = 12 - 7.4
⇒ a = 4.6
a *= 2 + c
⇒ a = 4.6 * (2 + c)
⇒ a = 4.6 * (2 + 1)
⇒ a = 4.6 * 3
⇒ a = 13.799999999999999
b += a * c
⇒ b = b + (a * c)
⇒ b = 7.4 + (13.799999999999999 * 1)
⇒ b = 7.4 + 13.799999999999999
⇒ b = 21.2
Question 6b
x, y = 4, 8
z = x/y*y
print(z)
Answer
Output
4.0
Explanation
z = x/y*y
⇒ z = 4/8*8
⇒ z = 0.5*8
⇒ z = 4.0
Question 7
Make change in the expression for z of previous question so that the output produced is zero.
You cannot change the operators and order of variables. (Hint. Use a function around a sub-
expression)
Answer
x, y = 4, 8
z = int(x/y)*y
print(z)
Question 8
Answer
Question 9
Consider the following code segment:
a = input()
b = int(input())
c = a + b
print(c)
When the program is run, the user first enters 10 and then 5, it gives an error. Find the error, its
reason and correct it
Answer
It occurs because a is of type string but b is of type int. We are trying to add together a string
operand and an int operand using addition operator. This is not allowed in Python hence this
error occurs.
a = int(input())
Question 10
If the user runs the program and enters 11 for a and 9 for b then what will the above code
display?
Answer
Output
Explanation
input() function accepts user input as string type. The data type of a and b is string not int so
addition operator concatenates them to print 119 instead of 20.
Question 11
Find out the error and the reason for the error in the following code. Also, give the corrected
code.
a, b = "5.0", "10.0"
x = float(a/b)
print(x)
Answer
a and b are defined as strings not float or int. Division operator doesn't support strings as its
operand so we get the error — unsupported operand type(s) for /: "str" and "str".
a, b = 5.0, 10.0
x = float(a/b)
print(x)
Question 12
Consider the following program. It is supposed to compute the hypotenuse of a right triangle
after the user enters the lengths of the other two sides.
When this program is run, the following output is generated (note that input entered by the user
is shown in bold):
Answer
The error is coming because math module is not imported in the code. To resolve it, we should
import the math module using the import statement import math.
Question 13
Consider the following program. It is supposed to compute the hypotenuse of a right triangle
after the user enters the lengths of the other two sides.
After adding import math to the code given above, what other change(s) are required in the code
to make it fully work ?
Answer
After adding import math statement, we need to change the line h = sqrt(a * a + b * b) to h
= math.sqrt(a * a + b * b). The corrected working code is below:
import math
a = float(input("Enter the length of the first side:"))
b = float(input("Enter the length of the second side:"))
h = math.sqrt(a * a + b * b)
print("The length of the hypotenuse is", h)
Question 14
Which of the following expressions will result in an error message being displayed when a
program containing it is run?
(a) 2.0/4
(c) 4 % 15
(d) int("5")/float("3")
(e) float("6"/"2")
Answer
(a) No Error
(b) No Error
(c) No Error
(d) No Error
(e) This will cause an error of unsupported operand types as using division operator on string
types is not allowed in Python.
Question 15a
Following expression does not report an error even if it has a sub-expression with 'divide by zero'
problem:
3 or 10/0
What changes can you make to above expression so that Python reports this error?
Answer
Interchanging the operands of or operator as shown below will make Python report this error:
10/0 or 3
Question 15b
a, b = bool(0), bool(0.0)
c, d = str(0), str(0.0)
print (len(a), len(b))
print (len(c), len(d))
Answer
The above code will give an error as the line print (len(a), len(b)) is calling len function
with bool arguments which is not allowed in Python.
Question 16
Given a string s = "12345". Can you write an expression that gives sum of all the digits shown
inside the string s i.e., the program should be able to produce the result as 15 (1+2+3+4+5).
[Hint. Use indexes and convert to integer]
Answer
Question 17
a = True
b = 0 < 5
print (a == b)
print (a is b)
c = str (a)
d = str (b)
print (c == d)
print (c is d)
e = input ("Enter :")
print (c == e)
print (c is e)
Answer
Output
True
True
True
True
Enter :True
True
False
Explanation
Question 18a
name = "HariT"
print (name)
name[2] = 'R'
print (name)
Answer
The line name[2] = 'R' is trying to assign the letter 'R' to the second index of string name but
strings are immutable in Python and hence such item assignment for strings is not supported in
Python.
Question 18b
a = bool (0)
b = bool (1)
print (a == false)
print (b == true)
Answer
false and true are invalid literals in Python. The correct boolean literals are False and True.
Question 18c
Answer
In the line print (type (int("Hello"))), string "Hello" is given as an argument to int() but it
cannot be converted into a valid integer so it causes an error.
Question 18d
pi = 3.14
print (type (pi))
print (type ("3.14"))
print (type (float ("3.14")))
print (type (float("three point fourteen")))
Answer
In the line print (type (float("three point fourteen"))), string "three point fourteen" is
given as an argument to float() but it cannot be converted into a valid floating-point number so it
causes an error.
Question 18e
print ("Hello" + 2)
print ("Hello" + "2")
print ("Hello" * 2)
Answer
The line print ("Hello" + 2) causes an error as addition operator (+) cannot concatenate a
string and an int.
Question 18f
print ("Hello"/2)
print ("Hello" / 2)
Answer
Both the lines of this Python code will give an error as strings cannot be used with division
operator (/).
Question 19a
Answer
Output
True False
Explanation
1. x or (y and z)
⇒ True or (False and False)
⇒ True
2. (x or y) and z
⇒ (True or False) and False
⇒ True and False
⇒ False
Question 19b
x, y = '5', 2
z = x + y
print(z)
Answer
This code produces an error in the line z = x + y as operands of addition operator (+) are string
and int, respectively which is not supported by Python.
Question 19c
s = 'Sipo'
s1 = s + '2'
s2 = s * 2
print(s1)
print(s2)
Answer
Output
Sipo2
SipoSipo
Explanation
Question 19d
w, x, y, z = True , 4, -6, 2
result = -(x + z) < y or x ** z < 10
print(result)
Answer
Output
False
Explanation
Question 20
Answer
Question 21
import random
r = random.randrange(100, 999, 5)
print(r, end = ' ')
r = random.randrange(100, 999, 5)
print(r, end = ' ')
r = random.randrange(100, 999, 5)
print(r)
Which of the following are the possible outcomes of the above code ? Also, what can be the
maximum and minimum number generated by line 2 ?
Answer
Question 22
import random
r = random.randint(10, 100) - 10
print(r, end = ' ')
r = random.randint(10, 100) - 10
print(r, end = ' ')
r = random.randint(10, 100) - 10
print(r)
Which of the following are the possible outcomes of the above code? Also, what can be the
maximum and minimum number generated by line 2?
(a) 12 45 22
(b) 100 80 84
(c) 101 12 43
(d) 100 12 10
Answer
Option (a) — 12 45 22
Question 23
import random
r = random.random() * 10
print(r, end = ' ')
r = random. random() * 10
print(r, end = ' ')
r = random.random() * 10
print(r)
Which of the following are the possible outcomes of the above code? Also, what can be the
maximum and minimum number generated by line 2 ?
Question 24
import statistics as st
v = [7, 8, 8, 11, 7, 7]
m1 = st.mean(v)
m2 = st.mode(v)
m3 = st.median(v)
print(m1, m2, m3)
(a) 7 8 7.5
(b) 8 7 7
(c) 8 7 7.5
(c) 8.5 7 7.5
Answer
Write a program to obtain principal amount, rate of interest and time from user and compute
simple interest.
Solution
si = p * r * t / 100
print("Simple Interest =", si)
Output
Question 2
Write a program to obtain temperatures of 7 days (Monday, Tuesday ... Sunday) and then display
average temperature of the week.
Solution
Output
Question 3
Write a program to obtain x, y, z from user and calculate expression : 4x4 + 3y3 + 9z + 6π
Solution
import math
x = int(input("Enter x: "))
y = int(input("Enter y: "))
z = int(input("Enter z: "))
res = 4 * x ** 4 + 3 * y ** 3 + 9 * z + 6 * math.pi
Output
Enter x: 2
Enter y: 3
Enter z: 5
Result = 208.84955592153875
Question 4
Write a program that reads a number of seconds and prints it in form : mins and seconds, e.g.,
200 seconds are printed as 3 mins and 20 seconds.
[Hint. use // and % to get minutes and seconds]
Solution
mins = totalSecs // 60
secs = totalSecs % 60
Output
Question 5
Write a program to take year as input and check if it is a leap year or not.
Solution
Output
Question 6
Write a program to take two numbers and print if the first number is fully divisible by second
number or not.
Solution
Output
Question 7
Write a program to take a 2-digit number and then print the reversed number. That is, if the input
given is 25, the program should print 52.
Solution
Output
Question 8
Try writing program (similar to previous one) for three digit number i.e., if you input 123, the
program should print 321.
Solution
d1 = x % 10
x //= 10
d2 = x % 10
x //= 10
d3 = x % 10
y = d1 * 100 + d2 * 10 + d3
print("Reversed Number:", y)
Output
Enter a three digit number: 123
Reversed Number: 321
Question 9
Write a program to take two inputs for day, month and then calculate which day of the year, the
given date is. For simplicity, take 30 days for all months. For example, if you give input as:
Day3, Month2 then it should print "Day of the year : 33".
Solution
n = (m - 1) * 30 + d
Output
Enter day: 3
Enter month: 2
Day of the year: 33
Question 10
Write a program that asks a user for a number of years, and then prints out the number of days,
hours, minutes, and seconds in that number of years.
Solution
d = y * 365
h = d * 24
m = h * 60
s = m * 60
Question 11
Write a program that inputs an age and print age after 10 years as shown below:
Solution
Output
Question 12
Sample Run 1:
Random number between 0 and 5 (A) : 2
Random number between 0 and 5 (B) :5.
A to the power B = 32
Sample Run 2:
Random number between 0 and 5 (A) : 4
Random number between 0 and 5 (B) :3.
A to the power B = 64
Sample Run 3:
Random number between 0 and 5 (A) : 1
Random number between 0 and 5 (B) :1.
A to the power B = 1
Solution
import random
a = random.randint(0, 5)
b = random.randint(0, 5)
c = a ** b
Output
Question 13
Write a program that generates six random numbers in a sequence created with (start, stop, step).
Then print the mean, median and mode of the generated numbers.
Solution
import random
import statistics
print("Generated Numbers:")
print(a, b, c, d, e, f)
seq = (a, b, c, d, e, f)
mean = statistics.mean(seq)
median = statistics.median(seq)
mode = statistics.mode(seq)
Output
Question 14
Write a program to generate 3 random integers between 100 and 999 which is divisible by 5.
Solution
import random
a = random.randrange(100, 999, 5)
b = random.randrange(100, 999, 5)
c = random.randrange(100, 999, 5)
print("Generated Numbers:", a, b, c)
Output
Question 15
Write a program to generate 6 digit random secure OTP between 100000 to 999999.
Solution
import random
print("OTP:", otp);
Output
OTP: 553072
Question 16
Write a program to generate 6 random numbers and then print their mean, median and mode.
Solution
import random
import statistics
a = random.random()
b = random.random()
c = random.random()
d = random.random()
e = random.random()
f = random.random()
print("Generated Numbers:")
print(a, b, c, d, e, f)
seq = (a, b, c, d, e, f)
mean = statistics.mean(seq)
median = statistics.median(seq)
mode = statistics.mode(seq)
Output
Generated Numbers:
0.47950245404109626 0.6908539320958872 0.12445888663826654
0.13613724999684718 0.37709141355821396 0.6369609321575742
Mean = 0.40750081141464756
Median = 0.4282969337996551
Mode = 0.47950245404109626
Question 17
Write a program to find a side of a right angled triangle whose two sides and an angle is given.
Solution
import math
c = math.sqrt(a ** 2 + b ** 2)
print("Hypotenuse =", c)
Output
Question 18
Write a program to calculate the radius of a sphere whose area (4πr2) is given.
Solution
import math
r = math.sqrt(area / (4 * math.pi))
Output
Question 19
Write a program that inputs a string and then prints it equal to number of times its length, e.g.,
Solution
Output
Question 20
Radius = 8 cm
Height = 15 cm
Solution
import math
r = 8
h = 15
v = math.pi * r * r * h
Output
Volume of Cylinder = 3015.928947446201
Question 21
Write a program to calculate the area of an equilateral triangle. (area = (√3 / 4) * side * side).
Solution
import math
Output
Enter side: 5
Area of triangle = 10.825317547305481
Question 22
Write a program to input the radius of a sphere and calculate its volume (V = 4/3πr3)
Solution
import math
Output
Question 23
Solution
si = p * r * t / 100
amt = p + si
Question 24
Solution
amt = p * (1 + r / 100) ** t
Output
Question 25
Solution
a = int(input("Enter a: "))
b = int(input("Enter b: "))
res = a ** 3 + b ** 3 + 3 * a ** 2 * b + 3 * a * b ** 2
Output
Enter a: 3
Enter b: 5
Result = 512