it hardware Flashcards

1
Q

what are the main sections of the CPU?

A

the Control unit(CU) and the Arithmetic Logic Unit ( ALU)

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

what do the ALU and CU contain?

A

registers

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

what is the function of the CU?

A

it controls the execution of each instruction and sends read or write signals to memory and the address of the instruction to be fetched

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

what is the function of the ALU?

A

calculations and logical comparisons take place here. Once processed data results may be sent back to memory to be stored there.

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

what is the accumulator?

A

it is a register that stores the result of each execution.

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

what happens when data is stored?

A

its written from the accumulator to RAM.

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

what is the function of registers?

A

they store the current instruction and its data

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

what are registers made of?

A

static RAM or (SRAM)

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

why is SRAM so fast?

A

they do not contain capacitors. Which have to be constantly refreshed.

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

How many bits are in CPU registers?

A

32 or 64 bits

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

what is the difference between 32 bit processors and 64 bit processors.

A

32 bit processors have to process information in two stages where as 64 bit processors do so in one stage which improves their performance.

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

what does paralell processing do?

A

a method of simultaneously breaking up and running program instructions on multiple multiprocessors.

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

how does parallel processing work?

A

Each part is broken into its individual set of instructions and each instruction on a different processor or if a user is running different programs at the same time each program can be run on its own processor

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

how does hyperthreading work?

A

by duplicating registers on the chip the next instruction is preloaded into the second set of registers while the first set of registers is being processed reducing the time it took to switch between instructions

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

what does hyperthreading allow for?

A

hyperthreading makes it appear as if two sets of instructions are being executed at the same time.

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

what is a set of instructions called?

A

A thread

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

what is the entire program to be processed called?

A

A process.

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

what is a process state?

A

All values related to the process that are stored in the registers.

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

where is the data of the currently executing instruction saved?

A

In RAM

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

where is the state or data of the next process loaded?

A

from RAM to the registers

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

how does hyperthreading improve performance?

A

it allows for fast context switching between two processes eliminating the time of loading and saving into the registers each time there is a switch between processes.

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

what does a hyperthreaded CPU appear as in the Operating System?

A

two logical CPU where in actuality there is only one physical CPU with two sets of registers.

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

what is the important thing to remember about hyperthreading and Operating Systems?

A

Hyperthreading must be supported by the Operating System.

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

what is multiprocessing?

A

It is having multiple CPU called cores on a single CPU chip.

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

what does multiprocessing change from hyperthreading ?

A

it allows for multiple processes multiple to happen at the same time instead of appearing to happen at the same time.

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

what must support multiprocessing for it to be effective?

A

it must be supported by the motherboard and the operating system.

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

what effects the perfomance of the CPU?

A

The speed of the CPU and the register size.

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

what is the general rule of the CPU?

A

It should never stay idle.

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

what is between the CPU and RAM

A

cache memory

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

what is cache memory made of ?

A

