Разделы презентаций


Grade 11 1 quarter

UNIT 11.1A COMPUTER SYSTEMS UNIT 11.1B PROGRAMMING PARADIGMS UNIT 11.1C SYSTEMS LIFECYCLE

Слайды и текст этой презентации

Слайд 1Grade 11 1 quarter
Revision of the material covered

Grade 11  1 quarterRevision of the material covered

Слайд 2UNIT 11.1A COMPUTER SYSTEMS
UNIT 11.1B PROGRAMMING PARADIGMS
UNIT 11.1C SYSTEMS LIFECYCLE

UNIT 11.1A  	COMPUTER SYSTEMS UNIT 11.1B  	PROGRAMMING PARADIGMS UNIT 11.1C  	SYSTEMS LIFECYCLE

Слайд 3Unit 11.1A Computer Systems

11.3.1.1 justify the choice of software and

selection criteria for specific purposes 11.3.1.2 classify application software 11.3.1.3 describe the

purpose and basic functions of operating systems 11.3.1.4 compare single-user and multi-user operating systems 11.3.1.5 compare single-tasking and multitasking operating systems 11.3.2.1. describe the interaction of the central processor with peripheral devices 11.3.2.2. describe the purpose of the components of the CPU, system bus and main memory. 11.3.4.1 explain the differences between RAM and ROM 11.3.4.2 explain the purpose of virtual memory 11.3.4.3 explain the purpose of the cache 11.3.3.1 to distinguish the laws of Boolean algebra 11.3.3.2 simplify logical expressions using the laws of Boolean algebra 11.3.3.3 build truth tables AND, OR, NOT, NAND, NOR, XOR

Unit 11.1A Computer Systems11.3.1.1 justify the choice of software and selection criteria for specific purposes 11.3.1.2 classify

Слайд 411.3.1.1 justify the choice of software and selection criteria for

specific purposes 11.3.1.2 classify

application software

Fill in the empty cells in this scheme

Give examples for each type of software.

11.3.1.1 justify the choice of software and selection criteria for

Слайд 5Questions

Questions

Слайд 6Answers
System software Q1 Disk formatter is part of system software. Q2 Types

of language translators: assembler, interpreter, compiler. Q3 An assembler is used

to translate assembly code into machine code. Q4 C# is translated using a compiler. Q5 The compiler reads source code and produces object code.
Application software Q6 Both types of software cost the same amount of money to develop. Bespoke software is paid for wholly by the client that requires this software. The development cost of off-the-shelf software is spread over a wide customer base, so is cheaper for an individual customer. Q7 General purpose software: spreadsheet. Special purpose software: accounting package, photo editor, presentation package. Q8 Application software is a program or series of programs that allows a user to perform non- computer tasks.
Generations of programming languages Q9 First and second generation languages are classed as low level as the instruction sets they use reflect the processor architecture. Q10 There are many types of problems to be solved by computer and different languages were developed to make it easier to solve these problems. Q11 One high-level language statement will generally be translated into several low-level language statements.













AnswersSystem software				 Q1 Disk formatter is part of system software. Q2 Types of language translators: assembler, interpreter,

Слайд 711.3.1.3 describe the purpose and basic functions of operating systems 11.3.1.4

compare single-user and multi-user operating systems 11.3.1.5 compare single-tasking and multitasking

operating systems

What is an operating system?
What is the basic functions OS?
Name of types OS?
Describe and give examples for each type of OS?
What is GUI and CLI? Where their could use?



11.3.1.3 describe the purpose and basic functions of operating systems 11.3.1.4 compare single-user and multi-user operating systems

Слайд 811.3.2.1. describe the interaction of the central processor with peripheral

devices 11.3.2.2. describe the purpose of the components of the CPU,

system bus and main memory.

2. Call name black arrows in this scheme?
3. Explain of the CPU, system bus and main memory functions?

1. Describe processes in this scheme, and name of each components in the CPU.

11.3.2.1. describe the interaction of the central processor with peripheral devices 11.3.2.2. describe the purpose of the

Слайд 9Describe the Fetch Execute Cycle using registers?
Program counter
Memory Address Register
Memory

