SlideShare a Scribd company logo
CONSOLE TO GUI
CHLOE CHOI
Table of Contents
Motivation

Prerequisites

Attempt 1: TicTacToe.java with IntelliJ

Attempt 2: BMICalculator.java with NetBeans

Conclusion
Motivation
Already being comfortable with coding for programs
that utilise the console, I wanted to get out of my
comfort zone and try GUI.

http://www.slideshare.net/LunaTokki/refactoring-
practice-cleaner-code
Prerequisites
GUI (Graphical User Interface) toolkit for Java

IDE (Integrated Development Environment)
1. Swing (1/2)
GUI Toolkit for Java
Swing is a GUI widget toolkit for Java. It is part of
Oracle's Java Foundation Classes (JFC) — an API for
providing a graphical user interface (GUI) for Java
programs.*

The main characteristics of the Swing toolkit:

- platform independent

- customizable

- extensible

- configurable

- lightweight
* https://en.wikipedia.org/wiki/Swing_(Java)
1. Swing (2/2)

Difficulties
I had to learn new things to utilise Swing.

Many packages containing various components

How to use these various components?

Containers and Containment Hierarchies look
complicated.

Strange concept of “Listener”

A proper action listener should be plugged to a
component.

Making a neat Look and Feel is not easy.
2. IDE

Intellij vs. NetBeans
I wrote the GUI programs 

with IntelliJ and NetBeans.

IntelliJ: TicTacToe.java

NetBeans: BMICalculator.java

In my opinion, each has the pros and cons.

For coding: IntelliJ > NetBeans

For designing: NetBeans > IntelliJ
Attempt 1
TicTacToe.java with IntelliJ
Structure
JFrame : A Top-level Container
JMenuBar containing

JMenuItems “New game” “Exit”
Content Pane, JPanel
Nine JButtons onto GridLayout
Valid&
Cell
Start
Initialize
Board
Select
a&Cell
Update&Board&and&
Turn&Change
Check&
Winner
Turn&Change
Display&
Dialog
Board
Tied
Terminate
Yes Yes
No
No
Yes
No
Initialised Board
Flowchart
Tied Board
Dialog Message
Execution Example (1/2)
Execution Example (2/2)
Remarks
IntelliJ is a more professional application. 

The IDE can point out many errors without initial compilation
and has many features for a smooth coding experience.

However, the GUI features of the application were more
frustrating than expected. 

It has the same level of professionalism displayed when
coding for console but it limits the author’s creativity and
freedom. 

Each component has to fit a certain mould and therefore
resizing and arranging the components was a nightmare.
Attempt 2
BMICalculator.java with NetBeans
Swing Form in NetBeans (1/3)
Whole Window of Swing Form
Swing Form in NetBeans (2/3)
Visualised Swing Containers
and Components in Palette.
Just add components by Drag and Drop.
You can find the unmodifiable
code blocks after adding components.
Swing Form in NetBeans (3/3)
Various Properties are easily manipulated.
And the action listeners to be overridden

are automatically created.
You can find the properties
in the method initComponents().
Structure
JFrame : A Top-level Container
JTabbedPane
Each JPanel contains 

own Components: 

JLabel, JTextField, JButtons
JPanel: Standard and Metric
Standard/Metric Calculator
Each JPanel has its own components (JLabels,
JTextFields, and JButtons) for applying different
BMI formula. 

Both use the common method, getObesityRate().
Execution Example
Remarks
NetBeans is an application that can be thought of as text editor
with a built in compiler. 

Meaning, this is the perfect program for new programmers
who are learning code so they can fix their own mistakes. It is
not an application used in a professional level. 

However, ignoring the rudimentary design of the interface, the
GUI feature was well catered for. 

Each component can be arranged freely and resizable to the
author’s content. 

NetBeans also automatically creates handlers for each
component created making the GUI development very easy.
Conclusion
Using both programs, IntelliJ and NetBeans, during
the GUI development is the best option.

Coding: IntelliJ

GUI: NetBeans

GUI itself is very straight forward. The components
are already built in so the author only has to think
about how they can translate their console into a
GUI.
References
https://en.wikipedia.org/wiki/Swing_(Java)

https://docs.oracle.com/javase/tutorial/uiswing/
components/index.html

More Related Content

What's hot

