Friday, 5 May 2023
Sunday, 24 March 2019
Example of Java Deserialization .
Code: | ||
?
|
Example of Java Serialization.
Description: |
In this example, we are going to serialize the object of Student class. The writeObject() method of ObjectOutputStream class provides the functionality to serialize the object. We are saving the state of the object in the file named f.txt. |
Code: | ||
?
|
Tuesday, 5 February 2019
12. Swapping of two Numbers in java without third variable.
Description: |
Write a sample code to Swapping of two Numbers in java without third variable. |
Code: | ||
?
|
Output: |
Enter x and y no:
10
20
Before Swaping
x=10
y=20
After Swaping
x=20
y=10
|
11. Palindrome program in java.
Description: |
Write a sample code to Palindrome in java. |
Code: | ||
?
|
Output: |
Enter a string to check :
madam
The string is a palindrome.
Enter a string to check :
godblessgovind
The string isn't a palindrome.
|
Subscribe to:
Posts (Atom)