Lesson 3 Flashcards

1
Q

a special type of embedded software that is written in non-volatile memory (such as ROM or EPROM), which cannot easily be modified

A

Firmware

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

a compiler that converts the code between different high-level languages. It can also perform automatic code refactoring. It is nothing but, we can refactor the programs
that are outside the control of the original implementer.

A

Language converter

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

In the first pass, it can create a table with all symbols and their values. In the later passes, the table can be used to generate code.

A

Multi-pass assemblers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

type of software that is written directly for a piece of hardware. It operates without going through APIs, the operating system, or device drivers—providing the needed instructions and guidance for the device to communicate with other devices or perform a set of basic tasks and functions as intended.

A

Firmware

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

This tool gives the ability to see how the software will function in real-time.
possess more features when compared to other hardware.
allow wide-scale collaboration as they have been developed and released under the
General Public License through an open-source environment.

A

Emulators

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

helps in synchronizing the delays and internal peripherals.
monitor every part of the information in the source code with symbolic arguments
and labels.
trace the output of the contents of the program counter.

A

Simulators

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

initializes the hardware components during system
startup. This includes configuring registers, setting up clock sources, and initializing memory spaces.

A

System Initialization

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
8
Q

runs on the operating system, uses or interacts with the middleware and firmware, and is the primary focus of the embedded systems’ target function.

A

Application

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
9
Q

If a compiler can be able to run a code in a computer or operating system, that has been generated in a different operating system is known as a ___________.

It can also separate the build-in environment from the
target environment.

A

Cross-Compiler

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
10
Q

a software layer situated between applications and operating systems.

A

Middleware

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
11
Q

translates the executable program into source code in a high-level language which, when compiled shows the same behavior as the original executable program.

very much useful in error correction, computer security, and interoperability.

A

Decompiler

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
12
Q

A piece of software that is embedded in hardware or non-PC devices. It is written
to perform a particular function and typically written in a high-level format and then compiled down to provide code that can be lodged within a non-volatile memory within the hardware.

A

Embedded Software

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
13
Q

Embedded systems are susceptible to security threats. Embedded
software can implement security measures such as encryption, authentication, and access control to protect sensitive data and prevent unauthorized access to the hardware.

A

Security and Encryption

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
14
Q

It goes through the source code once. Any symbol defined before will require errata at the end of the object code.

A

One-pass Assemblers

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
15
Q

a crucial tool that transforms human-written code into a language clear for machines. It is a more complex process that a compiler does. unit that takes the basic computer instructions as input and converts them into a pattern of bits that can be used by the computer’s processor to perform certain functions.

A

Assembler

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
16
Q

In applications involving multiple sensors (e.g., in
autonomous vehicles or IoT devices), embedded software processes data from various sensors, performs sensor fusion, and extracts meaningful information.

A

Sensor Fusion and Data Processing

17
Q

creates the whole picture of the code. Also resolve all of the unresolved
symbols.

A

Linker

18
Q

a testing tool that is widely used for popular operating systems
like Windows, Linux, and Mac.

A

IDA Pro

19
Q

software that allows a user to run other applications on a computing device.
manages a processor’s hardware resources including input devices such as a keyboard and mouse, output devices such as displays or printers, network connections, and storage devices such as hard drives and memory.

A

Operating System

20
Q

responsible for detecting and handling
hardware faults and errors. It can implement mechanisms for error recovery, such as resetting a component, switching to redundant hardware, or triggering alarms and diagnostics.

A

Fault Handling and Recovery

21
Q

Embedded software is responsible for implementing __________ algorithms that monitor inputs, make decisions, and control hardware in a timely manner.

A

Real Time Control

22
Q

hides the low-level hardware details, allowing developers to
write software that is independent of the specific hardware components.

A

Hardware Abstraction

23
Q

tool that performs the conversion from relocatable program to executable binary image. produce an output file that contains a binary memory image that can be loaded into the target ROM.

A

Locator

24
Q

Embedded systems often need to communicate with other devices or
systems. Embedded software manages _______________and data exchange between the embedded system and external entities, including other embedded systems, computers, or the internet.

A

Communication protocols

25
Q

facilitate communication between the higher-level software and hardware peripherals such as sensors, actuators, displays, and communication interfaces (e.g., UART, SPI, I2C).

A

Device Drivers

26
Q

the most basic code that is used for the processor unit. The code is normally in hex code and provides the basic instructions for each operation of the processor.

A

Machine code

27
Q

a testing tool that finds and deletes bugs and errors inside the code. Also,
it shows the places where errors were found for a quick rewriting by developers and eliminating future mistakes.

A

Debugger

28
Q

embedded software controls the display and interacts with user inputs, providing a means for users to interact with and control the device.

A

User interface