Computer Science, Crash Course (YouTube) Flashcards

You may prefer our related Brainscape-certified flashcards:
1
Q

What’s first example of calculating machine?

A

Abacus
(Mesopotamia 2500 BCE)

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

Who said: “At each increase of knowledge, as well as the contrivance of every new tool, human labour becomes abridged”?

A

Charles Babbage
(1791-1871)

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

Who invented the Step Reckoner?

A

1694
Gotfried Leibnitz
Could do add/subtract/multiply/divide - first machine that could do this

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

How were artilery calculations performed traditionally?

A

Using range tables - taking into account distance, wind speed, weather etc
Used well into WW2

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

Who invented the Difference Engine, capable of solving polynomials?

A

Charles Babbage

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

What did Babbage come up with after the Difference Engine?

A

Analytical Engine - first multi-purpose computer, can run steps in sequence, store results, even with a printer

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

Who was the first person to write hypothetical programs for the Analytical Engine? The first “programmer”?

A

Ada Lovelace
(1815-1852)

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

How was the US census of 1890 helped by the use of computers?

A

Manually it would have taken 13 years
Herman Hollerith developed electro-mechanical system using tabulations and punch cards e.g. a hole punched for marital location, this would enable a circuit at that location which would turn a motor and added one (to the married total)
Sped up things by 10 times

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

Hollerith’s machine tabulating company merged with others to become what in 1924?

A

IBM

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

What was the Harvard Mark I and what was the main component that it used?

A

1944 at Harvard, used by Allies (e.g. running simulations for Manhattan Project)
Could do three additions or subtractions per second
Based on the “mechanical relay” switch

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

What design improved the mechanical relay?

A

Vacuum tube - no moving parts, this is a move to “electronic computing”

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

What was the first electronic computer (using vacuum tubes)?

A

Colossus Mark I
1943
Bletchley Park - code breaking Nazi messages
First programmable computer

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

What was the true first general purpose programmable computer?

A

ENIAC
1946
Uni of Penn
Operational for 10 years
More arithmetic that the entire human race up to that point
~17.5K vacuum tubes

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

What followed the vaccum tube and who invented it?

A

Transistor
Bell Labs in 1946

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

What was the first commercial transistor computer?

A

IBM 608
1957
Contained 3000 tranistors
Could do 4,500 additions per second

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

How big are transistors today?

A

Smaller than 50 nanometers
(paper is 100,000 nanometers)

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

What are the 3 basic logic gates that can be built with transistors and what are their symbols?

A

NOT (triangle with dot)
AND (D shape)
OR (spaceship shape)

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

How can you use the basic gates to build an XOR?

A

(OR gate)
AND
(NOT(AND))

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

What system replaced ASCII?

A

Unicode in 1992
(based on 16 bits)

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

Which part of the processor does computations like calculating?

A

Arithmetic and Logic Unit (ALU)

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

What is the first chip that has an ALU completely in it?

A

Intel 74181
(1970)

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

Logic gates can be thought of as “…” for the individual transistors

A

abstractions

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

Give an example of overflow affecting real life applications?

A

Pacman used 8-bits to store scores, once you got past level 255, the ALU overflowed resulting in glitches to the game
Became a right of passage for Pacman players

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

Why do simple ALUs not have multiplication and division circuits?

A

Because you can simplify them to addition and subtraction operations

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

How many bits and logic gates did the famous Intel 74181 chip have

A

4 bits
70 logic gates

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

What are the symbols used for ALU operations?

E.g. for an 8 bit ALU

A

V symbol
* Input A and Input B go in at the top (each 8 bits)
* Operation code (4 bits) from the left
* Flags from the right (overflow, zero, negative)
* Output (8 bits)

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

Which logic gates can be used to store states i.e. memory?

A

And-Or Latch

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

What is the name given to a group of latches, holding a single number? And the number of bits is knows as it’s […]?

A

Register
Width
Today many chips are 64 bit wide

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

How much RAM does my M2 chip have?

A

8 GB
(= 8 * 8 * 1024 * 1024 * 1024 = ~64B bits)

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

Which component chooses the right address to read/write memory to?

A

Multiplexer

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

The first single chip CPU Intel 4004, had what clock speed? (1971)

A

740 kHz

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

What’s the clock speed of my M2 mac?

A

3.49 GHz
(3.5 billion cycles per second)

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