Data Register
Instruction register
Accumulator

Describe the Fetch Execute Cycle using registers?Program counterMemory Address RegisterMemory Data RegisterInstruction registerAccumulator

Слайд 1011.3.4.1 explain the differences between RAM and ROM 11.3.4.2 explain the

purpose of virtual memory 11.3.4.3 explain the purpose of the cache
Memory

can be divided into two types: _____________ and ______________.
What is a RAM?
What is a ROM?
What is a Virtual Memory?
What is a Cache?



11.3.4.1 explain the differences between RAM and ROM 11.3.4.2 explain the purpose of virtual memory 11.3.4.3 explain

Слайд 11Fill in the missing words

Fill in the missing words

Слайд 1211.3.3.1 to distinguish the laws of Boolean algebra 11.3.3.2 simplify logical

expressions using the laws of Boolean algebra 11.3.3.3 build truth tables

AND, OR, NOT, NAND, NOR, XOR

AND, OR, NOT, NAND, NOR, XOR

11.3.3.1 to distinguish the laws of Boolean algebra 11.3.3.2 simplify logical expressions using the laws of Boolean

Слайд 13Laws of
Boolean
algebra  

Laws of Boolean algebra  

Слайд 14Unit 11.1B Programming Paradigms
11.5.1.1 to distinguish between the generations of

programming languages
11.5.1.2 classify low and high level programming languages
11.5.1.3 to

analyze a simple program in assembler language
11.5.1.4 use trace tables to find and validate the algorithm

Unit 11.1B Programming Paradigms11.5.1.1 to distinguish between the generations of programming languages11.5.1.2 classify low and high level

Слайд 15Programming language divide into 2 groups:

Programming language divide into 2 groups:

Слайд 16Compare two programming languages, and solve this task with Java

program language.



Compare two programming languages,  and solve this task with Java program language.

Слайд 17Программа сложения двух чисел

C
#include int main(void) { int a,

b; scanf("%d", &a); scanf("%d", &b); printf("%d\n", a

+ b); return 0; }

C++
#include using namespace std; int main() { long a, b; cin >> a >> b; cout << a + b << endl; return 0; }


Pascal
var a, b: longint; begin readln(a, b); writeln(a + b); end.

Java
import java.util.Scanner; class Main { public static void main(String args[]) { Scanner s = new Scanner(System.in); System.out.println(s.nextInt() + s.nextInt()); } }

Pyton
from string import split a,b=map(int,split(raw_input())) print a+b

begin

end

input a,b

output (a+b)


Слайд 18Trace table

Trace table

Слайд 19Trace table

Trace table

Слайд 20Translators
Name types of translators

What their roles are, and what are

the differences between compilers and interpreters.

TranslatorsName types of translatorsWhat their roles are, and what are the differences between compilers and interpreters.

Слайд 21Unit 11.1C Systems Lifecycle

11.2.1.8 develop requirements for the new system

based on the information collected
11.2.1.7 use flowcharts to represent input,

processing, storage and output in computing systems
11.2.1.6 use data flow diagrams (DFD-1 level) to represent input, processing, storage and output in computing systems

Unit 11.1C Systems Lifecycle11.2.1.8 develop requirements for the new system based on the information collected11.2.1.7 use flowcharts

Слайд 22What is a System Lifecycle?
Name the type of models SLC?

What is a System Lifecycle? Name the type of models SLC?

Слайд 23Where we can use DFD?
Based on the example make

DFD pizza order

Where we can use DFD? Based on the example make DFD pizza order

Обратная связь

Если не удалось найти и скачать доклад-презентацию, Вы можете заказать его на нашем сайте. Мы постараемся найти нужный Вам материал и отправим по электронной почте. Не стесняйтесь обращаться к нам, если у вас возникли вопросы или пожелания:

Email: Нажмите что бы посмотреть 

Что такое TheSlide.ru?

Это сайт презентации, докладов, проектов в PowerPoint. Здесь удобно  хранить и делиться своими презентациями с другими пользователями.


Для правообладателей

Яндекс.Метрика