Skip to main content

Resume


<!DOCTYPE html>
<html>
<head>
    <title>RESUME</title>
    <center><h1>RESUME</h1></center>
    <img src="C:\Users\ADMIN\Desktop\RESUME\ki.jpg" alt="Picture" width="100" height="130" align="right" />
</head>
<body>
    <h2>GOKILA KIRUBA</h2><h3>Email: gokilakiruba.1809@gmail.com<br />Phone: 7339543231</h3>

    <li><a href=#obj>CAREER OBJECTIVE</a></li>
    <li><a href=#aca>ACADEMIC INFORMATION</a></li>
    <li><a href=#skl>TECHNICAL SKILLS</a></li>
    <li><a href=#aoi>AREA OF INTEREST</a></li>
    <li><a href=#pi>PERSONAL INFORMATION</a></li>
    <li><a href=#dec>DECLARATION</a></li>

    <h3 id=obj>CAREER OBJECTIVE</h3>
    <p><ul>Hard-working, goal-oriented, and a team player seeking an opportunity to incorporate my skills and put them to use.</ul></p>
    <h4 id=aca>ACADEMIC INFORMATION</h4>
    <p>
        <ul>
            <table border="2">
                <tr>
                    <th>DEGREE/COURSE</th>
                    <th>INSTITUTION</th>
                    <th>BOARD/UNIVERSITY</th>
                    <th>YEAR OF PASSING</th>
                    <th>PERCENTAGE</th>
                </tr>
                <tbody>
                    <tr>
                        <td>M.SC,.(CS)</td>
                        <td>Government Arts College</td>
                        <td>Bharathidasan University</td>
                        <td>2025</td>
                        <td></td>
                    </tr>
                    <tr>
                        <td>B.SC.,(CS)</td>
                        <td>Idhaya College for Women</td>
                        <td>Bharathidasan University</td>
                        <td>2023</td>
                        <td>77%</td>
                    </tr>
                    <tr>
                        <td>HSC</td>
                        <td>Sri Saraswathi Padasala Girls<br />Higher Secondary School</td>
                        <td>State Board</td>
                        <td>2020</td>
                        <td>50%</td>
                    </tr>
                    <tr>
                        <td>SSCL</td>
                        <td>Sri Saraswathi Padasala Girls<br />Higher Secondary School</td>
                        <td>State Board</td>
                        <td>2018</td>
                        <td>55%</td>
                    </tr>
                </tbody>
            </table>
        </ul>
    </p>
    <h4 id=skl>TECHNICAL SKILLS</h4>
    <p>
        <ul>
            <li>Problem-solving skill</li>
            <li>Leadership Quality</li>
            <li>Critical Thinking</li>
        </ul>
    </p>
    <h4 id=aoi>AREA OF INTEREST</h4>
    <p>
        <ul>
            <li>Software development</li>
            <li>Web Development</li>
        </ul>
    </p>
    <h4 id=pi>PERSONAL INFORMATION</h4>
    <p>
        <ul>
            <b>Father:</b> Selvaraj
            <br />
            <br />
            <b>Mother:</b> Renganayaki
            <br />
            <br />
            <b>Date of Birth:</b> 18/09/2002
            <br />
            <br />
            <b>Address:</b> Iyyappan Nagar, Dr.Moorthy Road, Kumbakonam-612001
            <br />
            <br />
            <b>Gender:</b> Female
            <br />
            <br />
            <b>Marital Status:</b> Unmaried
            <br />
            <br />
            <b>Nationality:</b> Indian
            <br />
            <br />
            <b>Language Known:</b>Tamil, Telugu, English
            <br />
            <br />
        </ul>
    </p>
    <h4 id=dec>DECLARATION</h4>
    <p><ul>I hereby declare that the details and information given above are complete and true to the best of my knowledge</ul></p>
    <p>PLACE:</p>
    <p>DATE:</p>
    <p align="right">Yours Sincerely,<br /><br /><br /><br />[S.GOKILA KIRUBA]</right></p>
</body>
</html>

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...

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...
 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...