返回卡包市场

SLR 5/ Application Generation

暂无描述。系统推荐的高质量记忆内容,适合每天坚持背诵学习。

卡片总数: 20内容版本: v4公开卡包更新时间: 8/1/2026

卡片预览 (20 张)

#1
正面 (问题)

List some common types of Application Software

背面 (解答)

Word Processor Spreadsheet Software Database Management Video Editing

#2
正面 (问题)

Name the 5 Utility Software’s

背面 (解答)

Antivirus Disk defragmenter Compression File Manager Backup

#3
正面 (问题)

Define Antivirus

背面 (解答)

Helps detect and remove malicious programs, often designed to harm a computer in some way.​

#4
正面 (问题)

Define Disk Defragmenter

背面 (解答)

Over time, files can become split, making file retrieval slower. This software consolidates file parts back together.

#5
正面 (问题)

Define Compression

背面 (解答)

Reduces the amount of space information takes up on a storage device.

#6
正面 (问题)

Define File Manager

背面 (解答)

Allows files and folders to be created, moved, copied, deleted and renamed.

#7
正面 (问题)

Define Backup

背面 (解答)

Provides a way to recover data if the original copy is lost, deleted or corrupted

#8
正面 (问题)

Define Open Source

背面 (解答)

Developed collaboratively, end user can change and improve source code, tends to be free to obtain and distribute

#9
正面 (问题)

Define Closed Source

背面 (解答)

Produced and owned by a company, source code not available to others, protected, paid license to use software

#10
正面 (问题)

State an advantage and disadvantage to Open Source

背面 (解答)

Advantage: Can share with others, source code available, free license, can be modified. Disadvantage: Support must be paid for, finished quality can vary.​​

#11
正面 (问题)

State an advantage and disadvantage to Closed Source

背面 (解答)

Advantage: Support is normally free, developer tends to provide free updates for a set period, high-quality programs. Disadvantage: Source code not available, software can’t be altered or shared with others.

#12
正面 (问题)

What are the 3 types of Translators

背面 (解答)

Assembler Interpreter Compiler

#13
正面 (问题)

Define Assembler

背面 (解答)

Translates a program written in assembly language.​ Takes mnemonics and turns them into machine code.​

#14
正面 (问题)

Define Interpreter

背面 (解答)

Takes one line of code at a time, translates it and then runs it.​ Can be useful for finding errors during coding and debugging

#15
正面 (问题)

Define Compiler

背面 (解答)

Takes source code and translates it all to build an executable machine-code program.​ The finished executable runs quicker than an interpreted program and requires no additional software.

#16
正面 (问题)

List the four stages of Compilation

背面 (解答)

Stage 1 - Lexical Analysis Stage 2 - Syntax Analysis Stage 3 - Code Generation Stage 4 - Linking and Loading

#17
正面 (问题)

Describe Stage 1 - Lexical Analysis

背面 (解答)

Comments and whitespace removed. Converts code into Tokens

#18
正面 (问题)

Describe Stage 2 - Syntax Analysis

背面 (解答)

Tokens are checked against rules of the language. If they don’t, syntax error are reported. An abstract syntax tree is created

#19
正面 (问题)

Describe Stage 3 - Code generation

背面 (解答)

The syntax tree is converted into machine code. Optimization’s are carried out to make program more efficient in processing

#20
正面 (问题)

Describe Stage 4 - Linking and Loading

背面 (解答)

Library code is linked with object code by a linker to make one executable file. Loader code is also added so that programs and libraries are loaded by the OS