SlideShare a Scribd company logo
1 of 5
Download to read offline
Working with the Calculator program.
Once imported run the application (CalcMain is the driver)
Determine what Calculator does and how it works investigate.
Add multiplication and subtraction buttons to the application.
Test to make sure all functionality works as you expect.
Export updated Calculator to a Runnable JAR file.
Go to the location where you put the runnable JAR and double click it to run the application
Capture the runnable JAR file runtime screen shot.
CalcMain.java
import javax.swing.JFrame;
public class CalcMain {
public static void main(String [] args)
{
JFrame frame = new JFrame("Calculator");
//2. Optional: What happens when the frame closes?
frame.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE);
//3. Create your panel and put it in the frame.
frame.getContentPane().add(new Calculator());
//4. Size the frame.
frame.setSize(300, 550);
//5. Show it.
frame.setVisible(true);
}
}
Calculator.java
import javax.swing.*;
import java.awt.Color;
import java.awt.event.*;
public class Calculator extends JPanel implements ActionListener {
String num1="";
String num2="";
String operator="";
boolean usingFirst=true;
double total=0;
JTextField display;
JButton b1;
JButton b2;
JButton b3;
JButton b4;
JButton b5;
JButton b6;
JButton b7;
JButton b8;
JButton b9;
JButton b0;
JButton bdec;
JButton bclear;
JButton bequals;
JButton bplus;
JButton bmult;
JButton bsub;
public Calculator()
{
this.setBackground(Color.white);
setLayout(null);
display=new JTextField();
b1=new JButton("1");
b2=new JButton("2");
b3=new JButton("3");
b4=new JButton("4");
b5=new JButton("5");
b6=new JButton("6");
b7=new JButton("7");
b8=new JButton("8");
b9=new JButton("9");
b0=new JButton("0");
bdec=new JButton(".");
bclear=new JButton("C");
bequals = new JButton( "=");
bplus=new JButton("+");
bmult=new JButton("*");
bsub=new JButton("-");
display.setBounds(0,0,205,50);
b1.setBounds(0,200,50,50);
b2.setBounds(50,200,50,50);
b3.setBounds(100,200,50,50);
bplus.setBounds(154,200,50,50);
b4.setBounds(0,150,50,50);
b5.setBounds(50,150,50,50);
b6.setBounds(100,150,50,50);
bmult.setBounds(154,150,50,50);
b7.setBounds(0,100,50,50);
b8.setBounds(50,100,50,50);
b9.setBounds(100,100,50,50);
bsub.setBounds(154,100,50,50);
b0.setBounds(0,250,50,50);
bdec.setBounds(50,250,50,50);
bclear.setBounds(100,250,50,50);
bequals.setBounds(154,250,50,50);
add(b1);
add(b2);
add(b3);
add(b4);
add(b5);
add(b6);
add(b7);
add(b8);
add(b9);
add(b0);
add(bdec);
add(display);
add(bclear);
add(bequals);
add(bplus);
add(bmult);
add(bsub);
b1.addActionListener(this);
b2.addActionListener(this);
b3.addActionListener(this);
b4.addActionListener(this);
b5.addActionListener(this);
b6.addActionListener(this);
b7.addActionListener(this);
b8.addActionListener(this);
b9.addActionListener(this);
b0.addActionListener(this);
bequals.addActionListener(this);
bplus.addActionListener(this);
bclear.addActionListener(this);
bdec.addActionListener(this);
bmult.addActionListener(this);
bsub.addActionListener(this);
}
public void actionPerformed(ActionEvent e){
String s=e.getActionCommand();
if(s.equals("1")||s.equals("2")||s.equals("3")||s.equals("4")||
s.equals("5")||s.equals("6")||s.equals("7")||s.equals("8")||
s.equals("9")||s.equals("0")||s.equals("."))
{
if(usingFirst)
{
num1=num1+s;
display.setText(num1);
}
else
{
num2=num2+s;
display.setText(num2);
}
}
if(s.equals("+"))
{
usingFirst=false;
operator="+";
}
if(s.equals("-"))
{
usingFirst=false;
operator="-";
}
if(s.equals("*"))
{
usingFirst=false;
operator="*";
}
if(s.equals("="))
{
switch(operator){
case "+":
total=Double.parseDouble(num1)+Double.parseDouble(num2);
display.setText( ""+total );
break;
}
usingFirst=true;
num1="";
num2="";
operator="";
}
if(s.equals("C")) {
display.setText( "" );
usingFirst=true;
num1="";
num2="";
total=0;
}
}
}

