Posts

MY PROFILE

  RAJESHWARI WEB DISIGNER/WEB DEVELOPER I am a passionate web designer with a strong focus on crafting intuitive and visually appealing web applications using HTML and CSS. My dedication lies in creating user-centered designs that are both functional and aesthetically pleasing. With a bachelor's degree in Computer Science and ongoing master's studies, I am committed to continuous learning and innovation in the field of web design.

My Profile

Image
Hi! I am Rajeshwari        I am interested to IT field work. I like dance and song. About Me         I am a full stack developer with a passion for creating interactive and dynamic web applications. I am in part jober. Education          1) I have completed my bachelor degree in computer science             2) During my master degree in computer science  Skills Front-End         •  HTML          • CSS         • Java script          • Bo otstrap  Contact Me       * r2799921@gmail.com                   

Registration Form

Image
 <html>   <head>     <title>Registration Form</title>   </head>   <body>     <h2>Registration Form</h2>     <label>first name</label>     <input type="text">     <br>     <label>last name</label>     <input type="text">     <br>     <label>email</label>     <input type="email">     <br>     <label>password</label>     <input type="password ">     <br>     <label>contact</label>     <input type="number">     <br>     <label>gender</label>     <input type="gender">     <br>     <input type="submit">   </body> </html> Output:

Login form

Image
Source code: <html>     <head>         <title>login form</title>     </head>     <body>         <h1>login form</h1>         <label>name</label>         <input type="text">         <br>         <label>age</label>         <input type="number">         <br>         <label>password</label>         <input type="password">         <br>         <input type="submit">     </body> </html>   Output:

File Operation

 import java.io.*; import java.util.Scanner; class FS {     public static void main(String[] args) {         Scanner scanner = new Scanner(System.in);         String fileName = "msc1.txt";         int choice;         do {             System.out.println("\nFile Operations Menu:");             System.out.println("1. Create a File");             System.out.println("2. Write to the File");             System.out.println("3. Read from the File");             System.out.println("4. Update the File");             System.out.println("5. Delete the File");             System.out.print("Enter your choice: ");             choice = scanner.nextInt();     ...
Image
 import java.io.*; import java.util.Scanner; class FS {     public static void main(String[] args) {         Scanner scanner = new Scanner(System.in);         String fileName = "msc1.txt";         int choice;         do {             System.out.println("\nFile Operations Menu:");             System.out.println("1. Create a File");             System.out.println("2. Write to the File");             System.out.println("3. Read from the File");             System.out.println("4. Update the File");             System.out.println("5. Delete the File");             System.out.println("6. Exit");             System.out.print("Enter your choice: ");     ...

qu. java

 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]="who is the father of the computer?"; qpa[0][1]="1.charles babbage"; qpa[0][2]="2.thomas edition"; qpa[0][3]="3. albert einsten";qpa[0][4]="4.isaac newton"; qpa[1][0]="what is the full form of email?"; qpa[1][1]="1.electric mail"; qpa[1][2]="2.exchange mail"; qpa[1][3]="3.electronic mail"; qpa[1][4]="4.engagement mail"; qpa[2][0]="in the virtual world, www stands for?"; qpa[2][1]="1.world without windows"; qpa[2][2]="2.world wide web"; qpa[2][3]="3.world wide web applications"; qpa[2][4]="4.world wide warehouse "; qpa[3][0]="who invented compact disc?"; qpa[3][1]="1.james t. russell...