JAVA, Python, C++ and C programs for students. Here you will also find solutions to boards papers of ISC Computer Science Practical and CBSE Computer Science. ISC and ICSE JAVA PROGRAMS
Saturday, October 2, 2021
ICSE JAVA PROGRAMS 2019: SECTION B QUESTION 9 SOLVED
Friday, October 1, 2021
ICSE JAVA PROGRAMS 2019: SECTION B QUESTION 8 SOLVED
ICSE JAVA PROGRAMS 2019: SECTION B QUESTION 8
Thursday, September 30, 2021
Python program to enter 10 numbers in list and how many of them are ending with 5: Python
PYTHON PROGRASM FOR BEGINNERS
Write a Python program to enter 10 numbers in list and how many of them are ending with 5. Display all the numbers ending with 5 and the total of such numbers. If there are no numbers ending with 5 display "NIL".
Both Java and Python codes are given below.
In this program you will learn:
i. Taking input
ii. Adding numbers to list using append() method
iii. for loop
iv. using boolean variables
v. using if statements
PYTHON CODE
Friday, September 24, 2021
COMPOUND INTEREST CACULATOR : PYTHON PROGRAMMING
If the principal is P and the rate of compound interest is r% per annum and the interest is compounded k times in a year, then the amount after n years is given by the formula
PYTHON CODE