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
Monday, December 15, 2025
ISC Computer Science Theory Paper 2023 Program Transpose of a Matrix
Sunday, December 14, 2025
ISC Computer Science Theory Paper 2023 Program Dudeney Number
🔢 Dudeney Number Checker
A Dudeney number is a positive integer that is a perfect cube such that the sum of its decimal digits equals the cube root of the number.
🎯 Examples:
- 1 = 1³ and 1 = 1
- 512 = 8³ and 5+1+2 = 8
- 4913 = 17³ and 4+9+1+3 = 17
- 5832 = 18³ and 5+8+3+2 = 18
Try numbers like: 1, 512, 4913, 5832, 17576, 19683
Tuesday, September 19, 2023
ICSE Java Programming Function Overload 2016 Q6 Solved
Special words are those words which starts and ends with the same letter.
Examples:EXISTENCE
COMIC
WINDOW
Palindrome words are those words which read the same from left to right and vice versa
Examples:
MALAYALAM
MADAM
LEVEL
ROTATOR
CIVIC
All palindromes are special words, but all special words are not palindromes. Write a program to accept a word check and print Whether the word is a palindrome or only special word.
ICSE Java Programming Function Overload 2016 Q5 Solved
For an incorrect option, an appropriate error message should be displayed.
ICSE Java Programming Function Overload 2016 Q4 Solved
Define a class named BookFair with the following description: [15] Instance variables/Data members :
String Bname — stores the name of the book double price — stores the price of the book
Member methods : (i) BookFair() — Default constructor to initialize data members
(ii) void Input() — To input and store the name and the price of the book.
(iii) void calculate() — To calculate the price after discount. Discount is calculated based on the following criteria.
(iv) void display() — To display the name and price of the book after discount. Write a main method to create an object of the class and call the above member methods.
Price Discount
Less than or equal to Rs. 1000 2% of price
More than Rs. 1000 and less than or equal to Rs. 3000 10% of price
More than % 3000 15% of price
Sunday, April 30, 2023
ICSE Java Programming Function Overload 2017 Q8 Solved
ICSE Java Programming Design a class to overload a function 2017 Q8 Solved
ICSE Java Programming Switch Case 2017 Q7 Solved
