Tonga Institute of Higher Education

Slides:



Advertisements
Similar presentations
Operating Systems Manage system resources –CPU scheduling –Process management –Memory management –Input/Output device management –Storage device management.
Advertisements

JAVA Programming Environment © Juhani Välimäki 2003.
Programming Basic Concepts © Juhani Välimäki 2003.
Chapter 5 Operating Systems. 5 The Operating System When working with multimedia, the operating system is perhaps the most important, the most complex,
Chapter 2 Machine Language. Machine language The only language a computer can understand directly. Each type of computer has its own unique machine language.
CENG 161 Introduction to Computer Science Instructor: Dr. Nurdan SARAN Lab Assistant: Arzu Burçak Sönmez.
Computer 101. Intro Computers are showing up everywhere you look Computers check out your groceries, pump your gas, dispense money at the ATM, turn.
Visual Basic Relevant paradigm and problem domains overview.
Basic Unix Dr Tim Cutts Team Leader Systems Support Group Infrastructure Management Team.
Introduction to the JDK Java for Computational Finance
Prototype & Design Computer Inputs. How to Prototype & Design Computer Inputs Step 1: Review Input Requirements Step 2: Select the GUI Controls Step 3:
Introduction to Java Tonga Institute of Higher Education.
Java Programming, 3e Concepts and Techniques Chapter 3 Section 62 – Manipulating Data Using Methods – Day 1.
FRST JAVA PROGRAM. Getting Started with Java Programming A Simple Java Application Compiling Programs Executing Applications.
Visual BASIC 1 Introduction
JCreator Tonga Institute of Higher Education. Programming with the command line and notepad is difficult. DOS disadvantages  User Interface (UI) is not.
Graphical User Interfaces Tonga Institute of Higher Education.
4-Nov-15 Air Force Institute of Technology Electrical and Computer Engineering Object-Oriented Programming Design Topic 1: The Java Environment Maj Joel.
E- Learning and Writing Skills IGGU 1101 Operating System Windows Dr. Sana’a Wafa Al-Sayegh.
Computer Operating Systems Unit 1 – BTA 3O Chytra.
OPERATING SYSTEM - program that is loaded into the computer and coordinates all the activities among computer hardware devices. -controls the hardware.
Copyright © Mohamed Nuzrath Java Programming :: Syllabus & Chapters :: Prepared & Presented By :: Mohamed Nuzrath [ Major In Programming ] NCC Programme.
OPERATING SYSTEMS BY LANDON, KYLE, AND ETHAN. WHAT IS THEIR PURPOSE? (1) manage the computer's resources, such as the central processing unit (2) establish.
CS101 Computer Software. Software Software is... Two main types of software are…
Software Development Introduction
CHANGING THE VOLUME Click the volume icon in the bottom right hand corner of the screen.
3/5/2002e-business and Information Systems1 Java Java Java Virtual Machine (JVM) Java Application Program Interface (API) HW Kernel API Application Programs.
System Programming Basics Cha#2 H.M.Bilal. Operating Systems An operating system is the software on a computer that manages the way different programs.
OPERATING SYSTEM BASICS. What is an operating system and what does it do? The operating system has two basic functions: –communicates with the PC.
Virtual Network Computing Sangmi Lee Oct,25,2000 Florida State University.
ITC 4 ESO 3rd TERM Operating Systems YEAR
Chapter 5 Operating Systems.
Macintosh & Linux Used to fill in pg 5 & 6 of “Operating Systems” Packet.
Lesson 4 0x Operating Systems.
Learning outcomes 2 Developing Code – Input Output Model
Computer Terms Review from what language did C++ originate?
Introduction to Computer Science
Chapter 5: Using System Software
Introduction to Operating Systems
Console and GUI Programs
Chapter 3.
C# and the .NET Framework
LESSON 3.
Java programming lecture one
Chapter 3 Software Interfaces.
7 Operating system Foundations of Computer Science ã Cengage Learning.
Understand Windows Forms Applications and Console-based Applications
Standard Controls.
Design AH Computing.
What is an operating system?
What is an Operating System?
Computer Software CS 107 Lecture 2 September 1, :53 PM.
File Input/Output (I/O)
Computer Science I CSC 135.
Chapter 2: System Structures
X Windows.
Tonga Institute of Higher Education
Tonga Institute of Higher Education
ПРОГРАМСКИ ДЕЛ НА КОМПЈУТЕРОТ
Introduction to Computer Software
Computer Science 111 Fundamentals of Programming I User Interfaces
Tonga Institute of Higher Education
05 | Desktop Applications
Computer Terms Review from what language did C++ originate?
February 16th, 2004 Class Meeting 5
 Is a machine that is able to take information (input), do some work on (process), and to make new information (output) COMPUTER.
Human-computer interaction
from Lutz Dietrich and Hans Kluge
Computer System.
Presentation transcript:

Tonga Institute of Higher Education Simple Input/Output Tonga Institute of Higher Education

Introduction Programs give output to a user. Programs accept input from a user. A User Interface (UI) is a set of commands or menus through which a user communicates with a program.

Console Application Inputs

Console Application Inputs Demonstration Console Application Inputs

Windows Application Inputs Windows are the most popular user interface. You can have windows on computers running Microsoft Window, Linux, Macintosh and other operating systems. This is a good thing! With Java, you can write 1 program that uses windows on different operating systems.

Displaying a Window This code will bring up a window on any operating system with a Java Virtual Machine. (JVM)

Demonstration Displaying a Window

Obtaining Input From A Window

Obtaining Input From A Window Demonstration Obtaining Input From A Window

Handling Special Inputs

Handling Special Inputs Demonstration Handling Special Inputs