More Related Content

Similar to Working with the Calculator program Once imported run the.pdf

This is Java, What I am creating is a multi lab pacman type game.T.pdf
This is Java, What I am creating is a multi lab pacman type game.T.pdfThis is Java, What I am creating is a multi lab pacman type game.T.pdf
This is Java, What I am creating is a multi lab pacman type game.T.pdffashionscollect
 
Java rmi example program with code
Java rmi example program with codeJava rmi example program with code
Java rmi example program with codekamal kotecha
 
Hi my question pretains to Java programing, What I am creating is a .pdf
Hi my question pretains to Java programing, What I am creating is a .pdfHi my question pretains to Java programing, What I am creating is a .pdf
Hi my question pretains to Java programing, What I am creating is a .pdfeyeonsecuritysystems
 
UNIT 5-JavaFX Event Handling, Controls and Components.pdf
UNIT 5-JavaFX Event Handling, Controls and Components.pdfUNIT 5-JavaFX Event Handling, Controls and Components.pdf
UNIT 5-JavaFX Event Handling, Controls and Components.pdfSakkaravarthiS1
 
Single Sourcing RAP and RCP - Desktop and web clients from a single code base
Single Sourcing RAP and RCP - Desktop and web clients from a single code baseSingle Sourcing RAP and RCP - Desktop and web clients from a single code base
Single Sourcing RAP and RCP - Desktop and web clients from a single code baseRalf Sternberg
 
Neo4j Stored Procedure Training Part 2
Neo4j Stored Procedure Training Part 2Neo4j Stored Procedure Training Part 2
Neo4j Stored Procedure Training Part 2Max De Marzi
 
Throughout the semester, we have been working on command line applic.pdf
Throughout the semester, we have been working on command line applic.pdfThroughout the semester, we have been working on command line applic.pdf
Throughout the semester, we have been working on command line applic.pdfbirajdar2
 
Dropwizard and Friends
Dropwizard and FriendsDropwizard and Friends
Dropwizard and FriendsYun Zhi Lin
 
Procedure to create_the_calculator_application java
Procedure to create_the_calculator_application javaProcedure to create_the_calculator_application java
Procedure to create_the_calculator_application javagthe
 
Java concurrency model - The Future Task
Java concurrency model - The Future TaskJava concurrency model - The Future Task
Java concurrency model - The Future TaskSomenath Mukhopadhyay
 
Fundamental Concepts of React JS for Beginners.pdf
Fundamental Concepts of React JS for Beginners.pdfFundamental Concepts of React JS for Beginners.pdf
Fundamental Concepts of React JS for Beginners.pdfStephieJohn
 
Creating a frame within an applet
Creating a frame within an appletCreating a frame within an applet
Creating a frame within an appletmyrajendra
 
Useful Tools for Making Video Games - XNA (2008)
Useful Tools for Making Video Games - XNA (2008)Useful Tools for Making Video Games - XNA (2008)
Useful Tools for Making Video Games - XNA (2008)Korhan Bircan
 
Flash, actionscript 2 : preloader for loader component.docx
Flash, actionscript 2 : preloader for loader component.docxFlash, actionscript 2 : preloader for loader component.docx
Flash, actionscript 2 : preloader for loader component.docxSMK Negeri 6 Malang
 
Spring Performance Gains
Spring Performance GainsSpring Performance Gains
Spring Performance GainsVMware Tanzu
 

Similar to Working with the Calculator program Once imported run the.pdf (20)

