Entradas

Mostrando entradas de octubre, 2022

TICO Notes- First term

  Contents test 1st term:  Click here Here are the notes about OP, digital images and digital vs printed images: TICO notes

CONSOLE

Imagen
  CONSOLE allows you to access the computer through cryptic Linux commands.  HOW TO ENTER CONSOLE AND TO EXIT?  Keybord:  ctrl+alt+Fcualquiera (to enter, full screen) ctrl+alt+t (to enter, no full screen)  ctrl+alt+F7 (to exit) Screenshot from a linux computer of school.  BASIC COMMANDS:   sudo shutdown 2  : shutdown and turns of the computer after 2 minutes. sudo shutdown –r 2  : shuts down and reboots in 2 minutes.  $ sudo shutdown 2 $ sudo shutdown –r 2 The mv command moves a file or renames it. Here the file name gets changed from first.txt to second.txt. $ mv first.txt second.txt The  exit   command exits the current shell. When you hit enter, you’ll be taken out of the terminal. $ exit

MS-DOS

Imagen
MS-DOS , in full Microsoft Disk Operating System .  MS-DOS allows the user to navigate, open, and otherwise manipulate files on their computer from a command line .  HOW TO ACCESS MS-DOS?  Click on the Windows "Start" button. Select "Programs" Select "MS-DOS Prompt"  EXIT:  exit [/b] [<exitcode>] BASIC COMMANDS: COPY Syntax of this command is “C:\>copy [desired file name and address] [destination address]” . This command is used to copy a file from a drive to another drive. RENAME Syntax of this command is “C:\>ren [old file name] [new file name]” . This command is used to rename a file. Simply out the old name of the file and new name of the file and press enter. Your file name will be renamed. DELETE Syntax of this command is “C:\>del [path and filename]” . This command is used to delete a file from a directory or a folder.

Auto Defrag - Defragmentation

Imagen
  WHAT? Defragmentation is a term used to describe the process of reorganizing a hard drive's data to help increase the proficiency of accessing the data because they are stored next to each other, and prevent file fragmentation.  Fragmentation is caused when information is deleted from a hard drive and small gaps are left behind to be filled by new data. As new data is saved to the computer, it is placed in these gaps. If the file is bigger than the gap, it will divide in several empty gaps. Consequently, they´re scattered.  WHY? By organizing the data on the hard drive, it can decrease the time it takes to run a program and open files on a hard disk drive. If it´s not defragmentated and you want to access the data, you must find all fragments of a file before it can be opened or executed. WHAT HAPPENS IF YOU DO NOT DEFRAGMENT IN WINDOWS?  File defragmentation occurs only in Windows because the rest of the systems don´t cut the files.  If you don´t defrag y...

Programing language

Imagen
  LOW LEVEL LANGUAGE Set of instructions closer to the machine code that includes the assembler and the binary system.  Examples: Machine Code and Assembly Language.  HIGH LEVEL LANGUAGE The further it is from the binary code or the complex set of instructions, the higher level it has. The high level code doesn´t run as fast as the same program written in a low-level language because it must first be interpreted or compiled into machine code. Examples: Java, Python, Prolog, Perl, etc.  Source code is the list of human-readable instructions that a programmer writes, often in a word processing program when he is developing a program. It`s a set of instructions that a computer program will follow written in high level language . Object code/compiled code   is also refered as the binary code and can be directly executed by the machine after linking. And it´s a low level language .  Compiler: Program that Translates (compiles) the source code into an ob...