100% satisfaction guarantee Immediately available after payment Both online and in PDF No strings attached 4.2 TrustPilot
logo-home
Exam (elaborations)

A level Physics Paper 2

Rating
-
Sold
-
Pages
12
Grade
A+
Uploaded on
12-09-2023
Written in
2023/2024

Hooke's Law>>> ∆F = k∆x where k is the stiffness of the object Stress>>> σ=F/A where F is force and A is cross sectional area Strain>>> ε=∆x/x where x is the original length of the material and ∆x is the extension Young Modulus>>> Stress/Strain Tensile stress/strain>>> Causes the length of the material to increase, the forces act away from the center Compressive stress/strain>>> Causes the length of the material to decrease, the forces act towards the center Force Extension graph>>> Stress strain graph>>> Stress Strain Graphs for Different Materials>>> Stiffer materials have a steeper gradient. Stronger materials have a large breaking stress Brittle materials have a very small plastic regions Stress Strain Graph for Rubber>>> Limit of Proportionality>>> *The point until which force and extension (or stress and strain) are directly proportional. After this point it may behave elastically, but they will no longer be proportional* Elastic Limit>>> *The point beyond which the material is permanently deformed, it won't return to it's original shape* Yield Point>>> *Beyond this point the material suddenly undergoes a large increase in extension (it 'gives') as the atomic substructure is rearranged* Breaking stress>>> *The value of stress in a material when it breaks* Elastic Deformation>>> *Region where the material will return to its original shape when the stress is removed* Plastic Deformation>>> *Permanent deformation caused by strain when stress exceeds a certain value. The material won't return to it's original shape.* Elastic Strain Energy>>> ∆E(el) = F∆x As this is the area under a force extension graph. What does it mean for a material to be hard?>>> *It is resistant to indentation or scratching* What does it mean for a material to be stiff?>>> *It has a large young modulus and so can withstand a large load with just a small extension* What does it mean for a material to have a high tensile stress?>>> *It can withstand a large force under tension before breaking* What does it mean for a material to be ductile?>>> *Can be drawn out into wires as it undergoes a lot of plastic deformation* What does it mean for a material to be brittle?>>> *Shatters under a sudden force as it cracks with little or no plastic deformation just beyond the elastic limit due to the propagation of the cracks* Density>>> Density = Mass/volume Upthrust>>> Due to Archemides' principle, upthrust is equal to the the weight of the fluid displaced. This can be found if you know the density of the fluid and the volume of the object Floating>>> If an object is floating, then the weight of the fluid displaced = the weight of the object Hydrometer>>> A hydrometer is an instrument for measuring the density of liquids. The inner (solid) part of the hydrometer has a constant mass and so in different liquids it will float to different extents Laminar flow>>> -Layers are parallel to each other (don't mix) -No abrupt changes in direction -Fluid has a small velocity Turbulent flow>>> -Layers mix -Fluids move at a high velocity -Abrupt changes in speed and direction -Eddies Viscosity>>> The resistance of a fluid to flowing

Show more Read less









Whoops! We can’t load your doc right now. Try again or contact support.

Document information

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

Subjects

Content preview

OCR A-Level Computer Science paper 1
terms


1 Dimensional Arrays>>> A standard list array - one index is needed to search for something in
an array.
2 Dimensional Arrays>>> An array with 2 indexes needed to search - for example a table could
be this.
Interception of PseudoCode>>> The ability to pick out and explain parts of code.
Big O'>>> A measure of complexity within a piece of code.
Recursion>>> The process of looping, calling itself in looping.
Functions>>> A decomposed part of code that has a specific job to output or return something
Iteration>>> Repeating some part of code over and over
Subroutine>>> A decomposed part of problem that *does something*
Data Mining>>> The process of collecting data on user habits or requests
Binary Search>>> A search algorithm that includes comparing the midpoint of an array
iteratively.
Insertion Sort>>> A sorting algorithm that includes going through an array iteratively comparing
each value to every value before that value.
Bubble Sort>>> Moving through a list, it compared two elements and moves on, moving through
the array repeatedly.
Quick Sort>>>
Merge Sort>>>
Global Variable>>>
Local Variable>>>
Dijkstra's Algorithm>>>
Travelling Salesman Algorithm>>>
Decomposition>>>
Graph Tree>>>
Heuristic>>>
Pipelining>>>
Stack>>>
ALU (Arithmetic Logic Unit)>>> The part of the CPU where data is processed and manipulated.
Usually arithmetic or logical operations. Allows for decisions to be made.
Control Unit>>> The part of the CPU that manages the execution of instructions. The control
unit fetches an instruction, and decodes it before executing it by sending 'control signals' to other
parts of the computer.
Register>>> Tiny stores of extremely fast memory located in the CPU, normally designed for
where data or control information is stored temporarily when execution is taking place.
Program Counter (PC)>>> A register in the control unit which holds the address of the next
instruction to be executed. When each program is executed, this number goes up by 1 to signify
the next 'fetch' to be at this address in the RAM.

, Accumulator (ACC)>>> A special register within the Arithmetic Unit. It is used to hold the data
currently being processed by the CPU. Any data to be processed is stored temporarily in the
accumulator.
Memory Address Register (MAR)>>> A register in the CPU that stores the address of the
memory location currently in use. In the fetch phase, this would be the address of an instruction;
in the execute phase, it would be the address of the data being used.
Memory Data Register (MDR)>>> Used to temporarily store data loaded into the CPU, or
written to memory locations. All transfers from memory locations to the CPU go via the Memory
Data Register.
Current Instruction Register (CIR)>>> A register in the control unit that stores the instruction
type of the next instruction to be carried out by the processor. For example, this could contain the
number 3, which in LMC is a 'store' function.
Buses>>> A common physical pathway for signals to travel to and from several components of a
computer.
Data Bus>>> Transfers the data from memory location specified by MAR.
Address Bus>>> The part of the bus which carries information about where the data is being
sent.
Control Bus>>> This bus carries command and control signals to and from every other
component of a computer.
Fetch>>> Decode-Execute - The complete process of retrieving an instruction from a memory
source, decoding it and carrying it out (execution). Also known as the instruction cycle.
Central Processing Unit (CPU)>>> The main part of the computer, consisting of the registers,
ALU and control unit.
Clock Speed>>> Measured in Hertz, the clock speed is the frequency at which the 'internal clock
generates pulses'. This means how fast it can execute instructions. The higher the clock rate, the
faster the computer may work. The "clock" is an electronic unit that synchronizes other
components by generating pulses of electricity at a constant rate (almost like waves).
Cores>>> A CPU is one 'Core'. A multi-core processor is a single component with two or more
independent actual CPU's, which are the units responsible for the fetch-decode-execute cycle.
Theoretically, this could 'double' speed but depends on efficiency of splitting up tasks.
Cache>>> A part of the main store between the central processor and the RAM. It has extremely
fast access, so sections of a program and other data is copied there to take advantage of its short
fetch cycle.
LMC STA>>> Store function, puts the value in the accumulator into the storage location
specified.
LMC LDA>>> Loads data from the storage location specified into the accumulator.
LMC BRA>>> 'Branches' the next instruction to the address given.
LMC BRP>>> 'Branches' the next intruction to the address given if the value in the accumulator
is positive or zero.
LMC BRZ>>> 'Branches' the next intruction to the address given if the value in the accumulator
is zero.
Pipelining>>> An attempt to make machine code as efficient as possible. It relies on the ability
for the CPU to split up instructions - it can then fetch, decode, and execute all parts of the
instruction at the same time.
Flushing the Pipe>>> During Pipelining, instructions can cause corruption issues if something is
being outputted that could cause more problems. (the thing being currently processed could
£7.29
Get access to the full document:

100% satisfaction guarantee
Immediately available after payment
Both online and in PDF
No strings attached

Get to know the seller
Seller avatar
johnlynn297

Get to know the seller

Seller avatar
johnlynn297 Glyndwr University (London)
View profile
Follow You need to be logged in order to follow users or courses
Sold
1
Member since
2 year
Number of followers
1
Documents
221
Last sold
1 year ago
great learners

This is where great learners get there revision materials

0.0

0 reviews

5
0
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 exams and reviewed by others who've used these revision notes.

Didn't get what you expected? Choose another document

No problem! You can straightaway pick a different document that better suits what you're after.

Pay as you like, start learning straight 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 smashed it. It really can be that simple.”

Alisha Student

Frequently asked questions