This is Java, What I am creating is a multi lab pacman type game.T.pdf
This is Java, What I am creating is a multi lab pacman type game.T.pdfThis is Java, What I am creating is a multi lab pacman type game.T.pdf
This is Java, What I am creating is a multi lab pacman type game.T.pdf
 
Java rmi example program with code
Java rmi example program with codeJava rmi example program with code
Java rmi example program with code
 
Applet progming
Applet progmingApplet progming
Applet progming
 
Hi my question pretains to Java programing, What I am creating is a .pdf
Hi my question pretains to Java programing, What I am creating is a .pdfHi my question pretains to Java programing, What I am creating is a .pdf
Hi my question pretains to Java programing, What I am creating is a .pdf
 
UNIT 5-JavaFX Event Handling, Controls and Components.pdf
UNIT 5-JavaFX Event Handling, Controls and Components.pdfUNIT 5-JavaFX Event Handling, Controls and Components.pdf
UNIT 5-JavaFX Event Handling, Controls and Components.pdf
 
Tuto jtatoo
Tuto jtatooTuto jtatoo
Tuto jtatoo
 
Single Sourcing RAP and RCP - Desktop and web clients from a single code base
Single Sourcing RAP and RCP - Desktop and web clients from a single code baseSingle Sourcing RAP and RCP - Desktop and web clients from a single code base
Single Sourcing RAP and RCP - Desktop and web clients from a single code base
 
Neo4j Stored Procedure Training Part 2
Neo4j Stored Procedure Training Part 2Neo4j Stored Procedure Training Part 2
Neo4j Stored Procedure Training Part 2
 
Throughout the semester, we have been working on command line applic.pdf
Throughout the semester, we have been working on command line applic.pdfThroughout the semester, we have been working on command line applic.pdf
Throughout the semester, we have been working on command line applic.pdf
 
Dropwizard and Friends
Dropwizard and FriendsDropwizard and Friends
Dropwizard and Friends
 
Procedure to create_the_calculator_application java
Procedure to create_the_calculator_application javaProcedure to create_the_calculator_application java
Procedure to create_the_calculator_application java
 
3. applets
3. applets3. applets
3. applets
 
Java concurrency model - The Future Task
Java concurrency model - The Future TaskJava concurrency model - The Future Task
Java concurrency model - The Future Task
 
Fundamental Concepts of React JS for Beginners.pdf
Fundamental Concepts of React JS for Beginners.pdfFundamental Concepts of React JS for Beginners.pdf
Fundamental Concepts of React JS for Beginners.pdf
 
Creating a frame within an applet
Creating a frame within an appletCreating a frame within an applet
Creating a frame within an applet
 
Useful Tools for Making Video Games - XNA (2008)
Useful Tools for Making Video Games - XNA (2008)Useful Tools for Making Video Games - XNA (2008)
Useful Tools for Making Video Games - XNA (2008)
 
Flash, actionscript 2 : preloader for loader component.docx
Flash, actionscript 2 : preloader for loader component.docxFlash, actionscript 2 : preloader for loader component.docx
Flash, actionscript 2 : preloader for loader component.docx
 
Spring Performance Gains
Spring Performance GainsSpring Performance Gains
Spring Performance Gains
 
Smart material - Unit 3 (2).pdf
Smart material - Unit 3 (2).pdfSmart material - Unit 3 (2).pdf
Smart material - Unit 3 (2).pdf
 
Smart material - Unit 3 (1).pdf
Smart material - Unit 3 (1).pdfSmart material - Unit 3 (1).pdf
Smart material - Unit 3 (1).pdf
 

More from iconsystemsslm

People with a latent TB infection are _____ asymptomatic an.pdf
People with a latent TB infection are _____ asymptomatic an.pdfPeople with a latent TB infection are _____ asymptomatic an.pdf
People with a latent TB infection are _____ asymptomatic an.pdficonsystemsslm
 
Writing a Concise Paper Cost Accounting Analysis Use Acti.pdf
Writing a Concise Paper  Cost Accounting Analysis Use Acti.pdfWriting a Concise Paper  Cost Accounting Analysis Use Acti.pdf
Writing a Concise Paper Cost Accounting Analysis Use Acti.pdficonsystemsslm
 
