Module 1: History of Computer and Operating Systems and Setting up a Virtual Machine on Your Home Computer Flashcards

1
Q

multiprogramming

A

run multiple applications at the same time, protecting them from one another and sharing the CPU between them

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

hierarchical file system

A

store data on disk persistently organized in a tree structure

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

plug-and-play devices

A

software that allows external devices to interact with applications

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

virtual memory

A

store multiple applications in memory at the same time

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

graphical user interface

A

allows users to develop, run, and interact with new applications. good user interface allows operating systems to evolve from office machines into machines usable by home users.

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

ENIAC

A

the electronic numerical integrator and computer / first general-purpose electronic computer. ENIAC was developed at Penn

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

punch cards

A

pieces of stiff papers with holes in them, where the presence and absence of holes is used to encode digital information about data or programs

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

resident monitor

A

a piece of software that is a precursor to modern operating systems. this software runs in memory and in the punch card era, and was used to process one punch card at a time.

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

operating system (os)

A

a piece of software that is layered between applications and hardware, allowing multiple applications to share the same physical machine resources and gain access to external devices

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

time-sharing

A

the ability to share one physical compute resource among multiple applications

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

multics

A

a time-sharing os developed by MIT, GE, and Bell Labs for mainframes in the 60s

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

compatible time sharing system (CTSS)

A

an os developed by MIT that shares similar time-sharing features as multics

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

linux

A

an open-source os commonly used on both home and server machines. linux is closely modeled after its predecessor Unix

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

unix

A

os developed by Bell Labs that has many of the features used in modern os’s such as time-sharing, a Shell, and a hierarchical file system

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

MS-DOS

A

an early os developed for end-user computers by microsoft. MS-DOS introduced the command prompt interfaces seen in many subsequent versions of Windows

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

Berkeley Standard Distribution (BSD)

A

a unix distribution developed by UC Berkeley; well-known for its pioneering implementation of the TCP/IP protocol used over the internet today

17
Q

ubuntu

A

a popular distribution of linux that is considered easy to install and easily usable by the non-expert

18
Q

virtualization

A

a method for dividing up physical compute resources into logical separate units usable by different users. the most common example is running multiple os’s that share one physical machine.

19
Q

embedded os

A

an os for small devices like sensor networks, or specialized hardware used in airplanes, home appliances, and other mobile devices

20
Q

vagrant

A

a software that automates the process of installation of virtual machines

21
Q

virtual machine

A

a piece of software that emulates a physical machine, but is actually an application running on an existing os

22
Q

host os

A

the os that runs on actual hardware

23
Q

guest os

A

the operating system that runs in the virtual machine

24
Q

virtualbox

A

an open-source software that enables us to run virtual machines

25
Q

code repository

A

a service that stores multiple versions of code, either in the cloud or locally on a server machine

26
Q

version control

A

the ability to manage and change across multiple versions of digital content, typically software

27
Q

git

A

an open-source popular version control software

28
Q

push

A

pushing locally committed software changes into a code repo

29
Q

merge

A

pulling in changes from a code repository and combining the changes with local changes, before pushing the combined version back to the server. merge can sometimes be done automatically if there are no conflicting changes.