Posts

Showing posts from January, 2023

Java Practical Slip Solutions

Slip no 1 Write a java program to read the characters from a file, if a character is alphabet then reverse its case, if not then display its category on the Screen. (Whether it is Digit or Space)             import java.io.*; class Slip1 {                 public static void main(String args[])throws Exception                 {                                 BufferedReaderbr=new BufferedReader(new InputStreamReader(System.in));                                 Syst...