0% found this document useful (0 votes)
9 views1 page

Python Programming Concepts Exercises

The document outlines a programming assignment for a course on Python, including tasks such as fixing syntax errors, determining outputs, identifying data types, and performing basic arithmetic operations. It also requires writing a program to handle user input for arithmetic calculations. Additionally, it includes questions about integer conversion and specific output from division and modulus operations.
Copyright
© All Rights Reserved
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% found this document useful (0 votes)
9 views1 page

Python Programming Concepts Exercises

The document outlines a programming assignment for a course on Python, including tasks such as fixing syntax errors, determining outputs, identifying data types, and performing basic arithmetic operations. It also requires writing a program to handle user input for arithmetic calculations. Additionally, it includes questions about integer conversion and specific output from division and modulus operations.
Copyright
© All Rights Reserved
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

NATIONAL UNIVERSITY OF SCIENCE AND TECHNOLOGY

FACULTY OF APPLIED SCIENCES


DEPARTMENT OF INFORMATICS AND ANALYTICS

PROGRAMMING CONCEPTS AND DEVELOPMENT USING PYTHON SIA 1204

1a) Fix the syntax error in this code:


print "Welcome to Python!"
b) What will be the output of this code?
x = 10
y=5
print (x + y)

c) What data type is used in the following variables?


age = 25
height = 5.9
is_student = True
d) Convert the string "123" into an integer and print its type.
e) What is the result of 5 * 2 - 3?
f) Write a program that takes two numbers from the user and prints their sum, difference, product.
g) What will be the output of:
print (10 // 3)
print (10 % 3)

You might also like