Skip to main content

CS GRADE XI - PRACTICAL FILE QUESTIONS- 19TH SEP

 PRACTICAL FILE QUESTIONS

GRADE XI

COMP  SC

1. Write a program in python to calculate and print the simple interest.

2. Write a program to accept marks of 5 subjects and calculate total and percentage.

3. Write a Python program to accept time in seconds and convert it to equivalent hours, minutes and  seconds.

4. Write a program to enter name and basic salary of an employee. Given deduction as  15% of the basic salary and allowance as 1000. Calculate and display total salary as  
basic + sal +allowance-deduction.

5.Write a program to obtain x, y, z and calculate 4x⁴+3y³+9z+6π.

6. Write a program to input in meters. Convert to its equivalent kilometers  and meters.

7. WAP to take the temperatures of all 7 days of the week and displays the average temperature of that week. 

8. Write a Program to obtain temperature in Celsius and convert it into Fahrenheit     
     using formula – C X 9/5 + 32 = F 

9. Write a program that accepts radius of a circle and prints its area.  (Area=3.14 x r sqr)

10. Write a program that accepts base and height and calculate the area of triangle. 
      Area=(1/2)*b*h

11. Write a program to read two numbers and prints their quotient and reminder.

12. Write a program to read base, width and height of Parallelogram and calculate its area and perimeter.     Area=b*h       Perimeter=2*(b+w)

13. Create menu driven program to do various List operations:
Append
Insert
Modify 
Delete
Ascending
Descending
display list

13.LINEAR SEARCH/search for an element in a given list
14. PROGRAM TO CALCULATE MEAN OF A GIVEN LIST NUMBERS
15.Program to input a list and to count number of #non-numeric data in a list
16. Find Max number in a given list
17.Write a program to input the size and the list of elements from user. Count the number of elements which are divisible by 5
18.Write a program to input the size and the list of elements from user Count the number of positive, negative and zero
19.Write a program to input a list. Replace all positive numbers with twice it’s value and all negative numbers with half of it’s value.
20.ADDITION OF TWO LIST ELEMENTS
21.Print the following pattern using for loop:

1 2 

1 2 3 

1 2 3 4 

22.

22.Print the following pattern using for loop:

5

5 4

5 4 3

5 4 3 2

5 4 3 2 1

23#.

A       A=65

A B     CHR(J)

A B C

A B C D

A B C D E

24#.

5 4 3 2 1

5 4 3 2

5 4 3

5 4

5

25.

$ $ $ $ $ 

$ $ $ $ 

$ $ $ 

$ $ 











Comments

Popular posts from this blog

PYTHON - MYSQL CONNECTIVITY CODE

  #INSERTION OF DATA import mysql.connector mydb = mysql.connector.connect( host="localhost", user="root", passwd="root", database="school" ) print("Successfully Connected") #print(mydb) mycursor=mydb.cursor()   v1=int(input("enter ID:")) v2=input("enter name:") v3=input("enter Gender:") v4=int(input("enter age:")) sql='insert into TEACH values("%d","%s","%s","%s")'%(v1,v2,v3,v4) print(sql) mycursor.execute(sql) mydb.commit() print("record added") #MYSQL Connection code – Deletion on database SOURCE CODE: s=int(input("enter id of TEACHER to be deleted:")) r=(s,) v="delete from TEACH where id=%s" mycursor.execute(v,r) mydb.commit() print("record deleted") MYSQL Connection code – Updation on database SOURCE CODE: import mysql.connector mydb = mysql.connector.c...

GRADE XII CS - VIVA QUESTIONS

  VIVA QUESTIONS GRADE XII CS Dear All Be thorough with your project and practical files, as the viva can be asked from anywhere. Stay calm, don’t get nervous, and be confident in front of the examiner. 1. Tell me about your project. 2. Which concepts you have used for your project? 3. What do you mean by front end and back end? How they are important in developing any such projects? 4  Mention the modules and built-in functions you have used in your project. 5. Which real world problems are solved by your project? 6. Explain the most important feature of your project. 7. Name a few mutable data types of python. Lists, Sets, and Dictionaries 8. Name a few immutable data types of python. Strings, Tuples, Numeric 9. Name ordered and unordered data type of python. Ordered – String, List, Tuples Unordred – Set, Dictionaries 10. What is the significance of a pass statement in python? pass is no operation python statement. This is used where python requires syntax but logic requires...