What are the main components in a CPU?

A

Clock
Control Unit
Registers
ALU

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

How many instructions did the first fully integrated chip (Intel 4004) have?

A

46 instructions
Modern chip has thousands

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

What is the name of the entity that connects CPU chip to RAM?

A

Bus

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

What’s cache?

A

Piece of memory that sits on the chip to speed operations up
A block of data is moved from RAM to cache
Closer to CPU so cache can be accessed more quickly (in one clock cycle, say, rather than waiting for a few clock cycles)

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

What cache does the M2 apple chip have?

A

192 KB of L1 instruction cache
and 128 KB of L1 data cache
and share a 16 MB L2 cache

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

If the data is found in cache, what’s it called?

A

Cache Hit

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

If data in cache is different from RAM, how is this flagged in the cache?

A

via a “dirty bit”

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

What are the building blocks of the CPU cycle?

A

Fetch
Decode
Execute

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

What chip powers my Mac, and how many transistors?

A

M2
20b transistors

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

What chip powers my iPhone and how many transistors?

A

A15 Bionic chip
15b transistors

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

What are the five areas of the chip making industry?

A
  1. ISA = Instruction Set Architecture
  2. Chip design
  3. Fabrication
  4. Software and equipment
  5. Packaging and testing
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
44
Q

What are the two main ISA’s and which chips and OS’s use them?

A

x86 > Intel and AMD > Windows, Mac, Linux

Arm > multiple makers > Android

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

What are the CapEx ratios (of revenue) for chip designers vs. chip fabs?

A

Designers: 3-5%
Fabs: 30-50%

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

Who is the biggest chip maker (foundry)? and market share?

A

TSMC
Over 50%

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

EUV Lithography machines - who makes them?

A

ASML (Dutch company)

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

How many machines does ASML make per year?

A

25
(each one costs $120m)

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

What’s a multi-core processor?

A

Can run instructions in parallel, whilst sharing some commone components like cache

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

What’s a FLOP?

A

Floating Point Operation per Second

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

What did Joseph Marie Jacquard develop?

A

Programmable textile loom
1801
Using punched cards to create patterns

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

How would you program the early bsuiness machines?

A

Using control panel, move plugs/wires around, could take weeks

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

What is the design called when you store instructions and data in memory?

A

Von Neuman Architecture

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

What was the first Von Neumann Architecture machine?

A

Baby
Univeristy of Manchester
1948

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

How would instructions and data be programmed into memory?

A

Using Punch Cards
(well into the 80’s)

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

What was the first home computer and how was it used?
Which year?

A

Altair 8800
1975
Using switches to load it with instructions and data

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

What is machine code?

A

instructions and data given to computer in binary (0’s and 1’s) that the circuits can directly deal with
Think Altair 8800

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

What is assembly code?

A

Layer of abstraction, now you can write text to represent intstuctions and data e.g. “Load_A 15”
One to one mapping to assembly code

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

What was the next level of abstraction after assembly code?

A

Compiler
One line could translate into many lines of machine code
Generally 20x shorter than assembly code
With a small computational inefficiency added

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

Who came up with the concept of a compiler?

A

Dr Grace Hopper
1952
A0 language

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

What was the first programming language that gained traction and who invented it?

A

Fortran
1957
Dr John Backus for IBM

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

What came after Fortran?

A

COBOL
1959
That could be written once and then run on any machine (once compiled)

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

Where does “algorithm” come from?

A

Al Khwarizmi
780-850
One of the founders of algebra

64
Q

What episode started off the use of microelectronics in bomb warfare?

A

1972 bombing of Thanh Hoa Bridge in Vietnam
Previously tried 638 times without success
Using Texas Instruments chips inside it was now able to precisely hit the target (Paveway laser-guided bomb)

65
Q

Who was Taiwan’s first dictator?

A

Chian Kai-shek

66
Q

What happened in the 70’s with the global manufacture of semiconductors?

A

American firms set up chip plants in Taiwan, Singapore, Malaysia, etc.
Creating a strong US and South East Asia alliance
Shielded these countries agains the domino effect of communism after US pulled out of Vietnam in 1975

67
Q

When was Intel founded and by whom?

A

1968
Bob Noyce and Gordon Moore
(They left Fairchild b/c of lack of stock options and meddling from NYC HQ)

68
Q

