The document is an index of programming practicals that includes various tasks such as creating a simple calculator, checking for palindromes and prime numbers, implementing matrix multiplication, and working with data structures like linked lists. It also covers advanced topics like inheritance, exception handling, and multithreading. Each practical is listed with a corresponding page number for reference.
The document is an index of programming practicals that includes various tasks such as creating a simple calculator, checking for palindromes and prime numbers, implementing matrix multiplication, and working with data structures like linked lists. It also covers advanced topics like inheritance, exception handling, and multithreading. Each practical is listed with a corresponding page number for reference.
No. No. 1. Write a programme to make a simple calculator. 2. Write a programme to check a number is palindrome or not. 3. Write a programme to check a number is prime or not between given range. 4. Write a programme to implement matrix multiplication 5. Write a programme to implement sum of digits of a number 6. Write a programme to implement a number is Armstrong or not. 7. Write a programme to implement dynamic stack. 8. Write a programme to demonstrate constructor overloading and method overloading. 9. Write a programme to set up an array of 10 variables each containing an arbitrary string of form month date year for example 30/10/19 and output as 30th October 1999. 10. Write a programme to define a mcm length to represent a length measured in meters and millimeters each stored as integers. Include method to add and subtract object to multiply and dived an object by an integer value to calculate area resulting from the product of two objects and two compare objects. Include constructors that accept I. Three arguments meters, cm, mm II. One integer argument with length set to zero. Create the class by creating some objects and testing the class operations. 11. Write a programme to implement factorial of a number using recursion. 12. Write a programme to implement G.C.D of numbers using recursion. 13. Write a programme to check a matrix is a magic square matrix or not 14. Write a programme which shows inheritance. 15. Write a programme which shows use of final and abstract keyword. 16. Write a programme which implement addition and subtraction for complex number. 17. Write a programme to implement singly linked list. 18. Write a programme to implement Circular singly linked list. 19. Write a programme to implement Doubly linked list. 20. Write a programme to implement Circular Doubly linked list. 21. Write a programme to implement access specification using package. 22. Write a programme to implement user (Custom) exception subclass. 23. Write a programme to implement threads by implementing Runnable class and by extending Thread class. 24. Write a programme to implement producer and consumer problem. 25. Write a programme to create file using ByteStream class. 26. Write a programme to copy one file to another. 27. Write an applet programme to change the color of rectangle using to change the value of red, green and blue. 28. Write an applet programme to implement moving banner. 29. Write a programme to handle mouse and Keyboard events in Frame.