Posts

Showing posts from July, 2024

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