What was Intel’s first product?

A

DRAM
Dynamic random access memory chip
(1970)

69
Q

What was Intel’s first big breakthrough product?

A

Processor chip 4004
A programmable computer

70
Q

What’s a Turing Machine?

A
  • Theoretical model of a computer
  • Infinitely long memory tape
  • State variable and rules (based on state and what it’s ruling)
  • It can change state, move read/write head left or right
  • This gives us a general purpose computer
71
Q

What does CAPTCHA stand for?

A

Completely Automated Public Turing test to tell Computers and Humans Apart

72
Q

How many lines of code does MS Office have?

A

around 40 million

73
Q

What is object oriented programming?

A

An object can contain other objects, functions, and variables
Think of a car program
Object is car
Which contains other objects like engine, wheels, doors
The engine object conatins nested objects, functions and variables
Programmer can navigate down the hierarchy such as “Car.Engine.CruiseControl.setCruiseSpeed(55)” - this calls the relevant function
the aim is to package simple/small things into increasing levels of complexity - “abstraction”

74
Q

What’s the difference between Public and Private functions?

A

Public funcitons can be called from without the Object, e.g the CruiseControl team can call SetRPM which is contained within the ignition Object

Private functions can only be called from within the Object. E.g. SetRPM within the Ignition Object can only be called within that Object. The CruiseControl team cannot access it

75
Q

How much time do developers spend on debugging/testing?

A

70-80%

76
Q

What was the first task of the operating system?

A

Helping to
load programgs (which were done by hand)
It could “batch process”

77
Q

What was the first computer to allow for multi-tasking?

A

Atlas
Manchester University
1962
It did this through scheduling

78
Q

What was Unix?

A

An early operating system
In the 1970’s
Separated a lean “kernel” (for multi-tasking, virtual memory, dealing with I/O,…) and an additional part for useful tools
Instead of lots of error checking, there was a kernel panic routine that crashes the machine
One of the most popular OS’s throughout ’70s and ’80s

79
Q

What was Microsoft’s first OS?

A

MS DOS (Disc Operating System)
1981

80
Q

What was the original computer storage?

A

Punch cards

81
Q

What was the largest program ever punched onto cards?

A

SAGE 1958 military defense system
62,500 punch cards (5Mb of data - a smartphone photo)

82
Q

What was an early form of memory?

A

EDVAC
delay line memory - sending pulses through mercury
1949
Stored program computers

83
Q

What took over in mid 1950’s for memory?

A

magnetic core memory
donut rings that can be read/written

84
Q

What popular memory technique was there in the 50s and 60s?

A

magnetic tape

85
Q

How much storage does my MacBook Air have?

A

245 GB

86
Q

what’s a solid state drive (SSD)? What’s benefit over HDD?

A

An SSD, or Solid State Drive, is a type of data storage device that uses integrated circuit assemblies to store data persistently, typically using flash memory.

It serves the same function as a hard disk drive (HDD), but SSDs are faster because they have no moving parts, which allows for quicker access times and data transfer rates.

87
Q

What’s size of photo on iPhone?

A

1-3Mb

88
Q

What are the two types of compression?

A

Lossless e.g. text, pics
Lossy e.g. audio, pics, video

89
Q

Who invented the typewriter?

A

Christopher Latham Sholes
the “literary piano”
1868
(where QWERTY comes from)

90
Q

What was the development of interfaces in the 60s and 70s?

A

Computer I/O controlled by Command Line Interface

First TeleType and later screens

91
Q

What are two types of screen technology?

A

CRT = cathode ray tube
LCD = liquid crystal display

92
Q

How would early screens function?

A

Grid of characters (in order to be memory efficient and not have to store the value of each pixel)

Or vector graphics

93
Q

What came after character grids and vector graphics?

A

Bitmap display - each pixel (or block of pixels) controlled by bits

94
Q

What was the first successfully commercial computer?

A

UNIVAC 1
More than 40 built (for government and large companies)
Early 1950s
E.g used for 1952 election to predict Eisenhower landslide

95
Q

Who was the first man in space?

A

Yuri Gagarin
1961

96
Q

What was Bill Gates and Paul Allens idea that they suggested to the maker of the Altair 8800?

A

They would develop an interpreter that allowed conversion of BASIC instructions to machine code.

97
Q

Who put together a personal computer using keyboard and screen in 1976?

