Self Java, day01_ Computer Basics

What is the computer

Baidu Encyclopedia query: a computer (Computer) name for the computer, for a modern high-speed computation of the computer device that can be numerical, but can be logically calculated, further having a memory function. Is a modern intelligent electronic devices capable of running in accordance with the automatic, high-speed processing of massive data. Hardware and software systems composed of, without any software installed called bare computer.

hardware

  Hardware (Hardware) i.e. all tangible physical objects present in the computer. Circuits, computer chips, cards, sound cards, memory (RAM), motherboard, monitor, power supply, cables, keyboard, mouse, printer and input device, etc. are all hardware.
An ordinary computers contain four main parts : the arithmetic unit (ALU, Arithmetic logic unit), the controller (CU, Control unit), memory (Memory) and input and output devices (the Input / the Output Device) . Wherein the arithmetic unit (ALU), a controller (the CU), a register (Processor Register) consisting of a central computer processor.

  • The input device (Input Device): When the unprocessed data transmitted to the computer with the help of the input device, data is processed and sent to the output device. The input device may be operated manually or automatically. The main processing behavior is controlled by the CPU. The main role of the command is to provide data.
  • A central processing unit (CPU, Central Processing Unit): is an electronic circuit in a computer, by performing basic arithmetic, logic, control, and input / output (I / O) operations to execute instructions of a computer program. By the base unit operator, controllers, registers and so on.
  • Arithmetic unit (ALU): an arithmetic logic unit within the processor is a digital circuit, performs integer arithmetic and bitwise logical operations (arithmetic and logic operations).
  • The controller (CU): the control unit (commonly referred to as a control system or central controller) of the various components of the management computer; it reads and interprets (decodes) the program instructions, converts them into control signals to activate other portions of the computer.
  • Register (Register): register is limited storage capacity high-speed storage means, they can be used for temporarily storing commands, data and addresses. In a computer system, a processor register is a computer central processing unit to quickly access the available positions, is an integral part of the CPU. CPU reads data directly from the register, faster transmission speed. (Note: the relationship between the CPU, registers, cache, memory: the CPU <-> register <-> buffer <-> memory)
  • Memory (MMU): storage of programs and data device. Most high-end microprocessors (desktops, laptops, servers, computer) has a memory management unit which converts the logical address into a physical address RAM provides memory protection and paging functions, very useful for virtual memory. Simpler processor, particularly a microcontroller, typically do not include MMU. Memory (each memory cell of a Cell: 8-bit binary).
  • An output device (Output): The computer provides an output method called output device. The main role of the data output processing.

software  

Software (Software) is a collection of computer data and instructions in accordance with a specific sequence of tissue. In general, the software is divided into the system software, application software, and middleware is interposed between the two. Software can not just included in the computer (the computer here is the generalized computer) computer programs running on the documents associated with these computer programs are generally considered to be part of the software. Simply put, an aggregate of software programs that add documents.

Binary

Computer data different from the data of life of people, people living in decimal number, and the computer used in all binary number, comprising only two numbers 0,1, every binary one, 1 + 1 = 10. A 1 or a 0 per each called a 'bit (bits). Conversion between different binary data calculation.

byte

Byte is our common minimum computer storage unit. Computer store any data bytes are stored in the form, right-click the file attributes, we can see the byte size of the file. 8 'bit (binary digit) 0000-0000 expressed as 1 byte, 1 byte write or 1 B.
  • 8 bit = 1 B
  • 1024 B =1 KB
  • 1024 KB =1 MB
  • 1024 MB = 1 GB
  • 1024 GB = 1 TB

Common DOS command

Java language for beginners to learn some DOS commands, will be very helpful. DOS was an early operating system, it has now been replaced by the Windows system, for our developers now need to get something done in DOS, and therefore need to have some of the necessary commands.
  • Enter the DOS operating window
Press Windows + R keyboard, open the operating window, type cmd enter into the operation of the DOS window.
  • After opening the DOS command line, you see a path c: \ user it means that we are now operating the disk drive c.
  • Common Commands

 

 

 
 

Guess you like

Origin www.cnblogs.com/wurengen/p/11484630.html