SRAM which is faster than DRAM(Dynamic RAM which is normal RAM.

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

what does cache do?

A

stores blocks of program instructions and data that have been pre- fetched from RAM in hope that these instructions or data will be needed next by the CPU.

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

what is level one cache ?And how fast is it?

A

it is a small amount of memory built into the internal circuitry of the CPU. it is usually the same speed as the CPU’s internal speed.

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

what is level two cache, where is it and how fast is it?

A

it can be located on the CPU chip it is usually half the CPU speed and it is larger than level one

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

what is level two cache, where is it and how fast is it?

A

it can be located on the CPU chip slightly further away from the internal CPU circuits, L2 is usually slightly larger and usually slower access running at about half of the CPU’s internal speed.

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

where is level 3 cache located and how fast is it:?

A

it is on the motherboard closer to the CPU and RAM. It is larger and slower access than L! and L@

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

In which order does the CPU check cache before it checks RAM?

A

L1 then L2 and then L3 and finally RAM.

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

how is cache incorporated on modern CPU’s?

A

most modern CPU’s have built in L1 and L2 caches per core and share a single L3 cache on the motheboard while other designs have the L3 on the CPU die itself.

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

what is a cache hit and a cache miss?

A

This is when the requested data can be found in a cache while a cache miss occurs when it cannot.

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

how are cache hits served?

A

when the data is read from cache.

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

how does cache improve performance ?

A

when more requests can be served from the cache .

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

what does RAM do?

A

RAM stores the programs currently in use and the data associated with them.

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

what does RAM

do?

A

RAM stores the programs currently in use and the data associated with them.

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

what is the most common type of RAM?

A

Double Data Rate SDRAM

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

what does each DRAM chip contain?

A

a capacitor.

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

what does SDRAM stand for?

A

Synchronous Dynamic Read Access Memory.

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

What is synchronised with the CPU and why?

A

the refreshing of the RAM chips is synchronised with the CPU so that the CPU does not have to wait while refreshing takes place.

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

why does synchronising the CPU and the refreshing of the RAM improve performance?

A

The CPU is working at a very high frrequency and instructions can be fed to the CPU at a fast rate reducing the length of time that the CPU is idle.

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

what does Double Data Rate mean?

A

It means that data is tranferred twice as fast as when data was transferred only once every clock pulse.

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

what is latency?

A

its the time taken for a component to respond.

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

what is latency measured in?

A

clock ticks.

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

what are the different levels of memory?

A

level 0: registers
level 1 : on chip L1 cache(SRAM)
level 2:off chip L2 cache chip (SRAM)
level 3: main memory(DRAM)
level 4 local secondary storage(local disks)
level 5: remote secondary storage ( distributed file systems, Web servers)

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

what is the motherboard?

A

it is the central printed circuit board that connects components and devices to each other.

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

what connect components and devices?

A

busses

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

what are the slots on the motherboard for?

A

to connect devices like graphic cards and hard drives.

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

what is a system clock?

A

the clock refers to a microchip that regulates the timing and speed of all computer functions.

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

how does a system clock work?

A

there is a crystal that vibrates at a specific frequency when electricity is applied.

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

what is the shortest time any computer component can perform at?

A

one clock or one vibration of the clock chip.

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

what is overclocking?

A

this is the practice of making computer components run at speeds father than designed by manipulating the frequencies at which the component is set to run .

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

what are the two ways overclocking can be performed?

A

per component which means the CPU operates faster than the system clock by changing its own manipulation factor.
the whole system the system clock is increased affecting all components that detect the system clock and multiply by a factor.

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

what is clock multiplication?

A

increasing the clock multiplier

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

what is the danger of overclocking?

A

the components may run faster than the speed for which they were designed and tested causing them to become unstable or fail,

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

what is CPU speed measured in ?

A

GHz

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

what is RAM speed measured in?

A

MHz

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

what is the difference between speed and throughput?

A

speed is the maximum speed but due to latency the actual speed maybe be reduced which is called throughput.

65
Q

what is and FSB?

A

it was initially a parallel bus that connected all components on the motherboard but point to point serial connections replaced the FSB(front side Bus) now front side buses usually connect the CPU and RAM.

66
Q

what is the Data Bus?

A

the data bus transfers the actual instruction or data between the CPU and RAM.

67
Q

what makes data buses faster?

A

a wider bus

68
Q

what dictates register size

A

the number of bits that the data bus can deliver to the CPU.

69
Q

what does register size indicate?

A

how much information the processor can operate on at one time and how it moves data around internally within the chip.

70
Q

what does the addreess bus do ?

A

It transfers the physical address of the instruction or data between the CPU and RAM.

71
Q

what does the control bus do?

A

it carries commands between the CPU and RAM

72
Q

what is PCI Express and what is it used for?

A

PCI express slots are used to connect graphics cards, RAID cards, WIFI cards or SSD’s tto the motherboard.;

73
Q

what is SATA and what does it do?

A

SATA(Serial Advanced Technology Attachment ) is a computer bus interface used to connect mass storage devices such as hard drives to a computer motherboard

74
Q

what has SATA been replaced with

A

Parallel ATA and IDE standards

75
Q

what is USB and what does it do?

A

Universal Serial Bus technology was designed to standardise the connection of just about any peripherals to computers both to communicate and to supply electric power.

76
Q

what is non-volatile memory express and what does it do?

A

NVMe is computer communication bus interface that connects SSDs to the motherboard. The bus allows SSDs to read/write at a much higher speed than via a SATA communication bus.

77
Q

what was M.2 Format made for?

A

it was designed for manufacturers to install a variety of high-speed devices that require very little power in small spaces.

78
Q

what are examples of M.2 cards?

A

Wi-Fi and Bluetooth radios and SSDs.

79
Q

how does cloud storage work?

A

the computer is connected to remote storage using the internet.

80
Q

what is disk cache ?

A

It is a hardware mechanism for improving the time it takes to read from or write to a hard disk.

81
Q

what is browser cache?

A

every time a website is accessed a copy of the website is kept in the browser cache on your local hard disk.

82
Q

what does web cache do?

A

also known as proxy server cache stores the recently accessed webpages on a server in a network.

83
Q

what is the main difference between web cache and browser cache?

A

while browser caches are usually private being restricted to indivivual users a web cache is a shared store of previously downloaded web pages, images etc. on a server of an organisation. if anyone on the network tries to access a site that has been previously accessed the site will be delivered from the organisatoins’ server not from the remote web server.

84
Q

why is web cache convenient?

A

the site in the web cache may not be the latest version but loading sites from the organisation’s server is much quicker and reduces overall network traffic.

85
Q

how does web cache work ?

A

when the first request to the web page by a user in a network will access the Internet and store a copy in the proxy server’s cache. The web page will be sent to the user’s local computer and is stored in the user’s browser cache.if someone else in the organisation requests the same web page then the request will be fulfilled by the proxy server without accessing the Internet and the web page is sent to the second user’s computer where the page is again cached on their local browser cache.

86
Q

what is the difference between the onboard controller and expansion card ?

A

onboard is a term used to describe a hardware component embeded into a circuit board it oftens refers to a device like a sound card, network card or adapteer intergrated onto the motherboard unlike expansion cards users cannot remove these components from their computer/

87
Q

what is the drawback of onboard controllers and how is it made up for ?

A

It contradicts the principle of modularity as they cannot be removed and replaced however if an onboard controller fails a replacement card can attached to a motherboard slot or a USB port

88
Q

which is better an expansion card or an onboard controller

A

the expansion card that is plugged on to a slot on the motherboard will usually provide better functionality than the onboard counterpart

89
Q

how does a Raspberry Pi work

A

on the basis that there are some onboard controllers but most of the peripherals must connect exterrnally using the USB ports

90
Q

what is a co-processor

A

an “assistant” to the CPU by taking over the burden of some of the processing

91
Q

how do the CPU and the co-processor work together

A

the CPU and co-processor process in paprallel speeding up data processing

92
Q

what are ths most common co-processors

A

graphics and maths

93
Q

how is a pixel represented

A

in 24 bits(8 red,8 green and 8 blue=RGB) and needs to be set to a certain colour to create an image which is refresehd at about 60 times per second

94
Q

how are graphics processed

A

by the CPU or by a graphics card

95
Q

what is the GPU

A

a co-processor that accerlerates applications running on the CPU by off loading the complex mathematical and geometric calculations necessary for graphics rendering

96
Q

how does GPU optimise performance

A

from a user’s perspective the application runs faster because of the massive parallel processing power of the GPU boosting performance

97
Q

what are the four main components of a graphics card

A

a motherboard connectino for data and power
a processor to render each pixel on the screen
memory to store details about each pixel and to store completed pictures temporarliy
a monitor connection to view the images

98
Q

what is the most important component of the graphics card.

A

the GPU with many cores to process in parallel

99
Q

what is VRAM

A

stores data about each pixel, its colour and location on the screen. faster VRAM can improve the performance of graphics card provided the GPU is sufficiently powerful.

100
Q

what do modern day graphics cards use

A

PCI Express x 16 connector to connect to the motherboard

101
Q

what do intergrated graphics serve as

A

more than adequate as opposed to a serparate graphics card who require more realisitcy images

102
Q

what are Intergrated Graphics

A

instead of a separate GPU the GPU is embedded into the CPU and instead of seperate VRAM the GPU chares system RAM

103
Q

what are the advantages of intergrated graphics

A

the cost it makes the computer or laptop more affordable and theres less head and less power user this can result in longer batter life in mobile devices

104
Q

what does the Maths co-processor

A

it can help the ALU of the CPU process complex calculations using numberic data

105
Q

what is numeric data

A

it is either an integer where the decimal point is fixed or a real number where the decimal point can be anywhere

106
Q

what are real numbers called

A

floating point numbers

107
Q

why are co-processors designed to perform floating point calculations extremely quickly

A

it co-exists with the CPU on the motherboard whenever a floating point calculation needs to be done the CPU hands the calculation to the co-processor and carries on with another task until the answer is produced

108
Q

what is the acvantage of a maths co-processor

A

that calculations are processed faster improving performance

109
Q

what are the disadvantages of a math co-processor

A

the cost of the additional co-processor the required motherboard space and greater power consumption of the second co-processor
the math co-processor was an optinoal add-on for earlier processors but now all processors are realesed with a math co-processor incorporated onto the CPU

110
Q

what factors determine overall RAM speed

A

frequency affects maximum bandwidth which is how much data can trable to and from RAM at a time . Latency affects how quickly RAM can respond to a request the optimum is to have the highest possible frequency coupled with the lowest possible latency

111
Q

how does virtual memory affect RAM

A

increasing RAM is a better optin to reduce the need for virtual memory the operating system will automatically manage the amountin of allocated virtual memory but you can change these settings

112
Q

what is the data that is stored in virtual memory on your secondary storage device called

A

a paging file

113
Q

explain internal busses

A

they are known as local buses because they are on the motherboard and an intergral part of the processing capailities of the computer

114
Q

how does bus size impact processing speed

A

the larger the bus the greater tha ability to carry more data in the same amount of time

115
Q

compare internal and external buses

A

external buses are much slower than internal buses

116
Q

explain usb standards

A

when you buy a USB device the highest standard that the device requires will be specified meaning the cable and the device must all comply with the required USB standard for it to run at the desired specification

117
Q

give a description of usb type a

A

the familiar rectangular port usually the host device meaning it provides exlectricity and controls the data transfers to attached device

118
Q

give a description of usb type b

A

often used for external hard drives and printers commonly found on portable devices with mini type b being replaced by micro type b USB

119
Q

give a description of usb Micro B

A

before type was designed to carry data and power in Usb SuperSpeed applications

120
Q

give a description of type c

A

similar size to micro USB connections and allows charging with bidirectional power

121
Q

give a description of USB On The Go

A

Usb OTG allows mobile devices to act as Usb hosts

122
Q

what were HDMI and DisplayPort create for

A

quality digital video and audio signals

123
Q

what is the difference between HDMI and DisplayPort

A

DisplayPort cables can achieve higher bandwidth than HDMI cables.
supports multiple monitors with a single cable using daisy chaining. instead of having multiple cables plugged into the source computer a multi-display setup can be created.

124
Q

what are the differences between thunderbolt 3 and USB-C

A
SPeed
thunderbolt 3 :up to 40Gb/s
USB-C: Up to 10Gb/s 
Display 
Thunderbolt 3: Two 4k displays or one 5k display 
USB-C:one 4k display
Expansion 
thunderbolt 3 
up to 6 devices
USB On-The-Go 
USB OTG allows mobile devices to act as USB hosts
125
Q

what do HDMI and DisplayPort allow for

A

they carry High Definition quality digital video and audio signals

126
Q

why are DisplayPort cables better than HDMI

A

DisplayPort cables can achieve higher bandwidth than HDMI cables
DisplayPort supports multiple monitors with a single cable by using daisy chaining.

127
Q

what is daisy chaining

A

A user can plug one DisplayPort cable into a monitor link the first monitor to the second monitor using a DisplayPort cable and then a third monitor is linked to the secnod monitor and so on

128
Q

what is the disadvantage of a multi-display setup

A

the monitors need to support this feature and it is usually found on high-end monitors

129
Q

what is the difference between THunderbolt 3 and USB-C

A
THunderbolt 3 :
speed= up to 40Gb/s
display=Two 4K displays or one 5k display 
Device compatibility= 
USB-C devices 
Legacy USB s.x/2.x devices using adpater with speed limited to device capabilities 
Expansion= Daisy-chain up to 6 devices 
USB-C:
speed = Up to 10GB/s 
display =One 4k Display 
Device Compatibility= USB-C devices 
Legacy USB s.x/2.x devices using adapter with speed limited to device capabilities 
Expansion =can only connect one device
130
Q

why is secondary storage important

A

At the high-end of processing a faster HDD or SSd will signigicantly improve the ability of the processing components to access the data on secondary storage as quickly as possible

131
Q

give a comparison of SSD VS HDD

A

SSDs have no moving mechanical components
HDDS contain spinning disks and movable read/write heads
compared with electromechanical drives SSDs are typically more resistant to physical shock, sun silently, have quicker access time and lower latency
SSDs are still more expensive per unit of storage than HDDs
SSDs take around three times less boot up time than HDDs
SSDs consume less power also averagingn about three times less thatn that of an HDD

132
Q

what is M.2

A

It is a form factor it describes the shape and size of a hardware device. The M.2 connector can access the PCI-express 3.0 SATA 3.0 and USB 3.0 bus depending on the type of M.2 device/

133
Q

what are M.2 SSDs

A

they are small drives connected directly to an M.2 socket on the motherboard as opposed to SATA based drives that use cables to connect to the motherboard and provide power.

134
Q

what does the innovative lack of cables make M.2 drives ideal for

A

Small Form Factor(SFF) systems that have little room for cable routing.

135
Q

what are the two main type of M.2 SSDs

A

the first uses the PCIe bus and those that use the SATA bus

136
Q

what is the difference between SATA and M.2

A

they are both SSds but with different sizes and connectors.M.2 is a small form fact and SATA is a bus tupe. SATA SSDs come in two form facts.M.2 has SSDs has the same performance as their 2.5 inch counterparts and plug directly into the motherboard eliminating the need for cables

137
Q

what is NVMe

A

Non-Volatile Memory express

138
Q

how does NVMe connect

A

it connects via PCI-Express

139
Q

what do NVMe SSDs produce

A

a significant increase in speed over SATA SSDs by upgrading a mechnical hard drive to an SSD increases performance in tasks from boot speeds to file load speeds however upgrading to an NVME SSD will produce even more significant performance gains.

140
Q

how do you achieve higher speeds from NVMe SSD

A

to achieve these speeds from your NVMe SSD make sure your NVMe SSD make sure your operating system is installed on the SSd drive together with frequently used programs games and data

141
Q

explain SATA SSDs

A

SATA is an older technology found in desktop and laptop PCs. SATA drives require a SATA power cable as well as a separate SATA data cable unlesss you are using an M.2 SATA based SSD

142
Q

what are common SATA devices

A

they include 2.5 inch SSDs, 3,5 inch mechanical hard drives and 5.25 inch optical /Blu-ray drives

143
Q

laptop or Desktop PC (entry level )example specifications

A

Caleron processor (2 to 2.6 GHz); 4GB RAM; 500 GB hard Drive; HD Graphics card

144
Q

laptop or Desktop PC(mid-level ) example specs

A

I3(usually 2 cores may be 4)

2 to 3 GHz Processor;4,6 or 8GB RAM; 1TB HDD or up to 512GB SSD; UHd graphics card

145
Q

Laptop or Desktop PC (high level)

A

I5(4 to 6 cores);
2.4 to 3.4 GHz Processor; 8GB RAM ; 1 to 2TB
HDD to 256 to 480 GB SSD; GPU
I7(4 to 8cores); 3.2 GHz Processor; 8 GB RAM; 1 to 2 TB
HDD to 480GB SSD; GPU

146
Q

server computer example specifications

A

a server is a powerful computer that provides “services to other computers in a network such as sharing data or performing computations Servers .Servers are also used as Domain Controllers for users and devices/ To work with multiple clients simultaniously the processing speed cache and RAM need to be very high. Very large secondary storage is required

147
Q

what is the purpose of wearable technology

A

smart wear are wron near to or on the skin their purpose is to detect analyse and transmt information about the user such as vital signs and environmental data which can provide immediate biological feedback to the user

148
Q

explain smart watches

A

smart watches are worn like a regular wristwatch and connect to a user’s smartphone via BlueTooth to notify them about phone calls, text messages emails and social media. Many can provice health and fitness data by monitoring and tracking the user’s heart rate record the number of stped taken daily and the number of calories burned

149
Q

explain smart clothing

A

are any technologically enhanced clothing items that add funtionality beyoung that of the traditional use. some have interwoven or printed circuitry in the textiles or use sensors, haptics and extra hardware to provide smart functionality

150
Q

what are Head-Mounted Displays

A

A Head-Mounted Display is worn on the head or is embedded in a helmet with a small display for one or both eyes and is used in gaming, aviation,engineering and medicine.

151
Q

what is Augmented Reality

A

it creates and effect of digital content interaction with the world by overlaying projected images on top of a pair of see-through glasses

152
Q

what is Virtual Reality

A

increases user participation bringing the user into a complete different virtual world

153
Q

what are immplatntable smart devices

A

Implatntable smart devices are surgically implanted below the skin and carried with a person wherever they go

154
Q

what does a single screen mean

A

that the app should be self-sufficient the task performed by the user should be easy to complete in a sigle app or on a single website users should not need to leave an app to find information that the app needs but does not provide

155
Q

what do touchscreen give users

A

an alternate User Interface that can make the interation with the device more flud and efficient

156
Q

what is a problem with touch screen

A

the most significant problem of a touch screen is related to typing on a soft keyboard, users need to continuously focus on the content they are typing and the kepad area. keypads are small and key are crowded

157
Q

what is a CPU chip designed for and how are they created and describe them

A

portable devices the CPU is housed in a smaller chip package and generates less heat. It uses lower voltages and can be throttled down to different power levels of sections of the chip can be turned off entirely when not in use.

158
Q

what affects battery life in mobile devices

A

the size of the screen, the brightness of the screen and the resolution of the screen are factors that affect the battery life connections like Bluetooth, Wi-Fi, locations and data drain battery weak signal as well

159
Q

how are mobile devices energy efficient

A

they are designed to run on a battery for a long period of time the most power intensive tasks are the display, the processor, maintaining the connections location services and writing to memory