DOC PREVIEW
UNF COP 2551 - Java Software Solutions

This preview shows page 1-2-3-4-5-34-35-36-37-68-69-70-71-72 out of 72 pages.

Save
View full document
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
View full document
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience
Premium Document
Do you want full access? Go Premium and unlock all 72 pages.
Access to all documents
Download any document
Ad free experience

Unformatted text preview:

Java Software SolutionsBasic Computer ProcessingMemorySoftware CategoriesWhat This Means to UsMore: What this means to usAnalog versus Digital SignalsAn Analog Signal versus a Digital SignalBinary NumbersConverting Binary Numbers to Decimal NumbersHardware ComponentsPeripheralsInput/Output DevicesMain Memory and Secondary MemoryCharacteristics of Main MemorySecondary Memory DevicesTwo Other Common Terms for Memory DevicesOther Memory DevicesCentral Processing UnitCPU - moreSlide 21NetworksLocal Area Networks and Wide Area NetworksThe InternetIP Address vs Internet AddressThe Domain Name SystemThe World Wide WebHypertext and BrowsersUniform Resource LocatorsAnother Sample URLSlide 31World Wide WebProgrammingProblem Solving – Know this!How do these Steps Apply to You?The Java Programming LanguageReasons Why Java is PopularA Java ProgramWhat to Notice in Lincoln.javaWhat to Notice (2)The println() MethodAnother Look at Lincoln.javaThe Method Named main()CommentsTwo Types of CommentsExternal Documentation javadocGood Programming PracticesIdentifiers and Reserved WordsThe Reserved WordsReserved WordsRules for Naming IdentifiersConventions for Naming IdentifiersChoosing Identifier NamesWhite SpaceProgramming LanguagesFrom Machine Language to Assembly LanguageFrom Low-level Languages to High-level LanguagesFourth-Generation LanguagesCompilers and InterpretersEditing and Running Your ProgramTranslation of Source CodeA CompilerAn InterpreterJava Uses Both a Compiler and InterpreterThe Advantage of Java BytecodeIntegrated Development Environments (IDEs)NetBeans 5.5 or 6.0More on: Syntax and SemanticsSemantics (meaning)ErrorsCompile-time and Run-time ErrorsLogical Errors1/73Java Software SolutionsChapter 1Computer Systems2/73Basic Computer ProcessingA computer system is made up of hardware and software.Hardware: Chips, keyboards, disks, etc.Software: Programs and the data those programs use.Key Components of a Computer Systemcentral processing unit (CPU)input/output (I/O) devicesmain memorysecondary memory devices3/73MemoryPrograms and data are held in storage devices called memory, which fall into two categories:Main MemoryThe storage device (e.g., chips on the mother board) that holds the programs and their data (software) while the programs are executing.Secondary MemoryDevices such as hard disks that store software in a relatively permanent manner.We save our software on secondary memory. Copies of the software are brought into main memory when we execute our programs.4/73Software CategoriesWe will be concerned with two categories of software.The operating system.Provides a user interface that allows us to interact with the machine (enter input and view output).Manages computer resources such as the CPU and main memory.Application SoftwareGeneric term for just about any software other than the operating system.Word processors, web browsers, games, business applications, etc.The focus of this course is development of high-quality application programs.5/73What This Means to UsWe will be learning to create application programs using the Java programming language.We will be using an IDE called NetBeans.Current version of NetBeans is 6.0 but 5.0 and 5.5 should both be sufficient also.IDE stands for Integrated Development Environment. (Know this)6/73More: What this means to us You will dowload the J2SE Standard Edition and Development Kit JDK 5.0 () from Sun Microsystems.You will also download Netbeans and install it. See separate link for tutorial on this.7/73Analog versus Digital SignalsAnalog information and/or signals are continuous, varying in direct proportion to the source of the information – like the amplitude of a wave may vary with volume. It’s period may vary with frequency…Digital technology breaks information into discrete pieces and represents the pieces as numbers.Music on a CD is stored digitally, as a series of numbers. The music is sampled about 40,000 times per second and each number represents the voltage level of one specific instance of the recording.8/73An Analog Signal versus a Digital Signalanalogdigital9/73Binary NumbersA digital computer stores information as numbers, but those numbers are not stored as decimal numbers.All information in a computer is stored and managed as binary values.The binary number system has only two digits, 0 and 1.A single binary digit is called a bit.10/73Converting Binary Numbers to Decimal NumbersStarting with the rightmost bit in a binary number, each position represents a power of 2, with the rightmost bit position representing 20 which is decimal 1, the next bit position representing 21 which is 2 and the next representing 22 which is 4, etc.Binary 1011 is 1* 23 or 8 + 0 * 22 or 0 + 1 * 21 or 2 + 1 * 20 or 1 which adds up to 11 decimal (base 10).Binary 11001001 is 201 decimal.CAN YOU DO THIS????In general, n bits can represent 2n unique items.Computers typically manipulate sequences of 8 bits with each sequence of 8 bits referred to as a byte.11/73Hardware ComponentsWe use the term computer architecture to describe how the hardware components of a computer are put together.A program and its data reside in main memory while the program runs.The Central Processing Units (CPU) reads one program instruction from main memory and executes it.(Called ‘fetch – execute’ cycle)If an instruction needs data, such as the amount in a bank account, the CPU will acquire that information from central memory (which may require the access of data in secondary memory to be brought into memory first).The process repeats until the program ends.12/73PeripheralsAlmost all devices in a computer other than the CPU and main memory are called peripherals.Controllers are devices that coordinate the activities of specific peripherals.A unit with several disks attached will have a disk controller for timing, contention, data access, …Input/Output (I/O) devices and secondary memory devices are considered peripherals.13/73Input/Output DevicesFor our purposes, the primary I/O devices will be the keyboard and the monitor.Output on a monitor is achieved by breaking the screen picture into small pieces called picture elements (pixels). The pixels are represented in the computer as numbers (as is everything else) and each pixel has a specific ‘screen address.’A typical monitor


View Full Document

UNF COP 2551 - Java Software Solutions

Download Java Software Solutions
Our administrator received your request to download this document. We will send you the file to your email shortly.
Loading Unlocking...
Login

Join to view Java Software Solutions and access 3M+ class-specific study document.

or
We will never post anything without your permission.
Don't have an account?
Sign Up

Join to view Java Software Solutions 2 2 and access 3M+ class-specific study document.

or

By creating an account you agree to our Privacy Policy and Terms Of Use

Already a member?