In English, each letter occupies one byte. Every programming language has different bytes in a string. So, when you understand the bytes by the data type, you can give an answer.
Industry standard designed to provide a consistent representation and handling of global characters on computers. It contains character sets, encodings, databases, algorithms for manipulating characters.
It is to turn a character or symbol into a signal that the computer can use. For decoding, input(입력) and decoding(해독) must be performed based on standard rules.
The standard for encoding and decoding is called a character set.
It means the difference in the encoding method. Numbers after UTF mean bits.
PNG is pixel-based. Not suitable for magnification, but suitable for images with different color combinations.
jpg, gjf, png
SVG is based on mathematically calculated Shapes. Suitable for product images such as logos and illustrations. It can be enlarged to any size without loss of quality
svg
Makes the hardware work. (Owner of hardware)
Applications cannot run without an operating system. Applications are intended to perform various tasks using the computer.
The CPU is responsible for configuring hardware, RAM to store data, and the operating system is responsible for managing system resources.
Order for an application to do something to computer, through the operating system, Application granted permission by operating system. to manipulate the computer.
An application running in the operating system is called a process.
When a user runs an application, the necessary memory is allocated from the operating system and the application is executed.
If you run two Chrome, two processes are created.
When you run one task, it lists the task sequence. (순서를 나열합니다.)
When one thread runs, the other threads wait.
Process two or more tasks together. It allocates CPU and memory resources appropriately to run multiple tasks together.
Multiple tasks can be performed at the same time, and system throughput is improved.
If two different threads affect one data at the same time, it will produce invalid data. So, when over two threads affect one data, you need to control the order in which operation process first and control access to the share data.