A

Steve Wozniak
Led to Apple 1
Sold as a kit for hobbyists
1976

98
Q

What was the 1977 Trinity that sparked the rise of home computing? What did they come installed with?

A
  • Commodore Pet 2001
  • Apple II
  • TRS-80 Model I
    Installed with BASIC interpreters
99
Q

What was the first breakout app for personal computing?

A

1979
VisiCalc (originally released for Apple II)

100
Q

Who were the dirty dozen of IBM?

A

Twelve engineers who moved away from in-house development
Used partners for software and hardware
Intel chips, MS-DOS, open architecture, spurring innovation and ecosystem (IBM compatible) … in the 80s

101
Q

What were competing strategies for the personal computer market?

A

IBM - open architecture (“IBM compatible”)
Apple - closed

102
Q

What was first computer to offer a graphical user interface (as opposed to command line)?

A

Macintosh 1984

103
Q

Who designed sketch pad?

A

Ivan Sutherland (1962)

104
Q

Who invented the mouse?

A

1964
Englabert and English

105
Q

What was called the “mother of all demos”?

A

Douglas Engelbart
1968 demo of mouse, collaboartive working, multiple windows, bitmap graphics, word processing
Elements of modern computing
But ahead of its time

106
Q

Who invented the idea of a desktop with multiple windows and useful apps?

A

Xerox PARC
Bill English and team
Finished in 1973
WIMP interface - Windows Icons Menus Pointer

107
Q

What was wrong with Xerox Star?

A

early 1980’s
impressive GUI
but price tag equivalent of $200k for an office set up
sluggish sales
couldn’t compete with cheap IBMs

108
Q

Who was a beneficiary of Xerox’s pushing the envelope?

A

Steve Jobs at Apple
Inspired by Xerox’s intuitive approach and metaphors

109
Q

What came out in 1985 in the OS market?

A

Windows 1.0
(not as pretty as Mac OS but paved the way for domination - 95% market share within 10 years on PC’s)

110
Q

What was the point at which Microsoft radically improved its GUI?

A

Windows 95

111
Q

What is 3D projection?

A

Taking 3D coordinates (x,y,z) and projecting them onto a 2D plane (x,y) using WIREFRAME RENDERING
imagine taking a 3D model of a cube made from chopsticks and shining a light on it and seeing the projection onto a wall

112
Q

What are the two types of 3D projection

A

Orthogographic (parallel sides in cube appear parallel in projection)

Perspective projection (non parallel sides of cube as they converge)

113
Q

How are 3D objects rendered - using which shape?

A

triangles - simplest number of points to define a plane in space

114
Q

What’s anti-aliasing (in graphics)?

A

Pixels within polygon get stronger colour than those at the edges which are only partially in (look at text in a browser, close up)

115
Q

What are the main techniques for graphics rendering?

Name four

A

Scanline filling
Lighting
Anti-aliasing
Texture mapping

116
Q

Why are GPUs used?

A

They can do lots of calculations in parallel

117
Q

What was the sneakernet?

A

Physically taking a set of punch cards or magnetic tape from one side of the building to the other (rather than sending if over a network)

118
Q

The first networks arose in the 60s and 70s. they were…

A

LAN - local area networks e.g. for sharing a printer or storage

119
Q

The most widely used LAN is called what? explain how it works

A

Ethernet
Message sent across cable to all computers, it’s only read by the computer with the correct address (Media Access Control or Mac address)

120
Q

How do ethernets avoid collisions?

A

Try sending message again after waiting for a random brief pause

Uses exponential “backing off” time period

121
Q

What technique does the ehternet use to avoid collisions?

A

Divides up bigger network into smaller ones and then there’s a switch between them for instances when one side of the network needs to pass to another

122
Q

What is Circuit Switching in the context of networks?

A

creating a dedicated line between A and B e.g. early phone systems used this

But it’s inefficient

123
Q

What is message switching (in routing)?

A

You send message via various nodes - not necesarily a determined route like with postal service

124
Q

What approach does the internet take to routing data?

A

Packet switching
Chops up data into packets
These are all sent along different routes and reassembled on the other side

125
Q

What was the first internet?

A

ARPANET
Packet switching
Advanced Research Projects Agency
Early 1970s

126
Q

In your house what is your LAN?

A

all devices connected to your wifi router

127
Q

