Written by students who passed Immediately available after payment Read online or as PDF Wrong document? Swap it for free 4.6 TrustPilot
logo-home
Exam (elaborations)

Computer Architecture C952 correctly answered to pass

Rating
-
Sold
-
Pages
43
Grade
A+
Uploaded on
22-06-2024
Written in
2023/2024

Computer Architecture C952 correctly answered to pass information revolution Computers have led to a third revolution for civilization, with the information revolution taking its place alongside the agricultural and the industrial revolutions. Personal computer A computer designed for use by an individual, usually incorporating a graphics display, a keyboard, and a mouse. Server A computer used for running larger programs for multiple users, often simultaneously, and typically accessed only via a network. Supercomputer A class of computers with the highest performance and cost; they are configured as servers and typically cost tens to hundreds of millions of dollars. Embedded computer A computer inside another device used for running one predetermined application or collection of software. processor cores. Many embedded processors are designed using processor cores, a version of a processor written in a hardware description language, such as Verilog or VHDL. Personal mobile devices (PMDs) are small wireless devices to connect to the Internet; they rely on batteries for power, and software is installed by downloading apps. Conventional examples are smart phones and tablets. Warehouse Scale Computers Taking over from the conventional server is Cloud Computing, which relies upon giant datacenters that are now known as Warehouse Scale Computers (WSCs). Cloud computing refers to large collections of servers that provide services over the Internet; some providers rent dynamically varying numbers of servers as a utility. Software as a Service (SaaS) delivers software and data as a service over the Internet, usually via a thin program such as a browser that runs on local client devices, instead of binary code that must be installed, and runs wholly on that device. Examples include web search and social networking. Multicore microprocessor A microprocessor containing multiple processors ("cores") in a single integrated circuit. Acronym A word constructed by taking the initial letters of a string of words. For example: RAM is an acronym for Random Access Memory, and CPU is an acronym for Central Processing Unit. Terabyte (TB) Originally 1,099,511,627,776 (240) bytes, although communications and secondary storage systems developers started using the term to mean 1,000,000,000,000 (1012) bytes. tebibyte (TiB) To reduce confusion, we now use the term tebibyte (TiB) for 240 bytes, defining terabyte (TB) to mean 1012 bytes. Moore's Law states that integrated circuit resources double every 18-24 months. abstractions A major productivity technique for hardware and software is to use abstractions to characterize the design at different levels of representation; lower-level details are hidden to offer a simpler model at higher levels. common case Making the common case fast will tend to enhance performance better than optimizing the rare case. parallel Since the dawn of computing

Show more Read less
Institution
Course

Content preview

Computer Architecture C952 correctly
answered to pass
information revolution
Computers have led to a third revolution for civilization, with the information revolution taking its
place alongside the agricultural and the industrial revolutions.


Personal computer
A computer designed for use by an individual, usually incorporating a graphics display, a keyboard,
and a mouse.


Server
A computer used for running larger programs for multiple users, often simultaneously, and typically
accessed only via a network.


Supercomputer
A class of computers with the highest performance and cost; they are configured as servers and
typically cost tens to hundreds of millions of dollars.


Embedded computer
A computer inside another device used for running one predetermined application or collection of
software.


processor cores. Many embedded processors are designed using processor cores, a version of a
processor written in a hardware description language, such as Verilog or VHDL.


Personal mobile devices (PMDs)
are small wireless devices to connect to the Internet; they rely on batteries for power, and software is
installed by downloading apps. Conventional examples are smart phones and tablets.


Warehouse Scale Computers
Taking over from the conventional server is Cloud Computing, which relies upon giant datacenters
that are now known as Warehouse Scale Computers (WSCs).


Cloud computing
refers to large collections of servers that provide services over the Internet; some providers rent
dynamically varying numbers of servers as a utility.


Software as a Service (SaaS)
delivers software and data as a service over the Internet, usually via a thin program such as a browser
that runs on local client devices, instead of binary code that must be installed, and runs wholly on that
device. Examples include web search and social networking.


Multicore microprocessor
A microprocessor containing multiple processors ("cores") in a single integrated circuit.

,Acronym
A word constructed by taking the initial letters of a string of words. For example: RAM is an acronym
for Random Access Memory, and CPU is an acronym for Central Processing Unit.


Terabyte (TB)
Originally 1,099,511,627,776 (240) bytes, although communications and secondary storage systems
developers started using the term to mean 1,000,000,000,000 (1012) bytes.


tebibyte (TiB)
To reduce confusion, we now use the term tebibyte (TiB) for 240 bytes, defining terabyte (TB) to
mean 1012 bytes.


Moore's Law
states that integrated circuit resources double every 18-24 months.


abstractions
A major productivity technique for hardware and software is to use abstractions to characterize the
design at different levels of representation; lower-level details are hidden to offer a simpler model at
higher levels.


common case
Making the common case fast will tend to enhance performance better than optimizing the rare case.


parallel
Since the dawn of computing, computer architects have offered designs that get more performance
by computing operations in parallel.


