...Abstract My understanding on IPOS (Input Output Processing Storage) A computer is an electronic device, operating under the control of instructions stored in its own memory, which can accept data (input), process the data according to specified rules (process), produce results (output), and store the results (storage) for future use. The IPOS cycle happens every time you use a computer its stands for Input, processing, output and storage. These are the steps in the IPOS cycle. First input is entered into the computer through an input device, second, the CPU (Central Processing Unit) of the computer processes the information. Third the computer can output the information as a finished product or forth it can save it in storage for a later use. Output devices are continuously changing as technology advances. The IPOS cycle is the process the computer goes through to receive input, process the data, output a display of the results and storage store the information for a later use. An input device like a keyboard enters information into the computer. An output device like a monitor displays the results or information from the computer. Storage device act like an input/output device with the additional quality of saving data to use at a later date. Input is anything we wish to embed in a system for some type of use. It is any type of data or instruction used by a computer. It is the process of sending information to the computer’s CPU (central processing unit). Different...
Words: 721 - Pages: 3
...0,0,0,0 getReady() while index < SIZE getNumbers() endwhile finishUp() stop getReady() index = 0 return getNumbers() output “Enter a number for position ”, index input numbers[index] index = index + 1 return finishUp() output “The numbers in reverse order are: ” while index > 0 index = index – 1 output numbers[index] endwhile return b. Modify the reverse-display program so that the user can enter up to 10 numbers until a sentinel value is entered. Answer: A sample solution follows Flowchart: Pseudocode: start Declarations num index num SIZE = 10 num numbers[SIZE] = 0,0,0,0,0,0,0,0,0,0 string CONTINUE = “Y” string moreNumbers = CONTINUE getReady() while index < SIZE AND moreNumbers equal to CONTINUE getNumbers() endwhile finishUp() stop getReady() index = 0 output “Do you want to enter a number? (Y/N)” input moreNumbers return getNumbers() output “Enter a number for position ”, index input numbers[index] index = index + 1 output “Do you want to enter more numbers? (Y/N)” input moreNumbers return finishUp() output “The numbers in reverse order are: ” while index > 0 index = index – 1 output numbers[index] endwhile return 2. a. Design the logic for a program that allows a user to enter 10 numbers, then displays each and its difference from...
Words: 4366 - Pages: 18
...Shawn Saint-Germain NT1110- Computer Structure and Logic June 29, 2015 Module 2 Short Answer I/O devices are a vital part of any computer system. These devices enable the user to put data into the system (input) and receive a visual representation of what they put in (output). Some of the most vital I/O devices to make a system operable are the most common seen. One such device being the monitor. The monitor is the single most important output device to have on a system. The monitor allows for a visual display of all inputted data on the computer. Paired with the monitor, the keyboard and mouse are 2 input devices which allow the user to directly input data and various other information into the system. However, there are some input devices which are not necessary for normal use of the system. One such example being a webcam. Webcams allow for visual input into the system but is not vital for system functionality or performance. Due to the fact that a visual input device is not a normal form of input for a system. A modem is considered an I/O device for a variety of reasons. A modem allows for data input to the system directly from the internet and other systems, as well as allowing the system to output data to other systems. Another device that follows the dual functionality aspect is a printer. The printer is viewed mainly as an output device, allowing for data to be visually outputted to paper. The printer can also be considered an input device, depending on what type...
Words: 312 - Pages: 2
...What critical I/O Devices are Necessary to use a personal computer? Which ones are not necessary for normal day-to-day use and why? A: The Critical I/O Devices necessary to use a personal computer are the Mouse, the keyboard, The Monitor, The USB ports and the Internet ports. A2: Serial (COM) ports are not necessary for normal day to day use. The optional features include: External modems ,Serial mouse or pointing devices such as trackballs or touchpads, Plotters, Label printers, Serial printers, PDA docking stations, Digital cameras and PC-to-PC connections used by file transfer programs such as Direct Cable Connection, LapLink, and Interlink Team, Pearson C. Computer Structure and Logic. Pearson Custom Publishing, 2011. VitalBook file. Why a modem is considered an I/O device? A: A Modem is considered an I/O Device because more specifically a Null-Modem cable enables two computers to communicate directly with each other by crossing the receive and transmit wires (meaning that two computers can send and receive data, much like a computer network, though much slower) The Modem is Input and output, allowing two devices to receive and send data to one another. Team, Pearson C. Computer Structure and Logic. Pearson Custom Publishing, 2011. VitalBook file. Why do I think a Printer is classified as an input device? A: The Reason I feel a printer is also in Input device is because printers now a days are Multifunctional. Printers have the capabilities to send fax machines...
Words: 382 - Pages: 2
...purchase all the components required to build a state-of-the-art gaming computer from components available on the internet. Analysis Input: the user’s choice for motherboard, CPU, and hard drive. Process: The program will know the predetermined costs of the other components, BaseCost. The input consists of the CPU choice, the motherboard choice, and hard drive choice submodules, CPU_Choice, MB_Choice, and HDD_Choice. The user will enter a choice for an option. The program will determine the corresponding cost of the options: CPUCost, MBCost, and HDDCost. The total cost of the computer system is calculated by the sum of all the individual components for the system The BaseCost= CaseCost + PowerSupplyCost + MotherboardCost + HardDriveCost + RAMCost + DVDCost + SoundCardCost + MonitorCost + GraphicsCardCost + OperatingSystemCost The TotalSystemCost = CPUCost + MBCost + HDDCost + BaseCost Output: the user’s choices, the total system price in USD Design Step 1.) The Main module will call Compute_CPU_Choice, Compute_MB_Choice, and Compute_HDD_Choice submodules or terminate the program. Step 2.) The program will add the BaseCost from preset values. Step 3.) The program will request user input for CPUCost, MBCost, and HDDCost. Step 4.) The program will add The TotalSystemCost = CPUCost + MBCost + HDDCost + BaseCost Step 5.) The program will display the total cost of the computer in US dollars. Main Module Declare variables ...
Words: 927 - Pages: 4
...simple to very complex, these problems usually require some sort of input and variables in order to create a solution. One problem that I face in the workplace of construction, is trying to figure out the number of ceiling tiles we will need to fit the ceilings in most offices we build. The ceiling tiles are a certain size and cover large areas which can be a tedious task trying to count how many tiles it will take to fill in the ceiling. A programming solution could be very beneficial in an instance such as this because by creating inputs such as the size of the tiles and the area they need to cover, an output could be the number of tiles that will be needed and thus saving a large amount of time on counting every space they need to fill. This problem of having to determine the number of ceiling tiles it will take to cover the celling area is normally done by counting the spaces in the ceiling that need to be filled and then determining how many tiles will need to be purchased. By coming up with a program to solve this problem would no doubt save a lot of time and even money by not buying an excess amount and either throwing them away or storing them. I believe a simple program would be to have multiple inputs of the size of the tile and the area needing to be covered. By having these two inputs, it would allow for a formula to be created of the area divided by the size of the tile in order to create an output of number of tiles. Because these tiles are perfectly square, the...
Words: 701 - Pages: 3
...DEPARTMENT OF Computer Science and Engineering Digital Electronics & logic Design Laboratory Experiment No-1: Characteristics of AND, OR and NOT gates Objective: To verify the input and output relationships/characteristics of 2-input AND, OR and 1-input NOT gates. Required Instruments and ICs: 1. AT-700 Portable Analog/Digital Laboratory (or AT-800 Modular Lab, AT-701 Personal Lab) 2. 7404(NOT), 7408(AND), 7432(OR) Circuit Diagram: [pic] [pic][pic][pic] Procedure: Step 1: Find out correctly the input and output pin numbers of each gate. Step 2: Install the components of Fig 1-1 onto the breadboard of AT-700 and check properly the connections. Remember to connect each IC’s pin 14 to “+5V” of DC power supply of AT-700 and pin 7 to “GND”. Step 3: Connect the Data switches “0” and “1” to point A and B of fig. 1-1 respectively. Then connect 8 bit LED Display’s “0”, “1” and “2” to the output of point Y1, Y2 and Y3 of Fig. 1-1 respectively. The connection diagram is as follows. [pic] Step 4: Change Data Switches “0” and “1” between “0” and “1” position and observe the situation of 8 bit LED Display “0”, “1” and “2”. The LED is light that indicates the output is in the logic 1 condition. When LED is dark, it indicates that the output is in the logic 0 condition. Step 5: Record the results that you have observed into the truth table as follows. Truth Table 1-3 [pic] Discussion & Conclusion: (On...
Words: 263 - Pages: 2
... Computer Logic Design (Spring 2013) Submission Deadline: 6th May, 2013 Submission Path: What is needed to be submitted? 1- High level Design of Circuit- 27th April, 2013 2- Detailed logic diagram in working condition implemented in Logic Works.- 6th May, 2013 Project 1: Traffic lights Problem If the three traffic lights (leaving yellow) are written as R, G and G- where G- is the green light to turn right, then the traffic signals operate as follows. The traffic lights operate with the following signals R x0 G x1 G- 1x You have to design a circuit controlling all the lights. Each state should stay there for 4 clock cycles. Input Clock Pulse CP Output Light connections A0, A1, B0, B1, C0, C1, D0, D1 Project 2: Dice counter Problem A company is producing dice. To check the balancing of the dice they have made a mechanical equipment to throw the dice and read the answer. But they now need a circuit to count the actual number of times each side appeared. They already have a display and the dice counter. The LCD has 4 inputs and displays the number placed at its input. The dice counter has five outputs, four to tell which number has appeared and one to tell that a new sample is available. You have to design a circuit that gets input from the counter, counts the frequency of all the numbers and produce the output on six LCD’s i.e...
Words: 2494 - Pages: 10
...Discovering Computers Technology in a World of Computers, Mobile Devices, and the Internet Chapter 7 Input and Output Objectives Overview Differentiate among various types of keyboards: standard, compact, on‐ screen, virtual, ergonomic, gaming, and wireless Describe characteristics of various pointing devices: mouse, touchpad, pointing stick, and trackball Describe various types of pen input: stylus, digital pen, and graphics tablet See Page 288 for Detailed Objectives Describe various uses of touch screens Describe various uses of motion input, voice input, and video input Discovering Computers 2014: Chapter 7 2 Objectives Overview Differentiate among various scanners and reading devices Explain the characteristics of various displays Identify the purpose and features of speakers, headphones and earbuds, data projectors, interactive whiteboards, and force‐feedback game controllers and tactile output See Page 288 for Detailed Objectives Summarize the various types of printers Identify various assistive technology input and output methods Discovering Computers 2014: Chapter 7 3 What Is Input? • Input is any data and instructions entered into the memory of a computer • • • Instructions can be in the form of software (programs and apps), commands, and user response Command is an instruction that causes a program or app to perform a specific action...
Words: 3910 - Pages: 16
...NT1110 Computer Structure and Logic Module 2 Short Answer 2.1 I/O Devices Professor Mo Suleiman I/O Devices An I/O device is defined as “any of various devices (including sensors) used to enter information and instructions into a computer for storage or processing and to deliver the processed data to a human operator or, in some cases, a machine controlled by the computer.” (Britannica, 2014) With that information presented, the critical I/O devices needed for the computer are a mouse and keyboard. They are both necessary because they are input devices. The mouse allows the user to tell the computer what program to open, while the keyboard is used for allowing the user to input information in a language the user and computer understands to carry it out. The monitor and printer are output devices. There are a different types of both. The traditional output device of a personal computer has been the CRT (Cathode Ray Tube) monitor. Just like a television set (an older one, anyway) the CRT monitor contains “a large cathode ray tube that uses an electron beam of varying strength”. (Computer Terminology) The monitor displays the video signal produced by a part within the computer. Thus then you have picture. A modem is classified as a Input and output devices because of what it does for the computer. It transmits and receives information, therefore is a input AND output. The printer as well can do this if it’s a fax machine built together with it. The Printer outputs...
Words: 310 - Pages: 2
...processor. Direct memory access is feature of computer hardware that allows devices to gain access to the main bus linking the processor to the system memory. Direct memory access moves data directly between the main memories or to another part of the system independently. Direct memory access can transfers memory a lot quicker than the processor itself. The processor must wait for the peripheral to respond in order to transfer any byte or words while the direct memory access directly has access and communicate with the peripheral to transfer the data. * What is the purpose and technique of DMA logic? Direct memory access allows some of the hardware sub-systems to access system memory independently of its CPU. Without direct memory access, when the CPU is using input/output programs, it is typically occupied by the full duration of the read or write operation, and it cannot perform other work. With direct memory access, the CPU can initiates the transfer and does other operations while the transfer is in progress, and will be interrupted by the controller of the direct memory access when the operation is completed. Direct memory access is useful when the CPU could not keep up with the data transfer rate, and while the CPU needs to perform other useful work while waiting for a slow input and output data transfer. Many hardware systems use direct memory access such as disk drive controllers, graphics cards, and network cards. Computers that have direct memory access channels...
Words: 378 - Pages: 2
...Poindexter NT1110 Computer Structure and Logic I/O Devices 1/12/15 Mrs. Coleman What critical I/O devices are necessary to use a personal computer? Which ones are not necessary for normal day-to-day use and why? A monitor and a keyboard are the two I/O devices necessary to use a personal computer. The monitor is the most important output device. It allows one to see the information that is being sent out by the computer. You cannot send or receive data to or from a computer without a monitor. The keyboard is the most important input device. It is the primary method used to send information to a computer. Data entry cannot be performed without a keyboard. The keyboard can even be used to navigate the desktop if a mouse is not connected. A mouse, game controller, printer, and modem are devices not necessary for day-to-day use of a PC. You cannot connect to the internet without a modem. Having a mouse makes using a computer more efficient. Day-to-day use can still be achieved even without a mouse, game controller, printer and a modem. Why is a modem considered an I/O device? A modem is a device connected to a personal computer and other computers via a network through a telephone or cable line. I sends and receives information to and from servers connected to the network simultaneously. This makes a modem both an input and output device. Why may a printer be classified as an input device? The printer is essentially an output device. The computer sends the...
Words: 314 - Pages: 2
...Shawna Rockwell October 1, 2015 Unit 3 Assignment 1 NT1110 Input and Output Ports and Devices * Input and output devices: used to interact with computer. * I/O devices connect through I/O ports Types of I/O Ports * Serial Port: Transmit data at 1 bit at a time, male and has 9 or 25 pins * Parallel Ports: Transmit data at 8 bits, female and has 25 pins * Game Ports: Female, 15 pins in 2 rows * VGA Port: 15 Pin with three rows D type * DVI PORT: (Digital Visual Interface) * S-Video port: Connects to TV, 4-7 pins * USB 1.1: Transmit maximum of 12 Mbps, Maximum cable length of 3 meters * USB 2.0: Transmit maximum of 480 Mbps, Maximum cable length of 5 meters * SCSI Narrow: Type A, 50 pin connector, most common type * SCSI Wide: Type P, 68 Pin * FIREWIRE (IEEE1394): Fast, Uses Serial communication, Hot swappable, and expected to replace SCSI * FIREWIRE (IEEE1394): Used for Streaming Media. Examples of Input Devices Devices used to feed data and control signals to a computer. * Keyboard * Mice * Microphone * Game controllers * Scanners * Cameras Examples of Output Devices Output devices provide the data processed or stored by the computer. Output devices may be audio, visual, or both. * Monitors * Printers * Projectors * Speakers Summary of Thoughts The video exercise was very educational, I’ve always had trouble remembering what the ports name is and the number of pins...
Words: 281 - Pages: 2
...Input Device Facts Common interfaces used for connecting input devices include: * 6-pin mini-DIN (PS/2 connector) for keyboard and mouse * USB for keyboard, mouse, and other devices * Infrared and wireless connections for keyboards, mouse, and other devices * DB-9 (serial) connector for specialized input devices The following table lists several considerations for selecting input devices. Device Type | Considerations | Keyboard | Keyboards typically connect through a PS/2 or USB port. Many keyboards include special function keys that simplify playing music or browsing the Web. Some keyboards include a built-in USB port that can be used to connect other peripheral devices. | Mouse | A mouse typically connects through a PS/2 or USB port. A wireless mouse typically transmits to a receiving station attached through a USB port. * Mechanical mice use a roller ball to detect motion. The roller ball must be cleaned periodically to ensure proper functionality. * Optical mice use light rays to detect motion. Optical mice require less maintenance than mechanical mice. * Motion-based mice can accurately detect mouse movement while in the air. This particular device can attach to a user's head and moves the cursor when the head moves. * You can select mice with multiple additional buttons or a scroll wheel to add functionality. * A trackball is a pointing device that is like an upside-down mechanical mouse where the user manipulates the pointer by...
Words: 645 - Pages: 3
...1. INTRODUCTION Specification point: Define a computer system Computers today are all around us in one shape or another. Whilst you are reading this page – how many computers are you aware of in the room? Maybe you are in a classroom right now and you are near to a: Mobile phones Calculator Watch Interactive white board Projector Printer Desktop computer Laptop And more probably. The point is that computers come in all shapes and sizes and are often built into other devices. But they share some common features. This mini-web will introduce you to a computer system. 2. A computer system A computer system is one that is able to take a set of inputs, process them and create a set of outputs. This is done by a combination of hardware and software. This diagram below shows you the idea of a computer system in its most basic form The computer system has one or more inputs to provide data. This data is then processed in some way. The outcome of the processing is sent to an output or it may be stored until some event happens to cause it to be output. For processing to take place, there needs to be a set of instructions of what needs to be done. This set of instructions is called a program. This system is called a stored-program computer. The very first computer in the entire world of this type was built in Britain in 1949 and was called the Manchester Mark 1. The beauty of this type of computer system is that it is flexible-the machine performs a different...
Words: 752 - Pages: 4