What’s the route of data flow across the internet?

A

From LAN
To WAN (from your ISP) for your city then maybe a bigger one
Then connecting to the backbone
Then coming off this to connec to the YouTube server
E.g. 10 hops - 4 hops up to the backbone, 2 hops along, 4 hops down

128
Q

What’s the difference between the internet protocols: UDP/IP and TCP/IP

A

UDP sends the packet with minimal additional information, such as port number and check-sum

TCP adds in much more - including sending back Acknowledgements, Number for sequencing,

129
Q

What’s the DNS?

A

Domain Name System
List that matches website names to IP addresses

130
Q

What are the layers of the internet?

A

Conceptual framework…
* Physical layer (wires or wifi)
* Data link layer (MAC addresses, collisions, back-off)
* Network layer (switching and routing)
* Transport layer (UDP and TCP protocols)
* Session layer (open a connection, close a session)

131
Q

Who created the first web browser and server?

A

Sir Tim Berners Lee in 1990
(whilst at CERN)

132
Q

In 1993 a web browser was developed in University of Ilinois allowing for dispaly of images as well as text. It was called…

A

Mosaic

133
Q

What was the precursor to Yahoo?

A

Jerry and Dave’s guide to the worldwide web (renamed to Yahoo in 94)

134
Q

What was the first web search engine?

A

Jump Station
1993
Jonathan Fletcher

135
Q

What was Google’s innovation?

A

To rank not based on number of mentions of the word, but on hyperlinks into there (gives it more authority based on backlinks))

136
Q

What is net neutrality?

A

idea that packets should all be treated with equal priority

137
Q

What are 3 aims of computer security?

A
  • Secrecy - avoid people seeing what they should not see
  • Integrity - only permitted people can access and modify system and data
  • Availability - programs and data are available when needed
138
Q

What are 3 types of authentication?

A

What you know
What you have
Who you are

139
Q

What are two pillars of keeping computers secure?

A

Authenticaion
Access Controls

140
Q

What’s the current standard of encryption?

A

Advanced Encryption Standard

trusted standard algorithm used by the United States government, as well as other organizations. Although extremely efficient in the 128-bit form, AES also uses 192- and 256-bit keys for very demanding encryption purposes

141
Q

What’s the name of the table that summarizes the success/failure rate of machine learning predictions?

A

Confusion matrix

142
Q

A branch of AI that doesn’t rely on classical statistics is …

A

Neural networks

143
Q

What are the 3 types of layers in the neural network?

A

Input
Hidden
Output

144
Q

What are two examples of deep learning successes (pre-OpenAI)?

A

Watson in 2011 winning Jeapordy
2016 Alpha Go success

145
Q

What is a kernel (coputer vision)?

A

Small matrix that is used to apply effects to images (blurring, sharpening etc.)

It works by sliding over each pixel and calculating a new value (based on values of neighbouring pixels, and pixel itself)

146
Q

A kernel applied across an image is also known as a (…)

A

convolution

147
Q

Using a series of layers in a neural network to define different types of kernels and process an image is called…

A

Convolutional Neural Network

148
Q

Using rules we can decode a sentence of words into a structured…

A

Parse Tree (identifying the differenet pars of speech: nouns, verbs, adverbs etc.)

149
Q

What chatbot was created in mid-60’s in MIT?

A

Eliza
(took on role of therapist)

150
Q

What was first speech recognition program?

A

Audrey
1952
Bell Labs
(could recognize all ten digits, spoken)

151
Q

Where does the term robot come from?

A

1920 play - artificial humanoid characters (from “robota”, peasants in compulsory service)

152
Q

What’s an android?

A

robot that looks and acts like a human

153
Q

Making items intutitive for the user so that they automatically know what to do with them is called…

A

Affordance

154
Q

a term that describes the “eerie sensation” one feels when they encounter a robot with human-like characteristics.

A

Uncanny valley

155
Q

What did Thomas Edison predict about books, in 1913?

A

That they will soon be obsolete in schools; every branch will be taught using the motion picture.

156
Q

What is the singularity?

A

Term by John Von Neumann
A point beyond which human affairs as we know them could not continue
(1950s)

157
Q

What are two axes in which you can divide jobs into?

A

Manual-Cognitive
Routine-Non Routine

Top right quadrant could be lawyer, doctor, teacher,… (40% of workforce)