pipelining
A particular pattern of parallelism is so prevalent in computer architecture that it merits its own
name: pipelining, which moves multiple operations through hardware units that each do a piece of an
operation, akin to water owing through a pipeline.


prediction
The idea of prediction is that, in some cases it can be faster on average to guess and start working
rather than wait until you know for sure, assuming that the mechanism to recover from a
misprediction is not too expensive and your prediction is relatively accurate.


hierarchy of memory
Architects have found that they can address conflicting demands of fast, large, and cheap memory
with a hierarchy of memories, with the fastest, smallest, and most expensive memory per bit at the
top of the hierarchy and the slowest, largest, and cheapest per bit at the bottom.


dependable
Since any physical device can fail, we make systems dependable by including redundant components
that can take over when a failure occurs and to help detect failures.

,Systems software
Software that provides services that are commonly useful, including operating systems, compilers,
loaders, and assemblers.


Operating system
Supervising program that manages the resources of a computer for the benefit of the programs that
run on that computer.


Compiler
A program that translates high-level language statements into assembly language statements.


binary numbers
The two symbols for these two letters are the numbers 0 and 1, and we commonly think of the
computer language as numbers in base 2, or binary numbers.


Binary digit
Also called a bit. One of the two numbers in base 2 (0 or 1) that are the components of information.


Assembler
A program that translates a symbolic version of instructions into the binary version.


Assembly language
A symbolic representation of machine instructions.


Machine language
A binary representation of machine instructions.


High-level programming language
A portable language such as C, C++, Java, or Visual Basic that is composed of words and algebraic
notation that can be translated by a compiler into assembly language.


Input device
A mechanism through which the computer is fed information, such as a keyboard.


Output device
A mechanism that conveys the result of a computation to a user, such as a display, or to another
computer.


Liquid crystal display
A display technology using a thin layer of liquid polymers that can be used to transmit or block light
according to whether a charge is applied.


Active matrix display
A liquid crystal display using a transistor to control the transmission of light at each individual pixel.

, bit map
The image is composed of a matrix of picture elements, or pixels, which can be represented as a
matrix of bits, called a bit map.


Pixel
The smallest individual picture element. Screens are composed of hundreds of thousands to millions
of pixels, organized in a matrix


frame buffer
The computer hardware support for graphics consists mainly of a raster refresh buffer, or frame
buffer, to store the bit map.


Integrated circuit
Also called a chip. A device combining dozens to millions of transistors.


Central processor unit (CPU)
Also called processor. The active part of the computer, which contains the datapath and control and
which adds numbers, tests numbers, signals I/O devices to activate, and so on.


Datapath
The component of the processor that performs arithmetic operations.


information revolution
Computers have led to a third revolution for civilization, with the information revolution taking its
place alongside the agricultural and the industrial revolutions.


Personal computer
A computer designed for use by an individual, usually incorporating a graphics display, a keyboard,
and a mouse.


Server
A computer used for running larger programs for multiple users, often simultaneously, and typically
accessed only via a network.


Supercomputer
A class of computers with the highest performance and cost; they are congured as servers and
typically cost tens to hundreds of millions of dollars.


Embedded computer
A computer inside another device used for running one predetermined application or collection of
software.


processor cores
Many embedded processors are designed using processor cores, a version of a processor written in a
hardware description language, such as Verilog or VHDL.

Written for

Course

Document information

Uploaded on
June 22, 2024
Number of pages
43
Written in
2023/2024
Type
Exam (elaborations)
Contains
Questions & answers

Subjects

$11.59
Get access to the full document:

Wrong document? Swap it for free Within 14 days of purchase and before downloading, you can choose a different document. You can simply spend the amount again.
Written by students who passed
Immediately available after payment
Read online or as PDF

Get to know the seller

Seller avatar
Reputation scores are based on the amount of documents a seller has sold for a fee and the reviews they have received for those documents. There are three levels: Bronze, Silver and Gold. The better the reputation, the more your can rely on the quality of the sellers work.
EXAMSMART Howard Community College
Follow You need to be logged in order to follow users or courses
Sold
10
Member since
2 year
Number of followers
2
Documents
2992
Last sold
1 month ago
SMART.SCORES

On this page, you find all documents, package deals, and flashcards offered by seller LectJoshua.

5.0

2 reviews

5
2
4
0
3
0
2
0
1
0

Recently viewed by you

Why students choose Stuvia

Created by fellow students, verified by reviews

Quality you can trust: written by students who passed their tests and reviewed by others who've used these notes.

Didn't get what you expected? Choose another document

No worries! You can instantly pick a different document that better fits what you're looking for.

Pay as you like, start learning right away

No subscription, no commitments. Pay the way you're used to via credit card and download your PDF document instantly.

Student with book image

“Bought, downloaded, and aced it. It really can be that simple.”

Alisha Student

Working on your references?

Create accurate citations in APA, MLA and Harvard with our free citation generator.

Working on your references?

Frequently asked questions