Write a program in C++ language that implements a music play.pdf
Write a program in C++ language that implements a music play.pdfWrite a program in C++ language that implements a music play.pdf
Write a program in C++ language that implements a music play.pdficonsystemsslm
 
When is it appropriate to use an independent pooled sample.pdf
When is it appropriate to use an independent pooled sample.pdfWhen is it appropriate to use an independent pooled sample.pdf
When is it appropriate to use an independent pooled sample.pdficonsystemsslm
 
TRUE OR FALSE QUESTIONS 1 In the communicable disease model.pdf
TRUE OR FALSE QUESTIONS 1 In the communicable disease model.pdfTRUE OR FALSE QUESTIONS 1 In the communicable disease model.pdf
TRUE OR FALSE QUESTIONS 1 In the communicable disease model.pdficonsystemsslm
 
Tengo tanto sueo pueden ayudarme Tengo mucho trabajo que.pdf
Tengo tanto sueo pueden ayudarme Tengo mucho trabajo que.pdfTengo tanto sueo pueden ayudarme Tengo mucho trabajo que.pdf
Tengo tanto sueo pueden ayudarme Tengo mucho trabajo que.pdficonsystemsslm
 
Soru 11 in ve Hindistann neden bu kadar ok uluslararas i.pdf
Soru 11  in ve Hindistann neden bu kadar ok uluslararas i.pdfSoru 11  in ve Hindistann neden bu kadar ok uluslararas i.pdf
Soru 11 in ve Hindistann neden bu kadar ok uluslararas i.pdficonsystemsslm
 
Setting up Webserver setting up webserver and running on t.pdf
Setting up Webserver  setting up webserver and running on t.pdfSetting up Webserver  setting up webserver and running on t.pdf
Setting up Webserver setting up webserver and running on t.pdficonsystemsslm
 
Robin has just been hired as a security engineer and wants t.pdf
Robin has just been hired as a security engineer and wants t.pdfRobin has just been hired as a security engineer and wants t.pdf
Robin has just been hired as a security engineer and wants t.pdficonsystemsslm
 
Redgreen colorblindness is due to a recessive Xlinked alle.pdf
Redgreen colorblindness is due to a recessive Xlinked alle.pdfRedgreen colorblindness is due to a recessive Xlinked alle.pdf
Redgreen colorblindness is due to a recessive Xlinked alle.pdficonsystemsslm
 
Required information P25 Algo Recording Transactions Pre.pdf
Required information P25 Algo Recording Transactions Pre.pdfRequired information P25 Algo Recording Transactions Pre.pdf
Required information P25 Algo Recording Transactions Pre.pdficonsystemsslm
 
QYESTIONS 1 Why was Dakotas existing pricing system inad.pdf
QYESTIONS  1 Why was Dakotas existing pricing system inad.pdfQYESTIONS  1 Why was Dakotas existing pricing system inad.pdf
QYESTIONS 1 Why was Dakotas existing pricing system inad.pdficonsystemsslm
 
Qu formas de vida crean nueva biomasa a travs de la produ.pdf
Qu formas de vida crean nueva biomasa a travs de la produ.pdfQu formas de vida crean nueva biomasa a travs de la produ.pdf
Qu formas de vida crean nueva biomasa a travs de la produ.pdficonsystemsslm
 
Q1 Reminder the arrows are going from who is being eaten t.pdf
Q1 Reminder the arrows are going from who is being eaten t.pdfQ1 Reminder the arrows are going from who is being eaten t.pdf
Q1 Reminder the arrows are going from who is being eaten t.pdficonsystemsslm
 
Oriole Corp uses a periodic inventory system A physical co.pdf
Oriole Corp uses a periodic inventory system A physical co.pdfOriole Corp uses a periodic inventory system A physical co.pdf
Oriole Corp uses a periodic inventory system A physical co.pdficonsystemsslm
 
