Posts

Java The Complete reference book free download

Image
Java The Complete referance Book 7th Edition:- free download link https://drive.google.com/file/d/10lloPZJP8jeNBvoWfCiwc3xoj4kArHUk/view?usp=sharing

Packages and Interfaces in java

$$Packages & Interfaces in java package my_package; import java.util.Scanner; interface perimeter1 { void calculate(); } class circle1 implements perimeter1 { private double r; public void calculate() { System.out.println("Enter radius:"); Scanner input=new Scanner(System.in); double r=input.nextDouble(); double p=2*3.14*r; System.out.println("perimeter of circle is:- "+p); } } class rectangle1 implements perimeter1 { private double length,breadth; public void calculate() { System.out.println("Eneter length"); Scanner input=new Scanner(System.in); double length=input.nextDouble(); System.out.println("Eneter breadth"); double breadth=input.nextDouble(); double p=2*(length+breadth); System.out.println("perimeter of rectangle is:- "+p); } } class main1 { public static void main(string args[]) { perimeter1 obj; circle1 obj1=new circle1(); rectangle1 ob...

Canteen Biliing System

Image
$$ Canteen Billing System Without Using Data Structure /* Name: Canteen Bill Software. Copyright: Self made Author: Ketan Kulkarni. Date: 08-12-19 13:47 Description:Without using data structure and using simple C++,Canteen bill software. */ #include<iostream> #include<stdlib.h> #include<ctime> using namespace std; class soft {  int a,d,flag;  int z;  int m,n,h,x;  public:   soft()   {    n=x=1;    flag=0;   }   void accept();   void just();   void total();   void pay();   void final(); }; void soft::accept() {  cout<<" Enter key";  cin>>a;  if(a==0)  {   flag=0;  }  else if(a==1)  {   flag=1;  }  else if(a==2)  {   flag=2;  }  else if(a==3)  {   flag=3;  }  else if(a==4)  {   flag=4;  }  else if(a==5)  {   flag=5;  }  else if(a==...

Simple Java Applet

Image
$$ This is the Simplest Java Applet for Demonstration of how it is look like My first Applet In Learning Java:- /* Author: Ketan Kulkarni Copyright: Self Made on Self Study Date & Time: 12/01/2020 12:01 AM Software Used: JDK 13.0.1,Command prompt,Jcreater LE */ import java.applet.Applet; import java.awt.Graphics; public class ketanl extends Applet{ public void paint(Graphics g){ g.drawString("I love u mom..!",150,150); } } /* <applet code="ketan.class" width="300" height="400"> </applet> */ Save the above file as ketanl.java on Compilation the Class file of same will automatically generated ketankulkarni23.blogspot.com After make a new HTML file like this:- <html> <body> <applet code="ketanl.class" width="300" height="400"> </applet> </body> </html> Save this file with any name Now, its time to Run the Applet:- Aft...

Web Page Using HTML Sample Registration Form

Image
$$Here is new web page using HTML for registration form //Enjoy the Tag's & Attributes:- ketankulkarni23.blogspot.com <html> <head> <title>Registration form</title> </head> <body background="bk.gif"> <center><font color="Red" size="100"><b><u>Registration Application Form</u></b></font></center> <br><br> <form> <table> <tr> <td><font color="blue"> Student Name: </font> </td> <td> <select> <option>Mr.</option> <option>Mrs.</option> <option>Miss.</option> <option>Master.</option> </select> <input type="text" placeholder="first Name" Name=""> <input type="text" placeholder="middle name" Name=""> <input type="text" placeholder="...

Tour Booking System Using HTML Pages.

Image
Hii All This is Ketan, plz stay connected for more interesting projects and share with your friends $$ A Tours and Travels Booking Dummy Platform using  simple HTML only Note:- All images which you need in are provided with code. code:- ketankulkarni23.blogspot.com <html> <head> </head> <body background=img103.png> <marquee><img src=k.png height="20%" width="20%"></marquee> <center><u><i><font color=red face="Pristina" size=10>Travelomenia</font><br> <font color=cyan face="MV Boli" size=20>KK'sTours&Travels</font></i></u></center><br> <br><br><br><br><br><br><div align=right><font color=yellow size=5>Login &nbsp;&nbsp;&nbsp;&nbsp;<input type=text><br><br> Password <input type=password><br><br> &nbsp;...

Popular posts from this blog

Packages and Interfaces in java

Magic Square Program