0% found this document useful (0 votes)
31 views2 pages

Assignement 3

The document outlines 17 programming problems for an intro to computing practical assignment. The problems cover a range of fundamental programming concepts like: 1) Checking if a number is even or odd, positive or negative, and eligibility to vote based on age. 2) Calculating percentages and determining class divisions. 3) Finding the largest of three numbers. 4) Converting between units like rupees to paisa, hours to minutes and seconds. 5) Evaluating mathematical expressions and using logic/comparison operators.

Uploaded by

Ajit Singh Mann
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
31 views2 pages

Assignement 3

The document outlines 17 programming problems for an intro to computing practical assignment. The problems cover a range of fundamental programming concepts like: 1) Checking if a number is even or odd, positive or negative, and eligibility to vote based on age. 2) Calculating percentages and determining class divisions. 3) Finding the largest of three numbers. 4) Converting between units like rupees to paisa, hours to minutes and seconds. 5) Evaluating mathematical expressions and using logic/comparison operators.

Uploaded by

Ajit Singh Mann
Copyright
© Attribution Non-Commercial (BY-NC)
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as DOC, PDF, TXT or read online on Scribd
You are on page 1/ 2

TA101 INTRODUCTION TO COMPUTING PRACTICAL ASSIGNMENT 3

1. Write a program to input a no. and check a no. is even or odd. 2. WAP to check whether a number is positive or negative. 3. Write a program to input age of person and check whether person is eligible for voting of not. 4. WAP that Input marks of 5 subjects and calculate percentage, if % greater than 60 then first division, greater than 50 second division, greater than 40 third division and below30 then fail. 5. WAP to find largest of three numbers. 6. Write a program to input grade from keyboard, if grade is greater than 90 then display a++.
7. WAP to read the price of an item in rupees and print the output in paisa.

8. WAP to read a number in hours and convert it into minutes and seconds.
9. WAP to check the type of a triangle (isosceles, equilateral or scalene) sides are

entered by the user.


10. 11.

WAP to evaluate the expression 3x3-5x2+6 for x=2.55

Given the values of variables x,y and z. WAP to rotate their values such that x has value of y, y has value of z and the z has value of x.

12. WAP to display the category of a character entered by the user whether it is alphabet or integer or special character.
13.

Given a number of type integer containing both positive and negative values ,write a program to compute the sum of all positive values and negative values and print the sum of both.

14. WAP to print the cube of a given number entered by the user.
15.

WAP to find the value of xy where the values of x and y are entered by the user using math function.

16. WAP to find the result of the following expression 1. a=b==12=b 2. ++a=23*5-4

3. b=7.5%2.5 4. a^=b^=10 5. a&&=10 17. WAP to find ones and twos complement of a number input by user.

You might also like