PREGUNTA 19 A Aumentar su comerciabilidad B Increment.pdf
PREGUNTA 19  A  Aumentar su comerciabilidad  B  Increment.pdfPREGUNTA 19  A  Aumentar su comerciabilidad  B  Increment.pdf
PREGUNTA 19 A Aumentar su comerciabilidad B Increment.pdficonsystemsslm
 
Mira el anuncio de Disney Cruise Line Little Souvenir 00.pdf
Mira el anuncio de Disney Cruise Line Little Souvenir  00.pdfMira el anuncio de Disney Cruise Line Little Souvenir  00.pdf
Mira el anuncio de Disney Cruise Line Little Souvenir 00.pdficonsystemsslm
 
include ltinitializer_listgt include ltiostreamgt .pdf
include ltinitializer_listgt include ltiostreamgt .pdfinclude ltinitializer_listgt include ltiostreamgt .pdf
include ltinitializer_listgt include ltiostreamgt .pdficonsystemsslm
 
Annie wants to retain her skilled employees but she also do.pdf
Annie wants to retain her skilled employees but she also do.pdfAnnie wants to retain her skilled employees but she also do.pdf
Annie wants to retain her skilled employees but she also do.pdficonsystemsslm
 
Header files used to run the program include ltstdioh.pdf
Header files used to run the program  include ltstdioh.pdfHeader files used to run the program  include ltstdioh.pdf
Header files used to run the program include ltstdioh.pdficonsystemsslm
 

More from iconsystemsslm (20)

People with a latent TB infection are _____ asymptomatic an.pdf
People with a latent TB infection are _____ asymptomatic an.pdfPeople with a latent TB infection are _____ asymptomatic an.pdf
People with a latent TB infection are _____ asymptomatic an.pdf
 
Writing a Concise Paper Cost Accounting Analysis Use Acti.pdf
Writing a Concise Paper  Cost Accounting Analysis Use Acti.pdfWriting a Concise Paper  Cost Accounting Analysis Use Acti.pdf
Writing a Concise Paper Cost Accounting Analysis Use Acti.pdf
 
Write a program in C++ language that implements a music play.pdf
Write a program in C++ language that implements a music play.pdfWrite a program in C++ language that implements a music play.pdf
Write a program in C++ language that implements a music play.pdf
 
When is it appropriate to use an independent pooled sample.pdf
When is it appropriate to use an independent pooled sample.pdfWhen is it appropriate to use an independent pooled sample.pdf
When is it appropriate to use an independent pooled sample.pdf
 
TRUE OR FALSE QUESTIONS 1 In the communicable disease model.pdf
TRUE OR FALSE QUESTIONS 1 In the communicable disease model.pdfTRUE OR FALSE QUESTIONS 1 In the communicable disease model.pdf
TRUE OR FALSE QUESTIONS 1 In the communicable disease model.pdf
 
Tengo tanto sueo pueden ayudarme Tengo mucho trabajo que.pdf
Tengo tanto sueo pueden ayudarme Tengo mucho trabajo que.pdfTengo tanto sueo pueden ayudarme Tengo mucho trabajo que.pdf
Tengo tanto sueo pueden ayudarme Tengo mucho trabajo que.pdf
 
Soru 11 in ve Hindistann neden bu kadar ok uluslararas i.pdf
Soru 11  in ve Hindistann neden bu kadar ok uluslararas i.pdfSoru 11  in ve Hindistann neden bu kadar ok uluslararas i.pdf
Soru 11 in ve Hindistann neden bu kadar ok uluslararas i.pdf
 
Setting up Webserver setting up webserver and running on t.pdf
Setting up Webserver  setting up webserver and running on t.pdfSetting up Webserver  setting up webserver and running on t.pdf
Setting up Webserver setting up webserver and running on t.pdf
 
Robin has just been hired as a security engineer and wants t.pdf
Robin has just been hired as a security engineer and wants t.pdfRobin has just been hired as a security engineer and wants t.pdf
Robin has just been hired as a security engineer and wants t.pdf
 
