Search for notes by fellow students, in your own course and all over the country.

Browse our notes for titles which look like what you need, you can preview any of the notes via a sample of the contents. After you're happy these are the notes you're after simply pop them into your shopping cart.

My Basket

data communication and networking £12.50

Climate change£0.50

Magnetism and Superconductivity£4.38

Fundamentals of Electrical Circuit£2.50

Digital filter design- Design of IIR filter£1.50

Digital Circuits - Codes£12.50

Internet of things£12.50

Mechatronics Servicing (Exam)£6.25

Graduation Thesis, Health Monitoring Device£100.00

Power Sources In Welding £0.60

Cells and Battery£2.50

Heat and air condition 3£31.25

POWER SYSYTEM AND PROTECTION£18.75

ELECTROCERAMICS£2.50

leveling£10.00

Phase circuits£2.50

Control Q 2£1.50

Autonomous Baby Incubator£2.50

Integrations of expressions containing trigonometric functions (Mathematics)£4.38

Controlling the Impact of Power Factor and Harmonics on Energy Efficiency£2.50

Data Structures and Algorithms: From Basics to Advanced£12.50

Adaptive Filters£1.00

Computer Programmng Notes (Process and Boolean Expressions)£1.50

Photovoltaic Array Laboratory Experiment£50.00

Low Power VLSI Design£0.50

Gestão de projetos£12.50

Transfer Functions£62.50

basic electrical and electronics£1.50

Basic of Computer Organisation and Architecture£2.50

PLC Controlled Traffic Lights£25.00

Total£401.10

Title: Practice Programs for python basics with answers
Description: This practice sheet includes important practice questions/programs to help you get a better grasp of the basics of Python. The best way to master any programming language is by using it as much as possible

Document Preview

Extracts from the notes are below, to see the PDF you'll receive please use the links above


Python Program List
Q1
...
 The number has to be entered by
the user
...
Write a program that prints minimum and maximum of five numbers entered by the
user
...
Write a program to check if the year entered by the user is a leap year or not
...
Program to check whether a given number is prime or not
...
Program to find the factors of a given number
...
WAP to find the reverse of number
...
WAP to check whether a number entered is a palindrome or not
...
(if the reverse of number is same as that of the original number, then it is
palindrome)
Answer:

Q8
...
Write programs in Python to generate the following patterns:
A

1

BB

21

CCC

321

DDDD

4321

EEEEE

54321

Answer:

10
...
Create two new
lists, one having all positive numbers and the other having all negative numbers from the
given list
...

Answer:

11
...
Write a program to calculate the largest and second largest element in a given list
...
Write a menu-driven program for a Phone Directory with following features:
● Store Contact numbers of people
● Search for the Contact numbers using their names
● Search for the Contact numbers using their number
● Delete a Contact number
● Update a Contact number
Answer:
Please access the code here
(https://pastebin
...
Write a program to shift every element (from the middle) of a list to circularly right e
...
,
INPUT: 1,2,3,4,5,6,7
OUTPUT: 4,5,6,1,2,3,7

Answer:

15
...
Write a program to input a string having some digits and return the sum of digits present
in the string
...
Write a program to remove ‘i’ from a string
...
Write a program that prompts for a phone number of 10 digits and two dashes, a dash
after each area code and the next three numbers
...
Display if the phone number is valid or not (i
...
, contains just the digits and
dashes at specific places)
...
Write a program to reverse words in a given string
...
Write a program to reverse middle words in a given string
...
Write a python program to split and join a string
...
Write a Python program to count upper- and lower-case characters without using inbuilt
functions
...
Program to count vowels, consonant, digits and special characters in string
Title: Practice Programs for python basics with answers
Description: This practice sheet includes important practice questions/programs to help you get a better grasp of the basics of Python. The best way to master any programming language is by using it as much as possible