Posts

file operation

    File Operation:                              In Java, a   File   is an abstract data type. A named location used to store related information is known as a   File . There are several   File Operations   like  , creating a new File getting information about File writing into a File reading from a File   deleting a File .  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.println("\n1.file creation\n2.read\n3.write\n4.update\n5.delete"); System.out.println("Enter your choice:"); i= Intege...

Bio-data

                          BIO-DATA ABOUT:   This blog is used to know me well! .   It contains some details of myself. I glad to share about me with all!  MYSELF: I am vishnupriya Ravichandran. PG  studying, student in Computer Science Department at Government Arts College, Kumbakonam.  EDUCATION: UG completion at Government college For Women, kumbakonam.   ‌Schooling in Minerva Higher Secondary School, kadichambadi.  SKILL: ‌Good in python and Html.  Basic knowledge of ms office.  Good in web development.  FIELD INTEREST: ‌ Data Visualization concepts in Data Science.  ‌Creating Webpages.  ‌I like to clear bugs though the programs.  OTHER INTEREST: ‌Huge interest on Baking.  PERSONAL INFO: ‌Born on 4th January, 2003. ‌staying in T. Palur, Ariyalur District.  AVAILABLE ON: ‌WhatsApp(9344642048) .  ‌Email: vishnuravi79380@gmail.com

Self Introduction

       My Self Introduction Hello Everyone! Happy Morning! I hope, it's be a great day to all. I am Vishnu Priya. I am from T. palur in Ariyalur District. My family consists of me and my father. I completed my schooling from Minerva High School, Kadichambadi .And I completed my bachelor degree in computer science at Government Women college, kumbakonam. Now I am doing my pg in computer science at Government Arts college, kumbakonam.  My hobbies are baking ,cooking and listening music. I love Baking At my free time,Mostly I bake cakes .   My personal strength are problem understanding, Adop new environment, problem solving, making decision.  My future aim is getting a good job and achieve high position.  Thankyou for bring this opportunity to express about my self.                                    Thankyou All!   

Aptitude &HTML

Image
 Aptitude: Html:

Resume in HTML

Image
HTML CODE:  <!doctype html> <html> <head><center><h2>RESUME</h2></center></head><hr> <body> <h2>VISHNUPRIYA R</h2> <p align=right><b>54,Hanuman Kovil Street,<br>T.palur-612904,<br>Udayarpalayam Taluk,<br>Ariyalur District.</b></p> <p><b>Email: vishnuravi79380@gmail.com</b></p> <p><b>phone: 9344642048</b></p><hr><br> <li><a href=#obj> CAREER OBJECTIVE</a></li> <li><a href=#aca>ACADEMIC INFORMATION</a></li> <li><a href=#skl>SKILLS</a></li> <li><a href=#addinfo>ADDITIONAL INFORMATION</a></li> <li><a href=#dec>DECLARATION</a></li><br><br> <h4 id=obj>CAREER OBJECTIVE:</h4><hr> <p>To build career in an organization, where I can get the opportunities to prove my ab...

Date and Time

Image
ABOUT: This blog is about , How to set a correct Time and Date  & Internet Time on your PC . The following steps shows this process.                         DATE AND TIME STEP:1 The  desktop page contains Time and date on its taskbar's left side. We can see whether time and date is correct or wrong. If it is wrong , we can change this .  Open the Control Panel by using a Double click   on an icon or WINDOW+R key with the "Control". STEP:2 The control panel window shows it's all icons , then click the date and time icon.  STEP:3  A small window for Date and Time will be opened and it shows  the time and date and region. To change,click the Change date and time button &change region.  STEP:4 The  Date and time setting window will be opened here, we can change the time on the clock and date on the calendar , then click ok.  The date and time will be changed.  INTE...

SIMPLE SQL QUIZ

  CODE: import java.lang.*; import java.io.*; class Questions { public String [][]qpa;  public String[][]qca;  Questions()throws IOException { qpa=new String[10][5]; //questionsandobjectives// DataInputStream in=new DataInputStream(System.in); qpa[0][0]="What does SQL stand for?";  qpa[0][1]="1.Structure Question Language"; qpa[0][2]="2.Strong Question Language ";  qpa[0][3]="3.Structured Query Language"; qpa[0][4]="4.None of this"; qpa[1][0]="Which SQL statement is used to extract sata from a database?";  qpa[1][1]="1.GET"; qpa[1][2]="2.OPEN";  qpa[1][3]="3.EXTRACT"; qpa[1][4]="4.SELECT"; qpa[2][0]="Which SQL stateement is used to update data in a database?";  qpa[2][1]="1.SAVE"; qpa[2][2]="2.SAVE AS"; qpa[2][3]="3.MODIFY"; qpa[2][4]="4.UPDATE"; qpa[3][0]="Which SQL statement is used to insert new data in a database?";  qpa[3][...