Redgreen colorblindness is due to a recessive Xlinked alle.pdf
Redgreen colorblindness is due to a recessive Xlinked alle.pdfRedgreen colorblindness is due to a recessive Xlinked alle.pdf
Redgreen colorblindness is due to a recessive Xlinked alle.pdf
 
Required information P25 Algo Recording Transactions Pre.pdf
Required information P25 Algo Recording Transactions Pre.pdfRequired information P25 Algo Recording Transactions Pre.pdf
Required information P25 Algo Recording Transactions Pre.pdf
 
QYESTIONS 1 Why was Dakotas existing pricing system inad.pdf
QYESTIONS  1 Why was Dakotas existing pricing system inad.pdfQYESTIONS  1 Why was Dakotas existing pricing system inad.pdf
QYESTIONS 1 Why was Dakotas existing pricing system inad.pdf
 
Qu formas de vida crean nueva biomasa a travs de la produ.pdf
Qu formas de vida crean nueva biomasa a travs de la produ.pdfQu formas de vida crean nueva biomasa a travs de la produ.pdf
Qu formas de vida crean nueva biomasa a travs de la produ.pdf
 
Q1 Reminder the arrows are going from who is being eaten t.pdf
Q1 Reminder the arrows are going from who is being eaten t.pdfQ1 Reminder the arrows are going from who is being eaten t.pdf
Q1 Reminder the arrows are going from who is being eaten t.pdf
 
Oriole Corp uses a periodic inventory system A physical co.pdf
Oriole Corp uses a periodic inventory system A physical co.pdfOriole Corp uses a periodic inventory system A physical co.pdf
Oriole Corp uses a periodic inventory system A physical co.pdf
 
PREGUNTA 19 A Aumentar su comerciabilidad B Increment.pdf
PREGUNTA 19  A  Aumentar su comerciabilidad  B  Increment.pdfPREGUNTA 19  A  Aumentar su comerciabilidad  B  Increment.pdf
PREGUNTA 19 A Aumentar su comerciabilidad B Increment.pdf
 
Mira el anuncio de Disney Cruise Line Little Souvenir 00.pdf
Mira el anuncio de Disney Cruise Line Little Souvenir  00.pdfMira el anuncio de Disney Cruise Line Little Souvenir  00.pdf
Mira el anuncio de Disney Cruise Line Little Souvenir 00.pdf
 
include ltinitializer_listgt include ltiostreamgt .pdf
include ltinitializer_listgt include ltiostreamgt .pdfinclude ltinitializer_listgt include ltiostreamgt .pdf
include ltinitializer_listgt include ltiostreamgt .pdf
 
Annie wants to retain her skilled employees but she also do.pdf
Annie wants to retain her skilled employees but she also do.pdfAnnie wants to retain her skilled employees but she also do.pdf
Annie wants to retain her skilled employees but she also do.pdf
 
Header files used to run the program include ltstdioh.pdf
Header files used to run the program  include ltstdioh.pdfHeader files used to run the program  include ltstdioh.pdf
Header files used to run the program include ltstdioh.pdf
 

Recently uploaded

Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...Sapna Thakur
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityGeoBlogs
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room servicediscovermytutordmt
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingTeacherCyreneCayanan
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Disha Kariya
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfJayanti Pande
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfchloefrazer622
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 

Recently uploaded (20)

Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
Mattingly "AI & Prompt Design: Structured Data, Assistants, & RAG"
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
BAG TECHNIQUE Bag technique-a tool making use of public health bag through wh...
 
Advance Mobile Application Development class 07
Advance Mobile Application Development class 07Advance Mobile Application Development class 07
Advance Mobile Application Development class 07
 
Paris 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activityParis 2024 Olympic Geographies - an activity
Paris 2024 Olympic Geographies - an activity
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..Sports & Fitness Value Added Course FY..
Sports & Fitness Value Added Course FY..
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
Web & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdfWeb & Social Media Analytics Previous Year Question Paper.pdf
Web & Social Media Analytics Previous Year Question Paper.pdf
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
Arihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdfArihant handbook biology for class 11 .pdf
Arihant handbook biology for class 11 .pdf
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 

Working with the Calculator program Once imported run the.pdf