SlideShare a Scribd company logo
Submitted By
Jagriti Pepawat
BCA 2nd Year
Dezyne E’cole College
Awt Layout on Java
Submitted By
Jagriti Pepawat
BCA – 2nd Year
Dezyne E’ Cole College
106/10, Civil Lines, Ajmer
Tel: 0145-2624679
www.dezyneecole.com
2015-2016
Acknowledgement
This Awt Layout on “JAVA Language” was developed at Dezyne E’cole
College.
During the making of this project I have learnt a lot and I thank my mentor
Mr. Mukesh Gurjar for helping us during the making of project.
I thank my college “Dezyne E’cole College” for helping us to bring out our
skill.
Thank You
Jagriti Pepawat
BCA 2nd Year
Window 1
Personal Detail
Window 1
Program Code...
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
public class Prog1 extends Frame implements ActionListener,WindowListener
{
Label lblname,lblsn,lbladd,lblcity,lblhead;
TextField txtsn,txtname,txtcity;
TextArea txtA;
String name;
Button btnshow,btnclr;
public Prog1()
{
setTitle("Window 1");
setSize(300,350);
setLayout(null);
setResizable(false);
lblhead=new Label("Personal Detail");
lblsn=new Label("Stu_ID");
txtsn=new TextField();
lblname=new Label("Name");
txtname=new TextField();
lblcity=new Label("City");
txtcity=new TextField();
lbladd=new Label("Address");
txtA=new TextArea();
btnshow=new Button("show");
btnclr=new Button("clear");
Color c=new Color(222,10,60);
setBackground(c);
lblhead.setForeground(Color.white);
lblsn.setForeground(Color.white);
lblname.setForeground(Color.white);
lblcity.setForeground(Color.white);
lbladd.setForeground(Color.white);
btnshow.setBackground(Color.white);
btnclr.setBackground(Color.white);
add(lblhead);
Window 1
lblhead.setFont(new Font("Lucida
Console",Font.BOLD,14));
lblhead.setBounds(90,40,150,20);
Font f1=new Font("Lucida Console",Font.PLAIN,12);
setFont(f1);
add(lblsn);
lblsn.setBounds(15,80,50,20);
add(txtsn);
txtsn.setBounds(80,80,50,20);
add(lblname);
lblname.setBounds(15,110,50,20);
add(txtname);
txtname.setBounds(80,110,50,20);
add(lblcity);
lblcity.setBounds(15,140,50,20);
add(txtcity);
txtcity.setBounds(80,140,50,20);
add(lbladd);
lbladd.setBounds(15,170,50,20);
add(txtA);
txtA.setBounds(80,170,200,100);
add(btnshow);
btnshow.setBounds(80,290,50,20);
add(btnclr);
btnclr.setBounds(180,290,50,20);
btnshow.addActionListener(this);
btnclr.addActionListener(this);
addWindowListener(this);
setVisible(true);
}
public void actionPerformed(ActionEvent e)
{
String s;
if(e.getSource()==btnshow)
{
s=JOptionPane.showInputDialog("Enter Your
address");
txtA.append("<-----------------Details--------------
>nStu_ID= "+txtsn.getText()+"nName=
"+txtname.getText()+"nCity= "+txtcity.getText()+"n
Address= "+s);
Window 1
}
else if(e.getSource()==btnclr)
{
txtsn.setText("");
txtname.setText("");
txtcity.setText("");
txtA.setText("");
}
}
public void windowOpened(WindowEvent e){}
public void windowClosed(WindowEvent e){}
public void windowIconified(WindowEvent e){}
public void windowDeiconified(WindowEvent e){}
public void windowActivated(WindowEvent e){}
public void windowDeactivated(WindowEvent e){}
public void windowClosing(WindowEvent e)
{
dispose();
}
public static void main(String args[])
{
Prog1 p=new Prog1();
}
}
Window 2
Event Driven Program
Window 2
Program Code...
import java.awt.*;
import java.awt.event.*;
public class Prog2 extends Frame implements ActionListener,WindowListener
{
Label lblnum,lblprime,lbleven,lblfact,lblsum,lblper,lblhead;
TextField txtnum,txtprime,txteven,txtfact,txtsum,txtper;
Button btnshow,btnclr;
Font f;
int sum,i,p,j,fa,n1;
public Prog2()
{
setTitle("Window 2");
setSize(350,300);
setLayout(null);
setResizable(false);
lblhead=new Label("Event Driven Program");
lblnum=new Label("Enter number");
txtnum=new TextField();
lblprime=new Label("Prime");
txtprime=new TextField();
lbleven=new Label("Even/Odd");
txteven=new TextField();
lblfact=new Label("Factorial");
txtfact=new TextField();
lblper=new Label("Perfect");
txtper=new TextField();
lblsum=new Label("Sum of Digit");
txtsum=new TextField();
btnshow=new Button("show");
btnclr=new Button("clear");
Color c=new Color(48,228,255);
setBackground(c);
add(lblhead);
lblhead.setFont(new Font("Lucida
Console",Font.BOLD,14));
lblhead.setBounds(90,30,190,20);
Window 2
btnshow.setBackground(Color.white);
btnclr.setBackground(Color.white);
Font f1=new Font("Lucida Console",Font.PLAIN,12);
setFont(f1);
add(lblnum);
lblnum.setBounds(15,60,150,20);
add(txtnum);
txtnum.setBounds(170,60,150,20);
add(lblprime);
lblprime.setBounds(15,90,150,20);
add(txtprime);
txtprime.setBounds(170,90,150,20);
add(lbleven);
lbleven.setBounds(15,120,150,20);
add(txteven);
txteven.setBounds(170,120,150,20);
add(lblfact);
lblfact.setBounds(15,150,150,20);
add(txtfact);
txtfact.setBounds(170,150,150,20);
add(lblper);
lblper.setBounds(15,180,150,20);
add(txtper);
txtper.setBounds(170,180,150,20);
add(lblsum);
lblsum.setBounds(15,210,150,20);
add(txtsum);
txtsum.setBounds(170,210,150,20);
add(btnshow);
btnshow.setBounds(100,250,50,20);
add(btnclr);
btnclr.setBounds(200,250,50,20);
btnshow.addActionListener(this);
btnclr.addActionListener(this);
addWindowListener(this);
setVisible(true);
}
public void actionPerformed(ActionEvent e)
{
if(e.getSource()==btnshow)
{
Window 2
//prime
p=0;
n1=Integer.parseInt(txtnum.getText());
for(i=1;i<=n1;i++)
{
if(n1%i==0)
{
p++;
}
}
if(p==2||p==1)
{
txtprime.setText(String.valueOf(n1)+" is
prime");
}
else
{
txtprime.setText(String.valueOf(n1)+" is
not prime");
}
//even/odd
n1=Integer.parseInt(txtnum.getText());
if(n1%2==0)
{
txteven.setText(String.valueOf(n1)+" is
even");
}
else
{
txteven.setText(String.valueOf(n1)+" is
odd");
}
//factorial
n1=Integer.parseInt(txtnum.getText());
fa=1;
for(j=1;j<=n1;j++)
{
fa=(fa*j);
}
txtfact.setText("Factorial is=
"+String.valueOf(fa));
Window 2
//perfect
sum=0;
for(j=1;j<n1;j++)
{
if(n1%j==0)
{
sum=sum+j;
}
}
if(sum==n1)
{
txtper.setText(String.valueOf(n1)+" is
perfect number");
}
else
{
txtper.setText(String.valueOf(n1)+" is
not perfect number");
}
//sum of digits
int m=0,sum1=0;
while(n1>0)
{
m=n1%10;
sum1=sum1+m;
n1=n1/10;
}
txtsum.setText("Sum of digits is=
"+String.valueOf(sum1));
}
else if(e.getSource()==btnclr)
{
txtnum.setText("");
txtprime.setText("");
txteven.setText("");
txtfact.setText("");
txtper.setText("");
txtsum.setText("");
}
}
Window 2
public void windowOpened(WindowEvent e){}
public void windowClosed(WindowEvent e){}
public void windowIconified(WindowEvent e){}
public void windowDeiconified(WindowEvent e){}
public void windowActivated(WindowEvent e){}
public void windowDeactivated(WindowEvent e){}
public void windowClosing(WindowEvent e)
{
dispose();
}
public static void main(String args[])
{
Prog2 p=new Prog2();
}
}
Window 3
Square & Double
Window 3
Program Code...
import java.awt.*;
import java.awt.event.*;
public class Prog3 extends Frame implements WindowListener,ActionListener
{
Label lblnum,lblsq,lbld;
TextField txtnum,txtsq,txtd;
Button btnshow,btnclose;
Prog3()
{
setTitle("Square & Double");
setSize(300,300);
setResizable(false);
setLayout(new GridLayout(4,2));
lblnum=new Label("Enter Number");
txtnum=new TextField();
lblsq=new Label("Square of number");
txtsq=new TextField();
lbld=new Label("Double of Number");
txtd=new TextField();
btnshow=new Button("show");
btnclose=new Button("clear");
Color c=new Color(192,192,192);
setBackground(c);
btnshow.setBackground(Color.white);
btnclose.setBackground(Color.white);
Font f1=new Font("Lucida Console",Font.PLAIN,12);
setFont(f1);
add(lblnum); add(txtnum);
add(lblsq); add(txtsq);
add(lbld); add(txtd);
add(btnshow); add(btnclose);
btnshow.addActionListener(this);
btnclose.addActionListener(this);
addWindowListener(this);
setVisible(true);
}
Window 3
public void actionPerformed(ActionEvent e)
{
int squ,dou;
if(e.getSource()==btnshow)
{
squ=Integer.parseInt(txtnum.getText());
txtsq.setText(String.valueOf(squ*squ));
dou=Integer.parseInt(txtnum.getText());
txtd.setText(String.valueOf(dou+dou));
}
else if(e.getSource()==btnclose)
{
txtnum.setText("");
txtsq.setText("");
txtd.setText("");
}
}
public void windowOpened(WindowEvent e){}
public void windowClosed(WindowEvent e){}
public void windowIconified(WindowEvent e){}
public void windowDeiconified(WindowEvent e){}
public void windowActivated(WindowEvent e){}
public void windowDeactivated(WindowEvent e){}
public void windowClosing(WindowEvent e)
{
dispose();
}
public static void main(String args[])
{
Prog3 p=new Prog3();
}
}
Window 4
Change Case
Window 4
Program Code...
import java.awt.*;
import java.awt.event.*;
public class Prog4 extends Frame implements ActionListener,WindowListener
{
Label lblname,lblupp,lbllow,lblhead;
TextField txtname,txtupp,txtlow;
Button btnshow,btnclr;
Panel p1,p2,p3,p4,p5;
public Prog4()
{
setTitle("Window 4");
setSize(350,350);
setResizable(false);
lblhead=new Label(" Change Case
");
lblname=new Label("Enter your Name");
txtname=new TextField();
lblupp=new Label("Upper Case");
txtupp=new TextField();
lbllow=new Label("Lower Case");
txtlow=new TextField();
btnshow=new Button("show");
btnclr=new Button("clear");
p1=new Panel();
p2=new Panel();
p3=new Panel();
p4=new Panel();
p5=new Panel();
GridLayout g1=new GridLayout(1,0);
GridLayout g2=new GridLayout(1,3);
GridLayout g3=new GridLayout(1,1);
p1.setLayout(g1);
p2.setLayout(g2);
p3.setLayout(g2);
p4.setLayout(g2);
p5.setLayout(g3);
Window 4
Color c=new Color(229,156,14);
setBackground(c);
lblhead.setFont(new Font("Lucida
Console",Font.BOLD,14));
p1.add(lblhead);
Font f2=new Font("Lucida Console",Font.PLAIN,12);
setFont(f2);
p2.add(lblname); p2.add(txtname);
p2.add(new Label());
p3.add(lblupp); p3.add(txtupp);
p3.add(btnclr);
p4.add(lbllow); p4.add(txtlow);
p4.add(new Label());
p5.add(btnshow);
btnshow.addActionListener(this);
btnclr.addActionListener(this);
addWindowListener(this);
GridLayout g4=new GridLayout(5,1);
setLayout(g4);
add(p1);
add(p2);
add(p3);
add(p4);
add(p5);
setVisible(true);
}
public void actionPerformed(ActionEvent e)
{
String s1,s2;
if(e.getSource()==btnshow)
{
s1=txtname.getText();
txtupp.setText(s1.toUpperCase());
s2=txtname.getText();
txtlow.setText(s2.toLowerCase());
}
Window 4
public void windowOpened(WindowEvent e){}
public void windowClosed(WindowEvent e){}
public void windowIconified(WindowEvent e){}
public void windowDeiconified(WindowEvent e){}
public void windowActivated(WindowEvent e){}
public void windowDeactivated(WindowEvent e){}
public void windowClosing(WindowEvent e)
{
dispose();
}
public static void main(String args[])
{
Prog4 p=new Prog4();
}
}
Window 5
Arithmetic Calculator
Window 5
Program Code...
import java.awt.*;
import java.awt.event.*;
public class Prog5 extends Frame implements ActionListener,WindowListener
{
Label lblnum1,lblnum2,lblres,lblhead;
TextField txtnum1,txtnum2,txtres;
Button btnclr,btnplus,btnsub,btnmul,btndiv,btnmod;
Panel p1,p2,p3,p4,p5;
public Prog5()
{
setTitle("Window 5");
setSize(350,300);
lblhead=new Label(" Arithmetic Calculator
");
lblnum1=new Label("Enter No.1");
txtnum1=new TextField();
lblnum2=new Label("Enter No.2");
txtnum2=new TextField();
lblres=new Label("Result");
txtres=new TextField();
btnplus=new Button("+");
btnsub=new Button("-");
btnmul=new Button("*");
btndiv=new Button("/");
btnmod=new Button("%");
btnclr=new Button("clear");
p1=new Panel();
p2=new Panel();
p3=new Panel();
p4=new Panel();
p5=new Panel();
GridLayout g1=new GridLayout(1,3);
GridLayout g2=new GridLayout(1,5);
GridLayout g3=new GridLayout(1,1);
p1.setLayout(g1);
p2.setLayout(g1);
p3.setLayout(g1);
Window 5
p4.setLayout(g2);
p5.setLayout(g3);
Color c=new Color(255,140,140);
setBackground(c);
btnplus.setBackground(Color.white);
btnsub.setBackground(Color.white);
btnmul.setBackground(Color.white);
btndiv.setBackground(Color.white);
btnmod.setBackground(Color.white);
btnclr.setBackground(Color.white);
lblhead.setFont(new Font("Lucida
Console",Font.BOLD,14));
p5.add(lblhead);
Font f1=new Font("Lucida
Console",Font.PLAIN,12);
setFont(f1);
p1.add(lblnum1);
p1.add(txtnum1);
p1.add(new Label());
p2.add(lblnum2);
p2.add(txtnum2);
p2.add(btnclr);
p3.add(lblres);
p3.add(txtres);
p3.add(new Label());
p4.add(btnplus);
p4.add(btnsub);
p4.add(btnmul);
p4.add(btndiv);
p4.add(btnmod);
btnplus.addActionListener(this);
btnsub.addActionListener(this);
btnmul.addActionListener(this);
btndiv.addActionListener(this);
btnmod.addActionListener(this);
btnclr.addActionListener(this);
addWindowListener(this);
GridLayout g4=new GridLayout(5,1);
setLayout(g4);
Window 5
add(p5);
add(p1);
add(p2);
add(p3);
add(p4);
setVisible(true);
}
public void actionPerformed(ActionEvent e)
{
if(e.getSource()==btnplus)
{
int 1=Integer.parseInt(txtnum1.getText());
int n2=Integer.parseInt(txtnum2.getText());
txtres.setText(String.valueOf(n1+n2));
}
else if(e.getSource()==btnsub)
{
int n1=Integer.parseInt(txtnum1.getText());
int n2=Integer.parseInt(txtnum2.getText());
txtres.setText(String.valueOf(n1-n2));
}
else if(e.getSource()==btnmul)
{
int n1=Integer.parseInt(txtnum1.getText());
int n2=Integer.parseInt(txtnum2.getText());
txtres.setText(String.valueOf(n1*n2));
}
else if(e.getSource()==btndiv)
{
int n1=Integer.parseInt(txtnum1.getText());
int n2=Integer.parseInt(txtnum2.getText());
txtres.setText(String.valueOf(n1/n2));
}
else if(e.getSource()==btnmod)
{
int n1=Integer.parseInt(txtnum1.getText());
int n2=Integer.parseInt(txtnum2.getText());
txtres.setText(String.valueOf(n1%n2));
}
Window 5
else if(e.getSource()==btnclr)
{
txtnum1.setText("");
txtnum2.setText("");
txtres.setText("");
}
}
public void windowOpened(WindowEvent e){}
public void windowClosed(WindowEvent e){}
public void windowIconified(WindowEvent e){}
public void windowDeiconified(WindowEvent e){}
public void windowActivated(WindowEvent e){}
public void windowDeactivated(WindowEvent e){}
public void windowClosing(WindowEvent e)
{
dispose();
}
public static void main(String args[])
{
Prog5 p=new Prog5();
}
}
Window 6
Swapping
Window 6
Program Code...
import java.awt.*;
import java.awt.event.*;
public class Prog6 extends Frame implements WindowListener,ActionListener
{
Label lblnum1,lblnum2;
TextField txtnum1,txtnum2;
Button btnshow,btnclr;
Prog6()
{
setTitle("Swapping");
setSize(300,300);
setResizable(false);
setLayout(new GridLayout(3,2));
lblnum1=new Label("Enter Number1");
txtnum1=new TextField();
lblnum2=new Label("Enter Number2");
txtnum2=new TextField();
btnshow=new Button("show");
btnclr=new Button("clear");
Color c=new Color(211,211,211);
setBackground(c);
btnshow.setBackground(Color.white);
btnclr.setBackground(Color.white);
Font f1=new Font("Lucida Console",Font.PLAIN,12);
setFont(f1);
add(lblnum1); add(txtnum1);
add(lblnum2); add(txtnum2);
add(btnshow); add(btnclr);
btnshow.addActionListener(this);
btnclr.addActionListener(this);
addWindowListener(this);
setVisible(true);
}
Window 6
public void actionPerformed(ActionEvent e)
{
int a,b;
a=Integer.parseInt(txtnum1.getText());
b=Integer.parseInt(txtnum2.getText());
if(e.getSource()==btnshow)
{
a=a+b;
b=a-b;
a=a-b;
txtnum1.setText(String.valueOf(a));
txtnum2.setText(String.valueOf(b));
}
else if(e.getSource()==btnclr)
{
txtnum1.setText("");
txtnum2.setText("");
}
}
public void windowOpened(WindowEvent e){}
public void windowClosed(WindowEvent e){}
public void windowIconified(WindowEvent e){}
public void windowDeiconified(WindowEvent e){}
public void windowActivated(WindowEvent e){}
public void windowDeactivated(WindowEvent e){}
public void windowClosing(WindowEvent e)
{
dispose();
}
public static void main(String args[])
{
Prog6 p=new Prog6();
}
}
Window 7
Print Full Name
Window 7
Program Code...
import java.awt.*;
import java.awt.event.*;
public class Prog7 extends Frame implements WindowListener,ActionListener
{
Label lblfname,lbllname,lblres;
TextField txtfname,txtlname,txtres;
Button btnshow,btnclr;
Prog7()
{
setTitle("Print Full Name");
setSize(300,300);
setResizable(false);
setLayout(new GridLayout(4,2));
lblfname=new Label("First Name");
txtfname=new TextField();
lbllname=new Label("Last Name");
txtlname=new TextField();
lblres=new Label("Your Name");
txtres=new TextField();
btnshow=new Button("show");
btnclr=new Button("clear");
Color c=new Color(17,140,234);
setBackground(c);
lblfname.setForeground(Color.white);
lbllname.setForeground(Color.white);
lblres.setForeground(Color.white);
Font f1=new Font("Lucida Console",Font.BOLD,12);
setFont(f1);
btnshow.setBackground(Color.white);
btnclr.setBackground(Color.white);
add(lblfname);add(txtfname);
add(lbllname);add(txtlname);
add(lblres); add(txtres);
add(btnshow); add(btnclr);
txtres.setVisible(false);
btnshow.addActionListener(this);
Window 7
btnclr.addActionListener(this);
addWindowListener(this);
setVisible(true);
}
public void actionPerformed(ActionEvent e)
{
if(e.getSource()==btnshow)
{
if(e.getSource()==btnshow)
{
txtres.setVisible(true);
txtres.setText(txtfname.getText()
+“ "+txtlname.getText());
}
else if(e.getSource()==btnclr)
{
txtfname.setText("");
txtlname.setText("");
txtres.setVisible(false);
}
}
public void windowOpened(WindowEvent e){}
public void windowClosed(WindowEvent e){}
public void windowIconified(WindowEvent ){}
public void windowDeiconified(WindowEvent e){}
public void windowActivated(WindowEvent e){}
public void windowDeactivated(WindowEvent e){}
public void windowClosing(WindowEvent e)
{ dispose(); }
public static void main(String args[])
{
Prog7 p=new Prog7();
}
}

More Related Content

Similar to Jagriti

Kuldeep
KuldeepKuldeep
Kuldeep
dezyneecole
 
Shivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third YearShivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third Year
Dezyneecole
 
Qt Workshop
Qt WorkshopQt Workshop
Qt Workshop
Johan Thelin
 
Yash Agarwal
Yash AgarwalYash Agarwal
Yash Agarwal
dezyneecole
 
Vinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third YearVinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third Year
Dezyneecole
 
Deepak Soni ,BCA Third Year
Deepak Soni ,BCA Third YearDeepak Soni ,BCA Third Year
Deepak Soni ,BCA Third Year
Dezyneecole
 
XML-Free Programming
XML-Free ProgrammingXML-Free Programming
XML-Free Programming
Stephen Chin
 
Gaurav Jatav , BCA Third Year
Gaurav Jatav , BCA Third YearGaurav Jatav , BCA Third Year
Gaurav Jatav , BCA Third Year
dezyneecole
 
Gwt and Xtend
Gwt and XtendGwt and Xtend
Gwt and Xtend
Sven Efftinge
 
Tying it all together in real time - Connect.JS / Ti.Connect
Tying it all together in real time - Connect.JS / Ti.ConnectTying it all together in real time - Connect.JS / Ti.Connect
Tying it all together in real time - Connect.JS / Ti.Connect
joshcjensen
 
Kuldeep Singh Project on C language and Visual Basic ,Final Year BCA ,Dezyne ...
Kuldeep Singh Project on C language and Visual Basic ,Final Year BCA ,Dezyne ...Kuldeep Singh Project on C language and Visual Basic ,Final Year BCA ,Dezyne ...
Kuldeep Singh Project on C language and Visual Basic ,Final Year BCA ,Dezyne ...
dezyneecole
 
Shivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third YearShivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third Year
Dezyneecole
 
Creating a Facebook Clone - Part V - Transcript.pdf
Creating a Facebook Clone - Part V - Transcript.pdfCreating a Facebook Clone - Part V - Transcript.pdf
Creating a Facebook Clone - Part V - Transcript.pdf
ShaiAlmog1
 
Kirtesh Khandelwal,Final Year BCA , Dezyne E'cole College
Kirtesh Khandelwal,Final Year BCA , Dezyne E'cole CollegeKirtesh Khandelwal,Final Year BCA , Dezyne E'cole College
Kirtesh Khandelwal,Final Year BCA , Dezyne E'cole College
dezyneecole
 
Deepika Mittal , BCA Third Year
Deepika Mittal , BCA Third YearDeepika Mittal , BCA Third Year
Deepika Mittal , BCA Third Year
dezyneecole
 
Day 5
Day 5Day 5
Kajal Gaharwal , BCA Third Year
Kajal Gaharwal , BCA Third YearKajal Gaharwal , BCA Third Year
Kajal Gaharwal , BCA Third Year
Dezyneecole
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third Year
Dezyneecole
 
Hardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearHardik Jadam , BCA Third Year
Hardik Jadam , BCA Third Year
Dezyneecole
 

Similar to Jagriti (20)

Kuldeep
KuldeepKuldeep
Kuldeep
 
Shivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third YearShivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third Year
 
Qt Workshop
Qt WorkshopQt Workshop
Qt Workshop
 
Yash Agarwal
Yash AgarwalYash Agarwal
Yash Agarwal
 
Vinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third YearVinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third Year
 
Deepak Soni ,BCA Third Year
Deepak Soni ,BCA Third YearDeepak Soni ,BCA Third Year
Deepak Soni ,BCA Third Year
 
XML-Free Programming
XML-Free ProgrammingXML-Free Programming
XML-Free Programming
 
Os Secoske
Os SecoskeOs Secoske
Os Secoske
 
Gaurav Jatav , BCA Third Year
Gaurav Jatav , BCA Third YearGaurav Jatav , BCA Third Year
Gaurav Jatav , BCA Third Year
 
Gwt and Xtend
Gwt and XtendGwt and Xtend
Gwt and Xtend
 
Tying it all together in real time - Connect.JS / Ti.Connect
Tying it all together in real time - Connect.JS / Ti.ConnectTying it all together in real time - Connect.JS / Ti.Connect
Tying it all together in real time - Connect.JS / Ti.Connect
 
Kuldeep Singh Project on C language and Visual Basic ,Final Year BCA ,Dezyne ...
Kuldeep Singh Project on C language and Visual Basic ,Final Year BCA ,Dezyne ...Kuldeep Singh Project on C language and Visual Basic ,Final Year BCA ,Dezyne ...
Kuldeep Singh Project on C language and Visual Basic ,Final Year BCA ,Dezyne ...
 
Shivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third YearShivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third Year
 
Creating a Facebook Clone - Part V - Transcript.pdf
Creating a Facebook Clone - Part V - Transcript.pdfCreating a Facebook Clone - Part V - Transcript.pdf
Creating a Facebook Clone - Part V - Transcript.pdf
 
Kirtesh Khandelwal,Final Year BCA , Dezyne E'cole College
Kirtesh Khandelwal,Final Year BCA , Dezyne E'cole CollegeKirtesh Khandelwal,Final Year BCA , Dezyne E'cole College
Kirtesh Khandelwal,Final Year BCA , Dezyne E'cole College
 
Deepika Mittal , BCA Third Year
Deepika Mittal , BCA Third YearDeepika Mittal , BCA Third Year
Deepika Mittal , BCA Third Year
 
Day 5
Day 5Day 5
Day 5
 
Kajal Gaharwal , BCA Third Year
Kajal Gaharwal , BCA Third YearKajal Gaharwal , BCA Third Year
Kajal Gaharwal , BCA Third Year
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third Year
 
Hardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearHardik Jadam , BCA Third Year
Hardik Jadam , BCA Third Year
 

More from dezyneecole

Gracika Benjamin , Diploma Fashion Design Second Year
Gracika Benjamin , Diploma Fashion Design Second YearGracika Benjamin , Diploma Fashion Design Second Year
Gracika Benjamin , Diploma Fashion Design Second Year
dezyneecole
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second YearSheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
dezyneecole
 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
dezyneecole
 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
dezyneecole
 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
dezyneecole
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second YearSheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
dezyneecole
 
Sushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second YearSushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second Year
dezyneecole
 
Sushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second YearSushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second Year
dezyneecole
 
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
dezyneecole
 
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
dezyneecole
 
Gitesh Chhatwani , BCA -3 Year
Gitesh Chhatwani , BCA -3 YearGitesh Chhatwani , BCA -3 Year
Gitesh Chhatwani , BCA -3 Year
dezyneecole
 
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
dezyneecole
 
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
dezyneecole
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
dezyneecole
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
dezyneecole
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
dezyneecole
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
dezyneecole
 
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
dezyneecole
 
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
dezyneecole
 
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
dezyneecole
 

More from dezyneecole (20)

Gracika Benjamin , Diploma Fashion Design Second Year
Gracika Benjamin , Diploma Fashion Design Second YearGracika Benjamin , Diploma Fashion Design Second Year
Gracika Benjamin , Diploma Fashion Design Second Year
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second YearSheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second YearSheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
 
Sushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second YearSushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second Year
 
Sushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second YearSushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second Year
 
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
 
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
 
Gitesh Chhatwani , BCA -3 Year
Gitesh Chhatwani , BCA -3 YearGitesh Chhatwani , BCA -3 Year
Gitesh Chhatwani , BCA -3 Year
 
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
 
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
 
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
 
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
 
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
 

Recently uploaded

Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
Special education needs
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
DeeptiGupta154
 
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBCSTRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
kimdan468
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
EverAndrsGuerraGuerr
 
Digital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion DesignsDigital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion Designs
chanes7
 
Advantages and Disadvantages of CMS from an SEO Perspective
Advantages and Disadvantages of CMS from an SEO PerspectiveAdvantages and Disadvantages of CMS from an SEO Perspective
Advantages and Disadvantages of CMS from an SEO Perspective
Krisztián Száraz
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
Celine George
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
Nguyen Thanh Tu Collection
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
Thiyagu K
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
Peter Windle
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
camakaiclarkmusic
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
David Douglas School District
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
Balvir Singh
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
Jisc
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
thanhdowork
 

Recently uploaded (20)

Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 
special B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdfspecial B.ed 2nd year old paper_20240531.pdf
special B.ed 2nd year old paper_20240531.pdf
 
Overview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with MechanismOverview on Edible Vaccine: Pros & Cons with Mechanism
Overview on Edible Vaccine: Pros & Cons with Mechanism
 
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBCSTRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
STRAND 3 HYGIENIC PRACTICES.pptx GRADE 7 CBC
 
Thesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.pptThesis Statement for students diagnonsed withADHD.ppt
Thesis Statement for students diagnonsed withADHD.ppt
 
Digital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion DesignsDigital Artifact 2 - Investigating Pavilion Designs
Digital Artifact 2 - Investigating Pavilion Designs
 
Advantages and Disadvantages of CMS from an SEO Perspective
Advantages and Disadvantages of CMS from an SEO PerspectiveAdvantages and Disadvantages of CMS from an SEO Perspective
Advantages and Disadvantages of CMS from an SEO Perspective
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
 
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
BÀI TẬP BỔ TRỢ TIẾNG ANH GLOBAL SUCCESS LỚP 3 - CẢ NĂM (CÓ FILE NGHE VÀ ĐÁP Á...
 
Unit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdfUnit 8 - Information and Communication Technology (Paper I).pdf
Unit 8 - Information and Communication Technology (Paper I).pdf
 
A Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in EducationA Strategic Approach: GenAI in Education
A Strategic Approach: GenAI in Education
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 
CACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdfCACJapan - GROUP Presentation 1- Wk 4.pdf
CACJapan - GROUP Presentation 1- Wk 4.pdf
 
Pride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School DistrictPride Month Slides 2024 David Douglas School District
Pride Month Slides 2024 David Douglas School District
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
 
Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
 
Supporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptxSupporting (UKRI) OA monographs at Salford.pptx
Supporting (UKRI) OA monographs at Salford.pptx
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
A Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptxA Survey of Techniques for Maximizing LLM Performance.pptx
A Survey of Techniques for Maximizing LLM Performance.pptx
 

Jagriti

  • 1. Submitted By Jagriti Pepawat BCA 2nd Year Dezyne E’cole College
  • 2. Awt Layout on Java Submitted By Jagriti Pepawat BCA – 2nd Year Dezyne E’ Cole College 106/10, Civil Lines, Ajmer Tel: 0145-2624679 www.dezyneecole.com 2015-2016
  • 3. Acknowledgement This Awt Layout on “JAVA Language” was developed at Dezyne E’cole College. During the making of this project I have learnt a lot and I thank my mentor Mr. Mukesh Gurjar for helping us during the making of project. I thank my college “Dezyne E’cole College” for helping us to bring out our skill. Thank You Jagriti Pepawat BCA 2nd Year
  • 5. Window 1 Program Code... import javax.swing.*; import java.awt.*; import java.awt.event.*; public class Prog1 extends Frame implements ActionListener,WindowListener { Label lblname,lblsn,lbladd,lblcity,lblhead; TextField txtsn,txtname,txtcity; TextArea txtA; String name; Button btnshow,btnclr; public Prog1() { setTitle("Window 1"); setSize(300,350); setLayout(null); setResizable(false); lblhead=new Label("Personal Detail"); lblsn=new Label("Stu_ID"); txtsn=new TextField(); lblname=new Label("Name"); txtname=new TextField(); lblcity=new Label("City"); txtcity=new TextField(); lbladd=new Label("Address"); txtA=new TextArea(); btnshow=new Button("show"); btnclr=new Button("clear"); Color c=new Color(222,10,60); setBackground(c); lblhead.setForeground(Color.white); lblsn.setForeground(Color.white); lblname.setForeground(Color.white); lblcity.setForeground(Color.white); lbladd.setForeground(Color.white); btnshow.setBackground(Color.white); btnclr.setBackground(Color.white); add(lblhead);
  • 6. Window 1 lblhead.setFont(new Font("Lucida Console",Font.BOLD,14)); lblhead.setBounds(90,40,150,20); Font f1=new Font("Lucida Console",Font.PLAIN,12); setFont(f1); add(lblsn); lblsn.setBounds(15,80,50,20); add(txtsn); txtsn.setBounds(80,80,50,20); add(lblname); lblname.setBounds(15,110,50,20); add(txtname); txtname.setBounds(80,110,50,20); add(lblcity); lblcity.setBounds(15,140,50,20); add(txtcity); txtcity.setBounds(80,140,50,20); add(lbladd); lbladd.setBounds(15,170,50,20); add(txtA); txtA.setBounds(80,170,200,100); add(btnshow); btnshow.setBounds(80,290,50,20); add(btnclr); btnclr.setBounds(180,290,50,20); btnshow.addActionListener(this); btnclr.addActionListener(this); addWindowListener(this); setVisible(true); } public void actionPerformed(ActionEvent e) { String s; if(e.getSource()==btnshow) { s=JOptionPane.showInputDialog("Enter Your address"); txtA.append("<-----------------Details-------------- >nStu_ID= "+txtsn.getText()+"nName= "+txtname.getText()+"nCity= "+txtcity.getText()+"n Address= "+s);
  • 7. Window 1 } else if(e.getSource()==btnclr) { txtsn.setText(""); txtname.setText(""); txtcity.setText(""); txtA.setText(""); } } public void windowOpened(WindowEvent e){} public void windowClosed(WindowEvent e){} public void windowIconified(WindowEvent e){} public void windowDeiconified(WindowEvent e){} public void windowActivated(WindowEvent e){} public void windowDeactivated(WindowEvent e){} public void windowClosing(WindowEvent e) { dispose(); } public static void main(String args[]) { Prog1 p=new Prog1(); } }
  • 9. Window 2 Program Code... import java.awt.*; import java.awt.event.*; public class Prog2 extends Frame implements ActionListener,WindowListener { Label lblnum,lblprime,lbleven,lblfact,lblsum,lblper,lblhead; TextField txtnum,txtprime,txteven,txtfact,txtsum,txtper; Button btnshow,btnclr; Font f; int sum,i,p,j,fa,n1; public Prog2() { setTitle("Window 2"); setSize(350,300); setLayout(null); setResizable(false); lblhead=new Label("Event Driven Program"); lblnum=new Label("Enter number"); txtnum=new TextField(); lblprime=new Label("Prime"); txtprime=new TextField(); lbleven=new Label("Even/Odd"); txteven=new TextField(); lblfact=new Label("Factorial"); txtfact=new TextField(); lblper=new Label("Perfect"); txtper=new TextField(); lblsum=new Label("Sum of Digit"); txtsum=new TextField(); btnshow=new Button("show"); btnclr=new Button("clear"); Color c=new Color(48,228,255); setBackground(c); add(lblhead); lblhead.setFont(new Font("Lucida Console",Font.BOLD,14)); lblhead.setBounds(90,30,190,20);
  • 10. Window 2 btnshow.setBackground(Color.white); btnclr.setBackground(Color.white); Font f1=new Font("Lucida Console",Font.PLAIN,12); setFont(f1); add(lblnum); lblnum.setBounds(15,60,150,20); add(txtnum); txtnum.setBounds(170,60,150,20); add(lblprime); lblprime.setBounds(15,90,150,20); add(txtprime); txtprime.setBounds(170,90,150,20); add(lbleven); lbleven.setBounds(15,120,150,20); add(txteven); txteven.setBounds(170,120,150,20); add(lblfact); lblfact.setBounds(15,150,150,20); add(txtfact); txtfact.setBounds(170,150,150,20); add(lblper); lblper.setBounds(15,180,150,20); add(txtper); txtper.setBounds(170,180,150,20); add(lblsum); lblsum.setBounds(15,210,150,20); add(txtsum); txtsum.setBounds(170,210,150,20); add(btnshow); btnshow.setBounds(100,250,50,20); add(btnclr); btnclr.setBounds(200,250,50,20); btnshow.addActionListener(this); btnclr.addActionListener(this); addWindowListener(this); setVisible(true); } public void actionPerformed(ActionEvent e) { if(e.getSource()==btnshow) {
  • 11. Window 2 //prime p=0; n1=Integer.parseInt(txtnum.getText()); for(i=1;i<=n1;i++) { if(n1%i==0) { p++; } } if(p==2||p==1) { txtprime.setText(String.valueOf(n1)+" is prime"); } else { txtprime.setText(String.valueOf(n1)+" is not prime"); } //even/odd n1=Integer.parseInt(txtnum.getText()); if(n1%2==0) { txteven.setText(String.valueOf(n1)+" is even"); } else { txteven.setText(String.valueOf(n1)+" is odd"); } //factorial n1=Integer.parseInt(txtnum.getText()); fa=1; for(j=1;j<=n1;j++) { fa=(fa*j); } txtfact.setText("Factorial is= "+String.valueOf(fa));
  • 12. Window 2 //perfect sum=0; for(j=1;j<n1;j++) { if(n1%j==0) { sum=sum+j; } } if(sum==n1) { txtper.setText(String.valueOf(n1)+" is perfect number"); } else { txtper.setText(String.valueOf(n1)+" is not perfect number"); } //sum of digits int m=0,sum1=0; while(n1>0) { m=n1%10; sum1=sum1+m; n1=n1/10; } txtsum.setText("Sum of digits is= "+String.valueOf(sum1)); } else if(e.getSource()==btnclr) { txtnum.setText(""); txtprime.setText(""); txteven.setText(""); txtfact.setText(""); txtper.setText(""); txtsum.setText(""); } }
  • 13. Window 2 public void windowOpened(WindowEvent e){} public void windowClosed(WindowEvent e){} public void windowIconified(WindowEvent e){} public void windowDeiconified(WindowEvent e){} public void windowActivated(WindowEvent e){} public void windowDeactivated(WindowEvent e){} public void windowClosing(WindowEvent e) { dispose(); } public static void main(String args[]) { Prog2 p=new Prog2(); } }
  • 15. Window 3 Program Code... import java.awt.*; import java.awt.event.*; public class Prog3 extends Frame implements WindowListener,ActionListener { Label lblnum,lblsq,lbld; TextField txtnum,txtsq,txtd; Button btnshow,btnclose; Prog3() { setTitle("Square & Double"); setSize(300,300); setResizable(false); setLayout(new GridLayout(4,2)); lblnum=new Label("Enter Number"); txtnum=new TextField(); lblsq=new Label("Square of number"); txtsq=new TextField(); lbld=new Label("Double of Number"); txtd=new TextField(); btnshow=new Button("show"); btnclose=new Button("clear"); Color c=new Color(192,192,192); setBackground(c); btnshow.setBackground(Color.white); btnclose.setBackground(Color.white); Font f1=new Font("Lucida Console",Font.PLAIN,12); setFont(f1); add(lblnum); add(txtnum); add(lblsq); add(txtsq); add(lbld); add(txtd); add(btnshow); add(btnclose); btnshow.addActionListener(this); btnclose.addActionListener(this); addWindowListener(this); setVisible(true); }
  • 16. Window 3 public void actionPerformed(ActionEvent e) { int squ,dou; if(e.getSource()==btnshow) { squ=Integer.parseInt(txtnum.getText()); txtsq.setText(String.valueOf(squ*squ)); dou=Integer.parseInt(txtnum.getText()); txtd.setText(String.valueOf(dou+dou)); } else if(e.getSource()==btnclose) { txtnum.setText(""); txtsq.setText(""); txtd.setText(""); } } public void windowOpened(WindowEvent e){} public void windowClosed(WindowEvent e){} public void windowIconified(WindowEvent e){} public void windowDeiconified(WindowEvent e){} public void windowActivated(WindowEvent e){} public void windowDeactivated(WindowEvent e){} public void windowClosing(WindowEvent e) { dispose(); } public static void main(String args[]) { Prog3 p=new Prog3(); } }
  • 18. Window 4 Program Code... import java.awt.*; import java.awt.event.*; public class Prog4 extends Frame implements ActionListener,WindowListener { Label lblname,lblupp,lbllow,lblhead; TextField txtname,txtupp,txtlow; Button btnshow,btnclr; Panel p1,p2,p3,p4,p5; public Prog4() { setTitle("Window 4"); setSize(350,350); setResizable(false); lblhead=new Label(" Change Case "); lblname=new Label("Enter your Name"); txtname=new TextField(); lblupp=new Label("Upper Case"); txtupp=new TextField(); lbllow=new Label("Lower Case"); txtlow=new TextField(); btnshow=new Button("show"); btnclr=new Button("clear"); p1=new Panel(); p2=new Panel(); p3=new Panel(); p4=new Panel(); p5=new Panel(); GridLayout g1=new GridLayout(1,0); GridLayout g2=new GridLayout(1,3); GridLayout g3=new GridLayout(1,1); p1.setLayout(g1); p2.setLayout(g2); p3.setLayout(g2); p4.setLayout(g2); p5.setLayout(g3);
  • 19. Window 4 Color c=new Color(229,156,14); setBackground(c); lblhead.setFont(new Font("Lucida Console",Font.BOLD,14)); p1.add(lblhead); Font f2=new Font("Lucida Console",Font.PLAIN,12); setFont(f2); p2.add(lblname); p2.add(txtname); p2.add(new Label()); p3.add(lblupp); p3.add(txtupp); p3.add(btnclr); p4.add(lbllow); p4.add(txtlow); p4.add(new Label()); p5.add(btnshow); btnshow.addActionListener(this); btnclr.addActionListener(this); addWindowListener(this); GridLayout g4=new GridLayout(5,1); setLayout(g4); add(p1); add(p2); add(p3); add(p4); add(p5); setVisible(true); } public void actionPerformed(ActionEvent e) { String s1,s2; if(e.getSource()==btnshow) { s1=txtname.getText(); txtupp.setText(s1.toUpperCase()); s2=txtname.getText(); txtlow.setText(s2.toLowerCase()); }
  • 20. Window 4 public void windowOpened(WindowEvent e){} public void windowClosed(WindowEvent e){} public void windowIconified(WindowEvent e){} public void windowDeiconified(WindowEvent e){} public void windowActivated(WindowEvent e){} public void windowDeactivated(WindowEvent e){} public void windowClosing(WindowEvent e) { dispose(); } public static void main(String args[]) { Prog4 p=new Prog4(); } }
  • 22. Window 5 Program Code... import java.awt.*; import java.awt.event.*; public class Prog5 extends Frame implements ActionListener,WindowListener { Label lblnum1,lblnum2,lblres,lblhead; TextField txtnum1,txtnum2,txtres; Button btnclr,btnplus,btnsub,btnmul,btndiv,btnmod; Panel p1,p2,p3,p4,p5; public Prog5() { setTitle("Window 5"); setSize(350,300); lblhead=new Label(" Arithmetic Calculator "); lblnum1=new Label("Enter No.1"); txtnum1=new TextField(); lblnum2=new Label("Enter No.2"); txtnum2=new TextField(); lblres=new Label("Result"); txtres=new TextField(); btnplus=new Button("+"); btnsub=new Button("-"); btnmul=new Button("*"); btndiv=new Button("/"); btnmod=new Button("%"); btnclr=new Button("clear"); p1=new Panel(); p2=new Panel(); p3=new Panel(); p4=new Panel(); p5=new Panel(); GridLayout g1=new GridLayout(1,3); GridLayout g2=new GridLayout(1,5); GridLayout g3=new GridLayout(1,1); p1.setLayout(g1); p2.setLayout(g1); p3.setLayout(g1);
  • 23. Window 5 p4.setLayout(g2); p5.setLayout(g3); Color c=new Color(255,140,140); setBackground(c); btnplus.setBackground(Color.white); btnsub.setBackground(Color.white); btnmul.setBackground(Color.white); btndiv.setBackground(Color.white); btnmod.setBackground(Color.white); btnclr.setBackground(Color.white); lblhead.setFont(new Font("Lucida Console",Font.BOLD,14)); p5.add(lblhead); Font f1=new Font("Lucida Console",Font.PLAIN,12); setFont(f1); p1.add(lblnum1); p1.add(txtnum1); p1.add(new Label()); p2.add(lblnum2); p2.add(txtnum2); p2.add(btnclr); p3.add(lblres); p3.add(txtres); p3.add(new Label()); p4.add(btnplus); p4.add(btnsub); p4.add(btnmul); p4.add(btndiv); p4.add(btnmod); btnplus.addActionListener(this); btnsub.addActionListener(this); btnmul.addActionListener(this); btndiv.addActionListener(this); btnmod.addActionListener(this); btnclr.addActionListener(this); addWindowListener(this); GridLayout g4=new GridLayout(5,1); setLayout(g4);
  • 24. Window 5 add(p5); add(p1); add(p2); add(p3); add(p4); setVisible(true); } public void actionPerformed(ActionEvent e) { if(e.getSource()==btnplus) { int 1=Integer.parseInt(txtnum1.getText()); int n2=Integer.parseInt(txtnum2.getText()); txtres.setText(String.valueOf(n1+n2)); } else if(e.getSource()==btnsub) { int n1=Integer.parseInt(txtnum1.getText()); int n2=Integer.parseInt(txtnum2.getText()); txtres.setText(String.valueOf(n1-n2)); } else if(e.getSource()==btnmul) { int n1=Integer.parseInt(txtnum1.getText()); int n2=Integer.parseInt(txtnum2.getText()); txtres.setText(String.valueOf(n1*n2)); } else if(e.getSource()==btndiv) { int n1=Integer.parseInt(txtnum1.getText()); int n2=Integer.parseInt(txtnum2.getText()); txtres.setText(String.valueOf(n1/n2)); } else if(e.getSource()==btnmod) { int n1=Integer.parseInt(txtnum1.getText()); int n2=Integer.parseInt(txtnum2.getText()); txtres.setText(String.valueOf(n1%n2)); }
  • 25. Window 5 else if(e.getSource()==btnclr) { txtnum1.setText(""); txtnum2.setText(""); txtres.setText(""); } } public void windowOpened(WindowEvent e){} public void windowClosed(WindowEvent e){} public void windowIconified(WindowEvent e){} public void windowDeiconified(WindowEvent e){} public void windowActivated(WindowEvent e){} public void windowDeactivated(WindowEvent e){} public void windowClosing(WindowEvent e) { dispose(); } public static void main(String args[]) { Prog5 p=new Prog5(); } }
  • 27. Window 6 Program Code... import java.awt.*; import java.awt.event.*; public class Prog6 extends Frame implements WindowListener,ActionListener { Label lblnum1,lblnum2; TextField txtnum1,txtnum2; Button btnshow,btnclr; Prog6() { setTitle("Swapping"); setSize(300,300); setResizable(false); setLayout(new GridLayout(3,2)); lblnum1=new Label("Enter Number1"); txtnum1=new TextField(); lblnum2=new Label("Enter Number2"); txtnum2=new TextField(); btnshow=new Button("show"); btnclr=new Button("clear"); Color c=new Color(211,211,211); setBackground(c); btnshow.setBackground(Color.white); btnclr.setBackground(Color.white); Font f1=new Font("Lucida Console",Font.PLAIN,12); setFont(f1); add(lblnum1); add(txtnum1); add(lblnum2); add(txtnum2); add(btnshow); add(btnclr); btnshow.addActionListener(this); btnclr.addActionListener(this); addWindowListener(this); setVisible(true); }
  • 28. Window 6 public void actionPerformed(ActionEvent e) { int a,b; a=Integer.parseInt(txtnum1.getText()); b=Integer.parseInt(txtnum2.getText()); if(e.getSource()==btnshow) { a=a+b; b=a-b; a=a-b; txtnum1.setText(String.valueOf(a)); txtnum2.setText(String.valueOf(b)); } else if(e.getSource()==btnclr) { txtnum1.setText(""); txtnum2.setText(""); } } public void windowOpened(WindowEvent e){} public void windowClosed(WindowEvent e){} public void windowIconified(WindowEvent e){} public void windowDeiconified(WindowEvent e){} public void windowActivated(WindowEvent e){} public void windowDeactivated(WindowEvent e){} public void windowClosing(WindowEvent e) { dispose(); } public static void main(String args[]) { Prog6 p=new Prog6(); } }
  • 30. Window 7 Program Code... import java.awt.*; import java.awt.event.*; public class Prog7 extends Frame implements WindowListener,ActionListener { Label lblfname,lbllname,lblres; TextField txtfname,txtlname,txtres; Button btnshow,btnclr; Prog7() { setTitle("Print Full Name"); setSize(300,300); setResizable(false); setLayout(new GridLayout(4,2)); lblfname=new Label("First Name"); txtfname=new TextField(); lbllname=new Label("Last Name"); txtlname=new TextField(); lblres=new Label("Your Name"); txtres=new TextField(); btnshow=new Button("show"); btnclr=new Button("clear"); Color c=new Color(17,140,234); setBackground(c); lblfname.setForeground(Color.white); lbllname.setForeground(Color.white); lblres.setForeground(Color.white); Font f1=new Font("Lucida Console",Font.BOLD,12); setFont(f1); btnshow.setBackground(Color.white); btnclr.setBackground(Color.white); add(lblfname);add(txtfname); add(lbllname);add(txtlname); add(lblres); add(txtres); add(btnshow); add(btnclr); txtres.setVisible(false); btnshow.addActionListener(this);
  • 31. Window 7 btnclr.addActionListener(this); addWindowListener(this); setVisible(true); } public void actionPerformed(ActionEvent e) { if(e.getSource()==btnshow) { if(e.getSource()==btnshow) { txtres.setVisible(true); txtres.setText(txtfname.getText() +“ "+txtlname.getText()); } else if(e.getSource()==btnclr) { txtfname.setText(""); txtlname.setText(""); txtres.setVisible(false); } } public void windowOpened(WindowEvent e){} public void windowClosed(WindowEvent e){} public void windowIconified(WindowEvent ){} public void windowDeiconified(WindowEvent e){} public void windowActivated(WindowEvent e){} public void windowDeactivated(WindowEvent e){} public void windowClosing(WindowEvent e) { dispose(); } public static void main(String args[]) { Prog7 p=new Prog7(); } }