Skip to main content

Student Blog's

STUDENT BLOGS 


S.NO

NAME

REGISTER NO

BLOG LINK

1.

AKASH .N

P23CS366

1. Product Calculation

2. Question and Answer

3. File Operation

4. Profile

2.

AMMU .M

P23CS367

1. Product Calculation

2. Question and Answer

3. File Operation

4. Profile

3.

ANBU .M

P23CS368

1. Product Calculation

2. Question and Answer

3. File Operation

4. Profile

4.

ANBUMANI .A

P23CS369

1. Product Calculation

2. Question and Answer

3. File Operation

4. Profile

5.

ARAVINDHAN .A

P23CS370

1. Product Calculation

2. Question and Answer

3. File Operation

4. Profile

6.

BARATH .M

P23CS371

1. Product Calculation

2. Question and Answer

3. File Operation

4. Profile

7.

DIVAGAR .K

P23CS372

1. Product Calculation

2. Question and Answer

3. File Operation

4. Profile

8.

GOKILA KIRUBA .S

P23CS373

1. Product Calculation

2. Question and Answer

3. File Operation

4. Profile

9.

HEPSIBA .G

P23CS374

1. Product Calculation

2. Question and Answer

3. File Operation

4. Profile

10.

INDHUJA .D

P23CS375

1. Product Calculation

2. Question and Answer

3. File Operation

4. Profile

11.

IYSWARYA .S

P23CS376

1. Product Calculation

2. Question and Answer

3. File Operation

4. Profile

12.

JEEVITHA .G

P23CS377

1. Product Calculation

2. Question and Answer

3. File Operation

4. Profile

13.

KALAIMANI .M

P23CS378

1. Product Calculation

2. Question and Answer

3. File Operation

4. Profile

14.

KARUNADITHIYAN .M

P23CS379

1. Product Calculation

2. Question and Answer

3. File Operation

4. Profile

15.

KEERTHIKA LAKSHMI .G

P23CS380

1. Product Calculation

2. Question and Answer

3. File Operation

4. Profile

16.

KEERTHIKA .M

P23CS381

1. Product Calculation

2. Question and Answer

3. File Operation

4. Profile

17.

MAHALAKSHMI .D

P23CS382

1. Product Calculation

2. Question and Answer

3. File Operation

4. Profile

18.

MANIKANDAN .P

P23CS383

1. Product Calculation

2. Question and Answer

3. File Operation

4. Profile

19.

MANOJ .S

P23CS384

1. Product Calculation

2. Question and Answer

3. File Operation

4. Profile

 

Comments

Popular posts from this blog

Profile

Gokila Kiruba View Full Size Contact me Email On Blogger since June 2024 Profile views - 3 Report Abuse My blogs Gokila Kiruba About me Gender Female Industry Student Location Kumbakonam,   TamilNadu,   India Introduction Hi, I’m Gokila Kiruba. I’m currently pursuing my MSc in Computer Science, having completed my BSc in the same field. I have experience in software development, especially with technologies like HTML, Bootstrap, JavaScript, and Java. I’m currently working on projects that involve dynamic web applications and basic database operations. I enjoy learning new things and solving technical challenges. Interests I’m on an exciting journey in the world of computer science. With a passion for technology, I’ve been crafting web applications using tools like HTML, Bootstrap, JavaScript, and Java. I’m always up for a challenge, whether it’s making a website more interactive or diving into database management. I love exploring new ideas and pushing the boundaries of what I...
 File Operation EXPLANATION : -    File operations involve interacting with files on a computer system, allowing you to create, read, write, and delete files. Common operations include: 1. Open a file – Access a file to read or modify it. 2. Read from a file– Extract data from the file. 3. Write to a file– Add or modify data in the file. 4. Close a file– End the interaction with the file to free up system resources. 5. Delete a file – Remove the file from the system.  These actions help manage data in programs and applicationsapplications PROGRAM:- import java.io.File; import java.io.*; import java.io.FileWriter; import java.io.FileReader; import java.io.BufferedReader; import java.io.IOException; class FSC{      public static void main(String args[])throws IOException { int i; DataInputStream d = new DataInputStream(System.in); String fileName = "msc1.txt"; do { System.out.println("\nwhich type of file operation you want to perform?"); System.out.prin...