Quiz app(j tabbed pane,jdialog,container,actionevent,jradiobutton,buttongroup...
Quiz app(j tabbed pane,jdialog,container,actionevent,jradiobutton,buttongroup...Quiz app(j tabbed pane,jdialog,container,actionevent,jradiobutton,buttongroup...
Quiz app(j tabbed pane,jdialog,container,actionevent,jradiobutton,buttongroup...
Nuha Noor
 
Jvm
JvmJvm
Java Beans Unit 4(Part 1)
Java Beans Unit 4(Part 1)Java Beans Unit 4(Part 1)
Java Beans Unit 4(Part 1)
SURBHI SAROHA
 
Core Java introduction | Basics | free course
Core Java introduction | Basics | free course Core Java introduction | Basics | free course
Core Java introduction | Basics | free course
Kernel Training
 
Core java online training
Core java online trainingCore java online training
Core java online training
Glory IT Technologies Pvt. Ltd.
 
Java Presentation For Syntax
Java Presentation For SyntaxJava Presentation For Syntax
Java Presentation For Syntax
PravinYalameli
 
Lecture - 1 introduction to java
Lecture - 1 introduction to javaLecture - 1 introduction to java
Lecture - 1 introduction to java
manish kumar
 
Introduction to java
Introduction to java Introduction to java
Introduction to java
Sandeep Rawat
 
Advanced core java
Advanced core javaAdvanced core java
Advanced core java
Rajeev Uppala
 
Core java(2)
Core java(2)Core java(2)
Core java(2)
kasun dananjaya
 
Java basics notes
Java basics notesJava basics notes
Java basics notes
poonguzhali1826
 
Core Java Tutorial
Core Java TutorialCore Java Tutorial
Core Java Tutorial
eMexo Technologies
 
J3d hibernate
J3d hibernateJ3d hibernate
J3d hibernate
KRANTHICMR
 
C progrmming
C progrmmingC progrmming
C progrmming
Shivam Singhal
 
Java tutorial PPT
Java tutorial PPTJava tutorial PPT
Java tutorial PPT
Intelligo Technologies
 
Java 3 rd sem. 2012 aug.ASSIGNMENT
Java 3 rd sem. 2012 aug.ASSIGNMENTJava 3 rd sem. 2012 aug.ASSIGNMENT
Java 3 rd sem. 2012 aug.ASSIGNMENT
mayank's it solution pvt.ltd
 
Introduction to java
Introduction to javaIntroduction to java
Introduction to java
Ajay Sharma
 

What's hot (17)

Quiz app(j tabbed pane,jdialog,container,actionevent,jradiobutton,buttongroup...
Quiz app(j tabbed pane,jdialog,container,actionevent,jradiobutton,buttongroup...Quiz app(j tabbed pane,jdialog,container,actionevent,jradiobutton,buttongroup...
Quiz app(j tabbed pane,jdialog,container,actionevent,jradiobutton,buttongroup...
 
Jvm
JvmJvm
Jvm
 
Java Beans Unit 4(Part 1)
Java Beans Unit 4(Part 1)Java Beans Unit 4(Part 1)
Java Beans Unit 4(Part 1)
 
Core Java introduction | Basics | free course
Core Java introduction | Basics | free course Core Java introduction | Basics | free course
Core Java introduction | Basics | free course
 
Core java online training
Core java online trainingCore java online training
Core java online training
 
Java Presentation For Syntax
Java Presentation For SyntaxJava Presentation For Syntax
Java Presentation For Syntax
 
Lecture - 1 introduction to java
Lecture - 1 introduction to javaLecture - 1 introduction to java
Lecture - 1 introduction to java
 
Introduction to java
Introduction to java Introduction to java
Introduction to java
 
Advanced core java
Advanced core javaAdvanced core java
Advanced core java
 
Core java(2)
Core java(2)Core java(2)
Core java(2)
 
Java basics notes
Java basics notesJava basics notes
Java basics notes
 
Core Java Tutorial
Core Java TutorialCore Java Tutorial
Core Java Tutorial
 
J3d hibernate
J3d hibernateJ3d hibernate
J3d hibernate
 
C progrmming
C progrmmingC progrmming
C progrmming
 
Java tutorial PPT
Java tutorial PPTJava tutorial PPT
Java tutorial PPT
 
Java 3 rd sem. 2012 aug.ASSIGNMENT
Java 3 rd sem. 2012 aug.ASSIGNMENTJava 3 rd sem. 2012 aug.ASSIGNMENT
Java 3 rd sem. 2012 aug.ASSIGNMENT
 
Introduction to java
Introduction to javaIntroduction to java
Introduction to java
 

Viewers also liked

utaexample
utaexampleutaexample
utaexample
Josh Dawson
 
The royal park, exotic birds
The royal park, exotic birdsThe royal park, exotic birds
The royal park, exotic birds
Vicentino
 
Interim review
Interim reviewInterim review
Interim review
marcellawilliams1998
 
IAU-azada-shahr Pr No.1
IAU-azada-shahr Pr No.1IAU-azada-shahr Pr No.1
IAU-azada-shahr Pr No.1Eng. QaSeMy
 
Taller de plàstica mondrian
Taller de plàstica mondrianTaller de plàstica mondrian
Taller de plàstica mondrian
IngridBP
 
Harga grosir maika
Harga grosir maikaHarga grosir maika
Harga grosir maika
Dawang Sirita
 
HSE OFFICER JOHN
HSE OFFICER JOHNHSE OFFICER JOHN
HSE OFFICER JOHN
john jaya prakash Kondangi
 
Latonya Allen Resume 2020
Latonya Allen Resume 2020Latonya Allen Resume 2020
Latonya Allen Resume 2020
LaTonya Allen
 
ระบบการศึกษาเพื่อสร้างนักวิจัยรุ่นใหม่ Onec 590725_last
ระบบการศึกษาเพื่อสร้างนักวิจัยรุ่นใหม่ Onec 590725_lastระบบการศึกษาเพื่อสร้างนักวิจัยรุ่นใหม่ Onec 590725_last
ระบบการศึกษาเพื่อสร้างนักวิจัยรุ่นใหม่ Onec 590725_last
Pattie Pattie
 
คุณค่าของ R2R และ KM แบบหยั่งรากลึก part I
คุณค่าของ R2R และ KM แบบหยั่งรากลึก part Iคุณค่าของ R2R และ KM แบบหยั่งรากลึก part I
คุณค่าของ R2R และ KM แบบหยั่งรากลึก part I
Pattie Pattie
 
Kisi un
Kisi unKisi un
Workshop personal branding voor freelancer (door Lodi Planting)
Workshop personal branding voor freelancer (door Lodi Planting)Workshop personal branding voor freelancer (door Lodi Planting)
Workshop personal branding voor freelancer (door Lodi Planting)
Lodi Planting
 
Psicopatología: Trastornos depresivos
Psicopatología: Trastornos depresivosPsicopatología: Trastornos depresivos
Psicopatología: Trastornos depresivos
M Sc. Marta LiCY - Marta Cuyuch
 
Ub1 bi y3 2016
Ub1 bi y3 2016Ub1 bi y3 2016
Ub1 bi y3 2016
Nor Elyana Zainal
 
Spring Tax Update - Exeter
Spring Tax Update - ExeterSpring Tax Update - Exeter
Spring Tax Update - Exeter
PKF Francis Clark
 

Viewers also liked (16)

utaexample
utaexampleutaexample
utaexample
 
compunet kool
compunet koolcompunet kool
compunet kool
 
The royal park, exotic birds
The royal park, exotic birdsThe royal park, exotic birds
The royal park, exotic birds
 
Interim review
Interim reviewInterim review
Interim review
 
IAU-azada-shahr Pr No.1
IAU-azada-shahr Pr No.1IAU-azada-shahr Pr No.1
IAU-azada-shahr Pr No.1
 
Taller de plàstica mondrian
Taller de plàstica mondrianTaller de plàstica mondrian
Taller de plàstica mondrian
 
Harga grosir maika
Harga grosir maikaHarga grosir maika
Harga grosir maika
 
HSE OFFICER JOHN
HSE OFFICER JOHNHSE OFFICER JOHN
HSE OFFICER JOHN
 
Latonya Allen Resume 2020
Latonya Allen Resume 2020Latonya Allen Resume 2020
Latonya Allen Resume 2020
 
ระบบการศึกษาเพื่อสร้างนักวิจัยรุ่นใหม่ Onec 590725_last
ระบบการศึกษาเพื่อสร้างนักวิจัยรุ่นใหม่ Onec 590725_lastระบบการศึกษาเพื่อสร้างนักวิจัยรุ่นใหม่ Onec 590725_last
ระบบการศึกษาเพื่อสร้างนักวิจัยรุ่นใหม่ Onec 590725_last
 
คุณค่าของ R2R และ KM แบบหยั่งรากลึก part I
คุณค่าของ R2R และ KM แบบหยั่งรากลึก part Iคุณค่าของ R2R และ KM แบบหยั่งรากลึก part I
คุณค่าของ R2R และ KM แบบหยั่งรากลึก part I
 
Kisi un
Kisi unKisi un
Kisi un
 
Workshop personal branding voor freelancer (door Lodi Planting)
Workshop personal branding voor freelancer (door Lodi Planting)Workshop personal branding voor freelancer (door Lodi Planting)
Workshop personal branding voor freelancer (door Lodi Planting)
 
Psicopatología: Trastornos depresivos
Psicopatología: Trastornos depresivosPsicopatología: Trastornos depresivos
Psicopatología: Trastornos depresivos
 
Ub1 bi y3 2016
Ub1 bi y3 2016Ub1 bi y3 2016
Ub1 bi y3 2016
 
Spring Tax Update - Exeter
Spring Tax Update - ExeterSpring Tax Update - Exeter
Spring Tax Update - Exeter
 

Similar to Console to GUI

Dacj 2-2 a
Dacj 2-2 aDacj 2-2 a
Dacj 2-2 a
Niit Care
 
Swing
SwingSwing
Gui
GuiGui
Swing
SwingSwing
Swing
Fahim Khan
 
Swing
SwingSwing
Swing
Fahim Khan
 
Ex11 mini project
Ex11 mini projectEx11 mini project
Ex11 mini project
Elanthendral Mariappan
 
GUI design using JAVAFX.ppt
GUI design using JAVAFX.pptGUI design using JAVAFX.ppt
GUI design using JAVAFX.ppt
TabassumMaktum
 
13457272.ppt
13457272.ppt13457272.ppt
13457272.ppt
aptechaligarh
 
java presentation on Swings chapter java presentation on Swings
java presentation on Swings chapter java presentation on Swingsjava presentation on Swings chapter java presentation on Swings
java presentation on Swings chapter java presentation on Swings
MohanYedatkar
 
java.pptx
java.pptxjava.pptx
AdvancedJava.pptx
AdvancedJava.pptxAdvancedJava.pptx
AdvancedJava.pptx
DrPrabakaranPerumal
 
Java/Servlet/JSP/JDBC
Java/Servlet/JSP/JDBCJava/Servlet/JSP/JDBC
Java/Servlet/JSP/JDBC
FAKHRUN NISHA
 
What is Java Technology (An introduction with comparision of .net coding)
What is Java Technology (An introduction with comparision of .net coding)What is Java Technology (An introduction with comparision of .net coding)
What is Java Technology (An introduction with comparision of .net coding)
Shaharyar khan
 
Java Swing
Java SwingJava Swing
Java Swing
Arkadeep Dey
 
Eclipse Launching Framework
Eclipse Launching FrameworkEclipse Launching Framework
Eclipse Launching Framework
Kangho Kim
 
Java swing 1
Java swing 1Java swing 1
Java swing 1
Mukesh Tekwani
 
Lab3-Android
Lab3-AndroidLab3-Android
Lab3-Android
Lilia Sfaxi
 
advanced java programming(java programming tutorials)
 advanced java programming(java programming tutorials) advanced java programming(java programming tutorials)
advanced java programming(java programming tutorials)
Daroko blog(www.professionalbloggertricks.com)
 
108 advancedjava
108 advancedjava108 advancedjava
108 advancedjava
Anil Kumar
 
GUI Programming In Java
GUI Programming In JavaGUI Programming In Java
GUI Programming In Java
yht4ever
 

Similar to Console to GUI (20)

Dacj 2-2 a
Dacj 2-2 aDacj 2-2 a
Dacj 2-2 a
 
Swing
SwingSwing
Swing
 
Gui
GuiGui
Gui
 
Swing
SwingSwing
Swing
 
Swing
SwingSwing
Swing
 
Ex11 mini project
Ex11 mini projectEx11 mini project
Ex11 mini project
 
GUI design using JAVAFX.ppt
GUI design using JAVAFX.pptGUI design using JAVAFX.ppt
GUI design using JAVAFX.ppt
 
13457272.ppt
13457272.ppt13457272.ppt
13457272.ppt
 
java presentation on Swings chapter java presentation on Swings
java presentation on Swings chapter java presentation on Swingsjava presentation on Swings chapter java presentation on Swings
java presentation on Swings chapter java presentation on Swings
 
java.pptx
java.pptxjava.pptx
java.pptx
 
AdvancedJava.pptx
AdvancedJava.pptxAdvancedJava.pptx
AdvancedJava.pptx
 
Java/Servlet/JSP/JDBC
Java/Servlet/JSP/JDBCJava/Servlet/JSP/JDBC
Java/Servlet/JSP/JDBC
 
What is Java Technology (An introduction with comparision of .net coding)
What is Java Technology (An introduction with comparision of .net coding)What is Java Technology (An introduction with comparision of .net coding)
What is Java Technology (An introduction with comparision of .net coding)
 
Java Swing
Java SwingJava Swing
Java Swing
 
Eclipse Launching Framework
Eclipse Launching FrameworkEclipse Launching Framework
Eclipse Launching Framework
 
Java swing 1
Java swing 1Java swing 1
Java swing 1
 
Lab3-Android
Lab3-AndroidLab3-Android
Lab3-Android
 
advanced java programming(java programming tutorials)
 advanced java programming(java programming tutorials) advanced java programming(java programming tutorials)
advanced java programming(java programming tutorials)
 
108 advancedjava
108 advancedjava108 advancedjava
108 advancedjava
 
GUI Programming In Java
GUI Programming In JavaGUI Programming In Java
GUI Programming In Java
 

Recently uploaded

Unit -II Spectroscopy - EC I B.Tech.pdf
Unit -II Spectroscopy - EC  I B.Tech.pdfUnit -II Spectroscopy - EC  I B.Tech.pdf
Unit -II Spectroscopy - EC I B.Tech.pdf
TeluguBadi
 
Beckhoff Programmable Logic Control Overview Presentation
Beckhoff Programmable Logic Control Overview PresentationBeckhoff Programmable Logic Control Overview Presentation
Beckhoff Programmable Logic Control Overview Presentation
VanTuDuong1
 
ITSM Integration with MuleSoft.pptx
ITSM  Integration with MuleSoft.pptxITSM  Integration with MuleSoft.pptx
ITSM Integration with MuleSoft.pptx
VANDANAMOHANGOUDA
 
Properties of Fluids, Fluid Statics, Pressure Measurement
Properties of Fluids, Fluid Statics, Pressure MeasurementProperties of Fluids, Fluid Statics, Pressure Measurement
Properties of Fluids, Fluid Statics, Pressure Measurement
Indrajeet sahu
 
Call For Paper -3rd International Conference on Artificial Intelligence Advan...
Call For Paper -3rd International Conference on Artificial Intelligence Advan...Call For Paper -3rd International Conference on Artificial Intelligence Advan...
Call For Paper -3rd International Conference on Artificial Intelligence Advan...
ijseajournal
 
DELTA V MES EMERSON EDUARDO RODRIGUES ENGINEER
DELTA V MES EMERSON EDUARDO RODRIGUES ENGINEERDELTA V MES EMERSON EDUARDO RODRIGUES ENGINEER
DELTA V MES EMERSON EDUARDO RODRIGUES ENGINEER
EMERSON EDUARDO RODRIGUES
 
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
upoux
 
DESIGN AND MANUFACTURE OF CEILING BOARD USING SAWDUST AND WASTE CARTON MATERI...
DESIGN AND MANUFACTURE OF CEILING BOARD USING SAWDUST AND WASTE CARTON MATERI...DESIGN AND MANUFACTURE OF CEILING BOARD USING SAWDUST AND WASTE CARTON MATERI...
DESIGN AND MANUFACTURE OF CEILING BOARD USING SAWDUST AND WASTE CARTON MATERI...
OKORIE1
 
Tools & Techniques for Commissioning and Maintaining PV Systems W-Animations ...
Tools & Techniques for Commissioning and Maintaining PV Systems W-Animations ...Tools & Techniques for Commissioning and Maintaining PV Systems W-Animations ...
Tools & Techniques for Commissioning and Maintaining PV Systems W-Animations ...
Transcat
 
SELENIUM CONF -PALLAVI SHARMA - 2024.pdf
SELENIUM CONF -PALLAVI SHARMA - 2024.pdfSELENIUM CONF -PALLAVI SHARMA - 2024.pdf
SELENIUM CONF -PALLAVI SHARMA - 2024.pdf
Pallavi Sharma
 
Determination of Equivalent Circuit parameters and performance characteristic...
Determination of Equivalent Circuit parameters and performance characteristic...Determination of Equivalent Circuit parameters and performance characteristic...
Determination of Equivalent Circuit parameters and performance characteristic...
pvpriya2
 
ELS: 2.4.1 POWER ELECTRONICS Course objectives: This course will enable stude...
ELS: 2.4.1 POWER ELECTRONICS Course objectives: This course will enable stude...ELS: 2.4.1 POWER ELECTRONICS Course objectives: This course will enable stude...
ELS: 2.4.1 POWER ELECTRONICS Course objectives: This course will enable stude...
Kuvempu University
 
Ericsson LTE Throughput Troubleshooting Techniques.ppt
Ericsson LTE Throughput Troubleshooting Techniques.pptEricsson LTE Throughput Troubleshooting Techniques.ppt
Ericsson LTE Throughput Troubleshooting Techniques.ppt
wafawafa52
 
OOPS_Lab_Manual - programs using C++ programming language
OOPS_Lab_Manual - programs using C++ programming languageOOPS_Lab_Manual - programs using C++ programming language
OOPS_Lab_Manual - programs using C++ programming language
PreethaV16
 
Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...
Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...
Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...
PriyankaKilaniya
 
一比一原版(uoft毕业证书)加拿大多伦多大学毕业证如何办理
一比一原版(uoft毕业证书)加拿大多伦多大学毕业证如何办理一比一原版(uoft毕业证书)加拿大多伦多大学毕业证如何办理
一比一原版(uoft毕业证书)加拿大多伦多大学毕业证如何办理
sydezfe
 
This study Examines the Effectiveness of Talent Procurement through the Imple...
This study Examines the Effectiveness of Talent Procurement through the Imple...This study Examines the Effectiveness of Talent Procurement through the Imple...
This study Examines the Effectiveness of Talent Procurement through the Imple...
DharmaBanothu
 
FUNDAMENTALS OF MECHANICAL ENGINEERING.pdf
FUNDAMENTALS OF MECHANICAL ENGINEERING.pdfFUNDAMENTALS OF MECHANICAL ENGINEERING.pdf
FUNDAMENTALS OF MECHANICAL ENGINEERING.pdf
EMERSON EDUARDO RODRIGUES
 
UNIT 4 LINEAR INTEGRATED CIRCUITS-DIGITAL ICS
UNIT 4 LINEAR INTEGRATED CIRCUITS-DIGITAL ICSUNIT 4 LINEAR INTEGRATED CIRCUITS-DIGITAL ICS
UNIT 4 LINEAR INTEGRATED CIRCUITS-DIGITAL ICS
vmspraneeth
 
309475979-Creativity-Innovation-notes-IV-Sem-2016-pdf.pdf
309475979-Creativity-Innovation-notes-IV-Sem-2016-pdf.pdf309475979-Creativity-Innovation-notes-IV-Sem-2016-pdf.pdf
309475979-Creativity-Innovation-notes-IV-Sem-2016-pdf.pdf
Sou Tibon
 

Recently uploaded (20)

Unit -II Spectroscopy - EC I B.Tech.pdf
Unit -II Spectroscopy - EC  I B.Tech.pdfUnit -II Spectroscopy - EC  I B.Tech.pdf
Unit -II Spectroscopy - EC I B.Tech.pdf
 
Beckhoff Programmable Logic Control Overview Presentation
Beckhoff Programmable Logic Control Overview PresentationBeckhoff Programmable Logic Control Overview Presentation
Beckhoff Programmable Logic Control Overview Presentation
 
ITSM Integration with MuleSoft.pptx
ITSM  Integration with MuleSoft.pptxITSM  Integration with MuleSoft.pptx
ITSM Integration with MuleSoft.pptx
 
Properties of Fluids, Fluid Statics, Pressure Measurement
Properties of Fluids, Fluid Statics, Pressure MeasurementProperties of Fluids, Fluid Statics, Pressure Measurement
Properties of Fluids, Fluid Statics, Pressure Measurement
 
Call For Paper -3rd International Conference on Artificial Intelligence Advan...
Call For Paper -3rd International Conference on Artificial Intelligence Advan...Call For Paper -3rd International Conference on Artificial Intelligence Advan...
Call For Paper -3rd International Conference on Artificial Intelligence Advan...
 
DELTA V MES EMERSON EDUARDO RODRIGUES ENGINEER
DELTA V MES EMERSON EDUARDO RODRIGUES ENGINEERDELTA V MES EMERSON EDUARDO RODRIGUES ENGINEER
DELTA V MES EMERSON EDUARDO RODRIGUES ENGINEER
 
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
一比一原版(osu毕业证书)美国俄勒冈州立大学毕业证如何办理
 
DESIGN AND MANUFACTURE OF CEILING BOARD USING SAWDUST AND WASTE CARTON MATERI...
DESIGN AND MANUFACTURE OF CEILING BOARD USING SAWDUST AND WASTE CARTON MATERI...DESIGN AND MANUFACTURE OF CEILING BOARD USING SAWDUST AND WASTE CARTON MATERI...
DESIGN AND MANUFACTURE OF CEILING BOARD USING SAWDUST AND WASTE CARTON MATERI...
 
Tools & Techniques for Commissioning and Maintaining PV Systems W-Animations ...
Tools & Techniques for Commissioning and Maintaining PV Systems W-Animations ...Tools & Techniques for Commissioning and Maintaining PV Systems W-Animations ...
Tools & Techniques for Commissioning and Maintaining PV Systems W-Animations ...
 
SELENIUM CONF -PALLAVI SHARMA - 2024.pdf
SELENIUM CONF -PALLAVI SHARMA - 2024.pdfSELENIUM CONF -PALLAVI SHARMA - 2024.pdf
SELENIUM CONF -PALLAVI SHARMA - 2024.pdf
 
Determination of Equivalent Circuit parameters and performance characteristic...
Determination of Equivalent Circuit parameters and performance characteristic...Determination of Equivalent Circuit parameters and performance characteristic...
Determination of Equivalent Circuit parameters and performance characteristic...
 
ELS: 2.4.1 POWER ELECTRONICS Course objectives: This course will enable stude...
ELS: 2.4.1 POWER ELECTRONICS Course objectives: This course will enable stude...ELS: 2.4.1 POWER ELECTRONICS Course objectives: This course will enable stude...
ELS: 2.4.1 POWER ELECTRONICS Course objectives: This course will enable stude...
 
Ericsson LTE Throughput Troubleshooting Techniques.ppt
Ericsson LTE Throughput Troubleshooting Techniques.pptEricsson LTE Throughput Troubleshooting Techniques.ppt
Ericsson LTE Throughput Troubleshooting Techniques.ppt
 
OOPS_Lab_Manual - programs using C++ programming language
OOPS_Lab_Manual - programs using C++ programming languageOOPS_Lab_Manual - programs using C++ programming language
OOPS_Lab_Manual - programs using C++ programming language
 
Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...
Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...
Prediction of Electrical Energy Efficiency Using Information on Consumer's Ac...
 
一比一原版(uoft毕业证书)加拿大多伦多大学毕业证如何办理
一比一原版(uoft毕业证书)加拿大多伦多大学毕业证如何办理一比一原版(uoft毕业证书)加拿大多伦多大学毕业证如何办理
一比一原版(uoft毕业证书)加拿大多伦多大学毕业证如何办理
 
This study Examines the Effectiveness of Talent Procurement through the Imple...
This study Examines the Effectiveness of Talent Procurement through the Imple...This study Examines the Effectiveness of Talent Procurement through the Imple...
This study Examines the Effectiveness of Talent Procurement through the Imple...
 
FUNDAMENTALS OF MECHANICAL ENGINEERING.pdf
FUNDAMENTALS OF MECHANICAL ENGINEERING.pdfFUNDAMENTALS OF MECHANICAL ENGINEERING.pdf
FUNDAMENTALS OF MECHANICAL ENGINEERING.pdf
 
UNIT 4 LINEAR INTEGRATED CIRCUITS-DIGITAL ICS
UNIT 4 LINEAR INTEGRATED CIRCUITS-DIGITAL ICSUNIT 4 LINEAR INTEGRATED CIRCUITS-DIGITAL ICS
UNIT 4 LINEAR INTEGRATED CIRCUITS-DIGITAL ICS
 
309475979-Creativity-Innovation-notes-IV-Sem-2016-pdf.pdf
309475979-Creativity-Innovation-notes-IV-Sem-2016-pdf.pdf309475979-Creativity-Innovation-notes-IV-Sem-2016-pdf.pdf
309475979-Creativity-Innovation-notes-IV-Sem-2016-pdf.pdf
 

Console to GUI