Course Content
Class Test (MLIS)
0/1
Chapter-1. Computational Modelling
We will discuss Machines and Computational modeling, the Input-process-output model, input-process-output-storage model.
0/3
Chapter-2. Computer Hardware
We will discuss Von Neumann Computational Model, Hardware components of a computer system, cache memory, Fetch-Decode-Execute Model, Fetch-Decode-Execute Cycle, Secondary Storage (Magnetic, Optical, Solid State Drive SSD), Magnetic secondary storage - hard disks, Optical secondary storage – CD, DVDs, Electrical secondary storage - flash drives, Cloud Storage, Embedded systems
0/5
Chapter-3. Computer Logic
We will discuss Logic, logic gates (AND, OR, NOT gates), truth tables, conditional statements.
0/5
Chapter-4. Software
We will discuss software (System software, application software, utility software), Operating system, features of the operating system, File management tool, security tools, Computer Simulation, and modeling.
0/4
Chapter-5. Programing language
we will discuss definitions of Programing language, types of Programing language, Low-Level Programming Language, High-Level Programing Language, machine code or machine language, Assembly language, Advantage & Disadvantages of assembly language, Compiler & Interpreter, Advantage & Disadvantages of Compiler & Interpreter.
0/3
Chapter-6. Networks
We will learn the definition of network, the purpose of using the network, different types of network (LAN, WLAN, WAN, Computer Network Models, The processes of accessing a server for getting services, Network Topologies (BUS, RING, Star, Mesh Topology) Communication media, Advantage and disadvantages of wired, wireless communication media, Network data speed, Definition of protocol and features of the protocol, different types of protocol, email protocols (SMTP, POP3, IMAP), TCP protocol, TCP/IP Protocol, HTTP/ HTTPS Internet protocol. Network security, The Importance of Network Security, Firewall, The use of Firewall, The security and advantages of cloud storage, The Security and disadvantages of cloud storage, NAS (network-attached storage), Cyber-attack (Phishing, Shoulder Surfing, Unpatched software, USB devices, Eavesdropping), Protecting against security weaknesses, Security measures to protect from cyber-attacks, Reviews of network and user policies.
0/14
Chapter-7. The internet and the world wide web
We will Learn Internet, How the internet works, WWW (World Wide Web), Accessing the World Wide Web, How the World Wide Web works
0/3
Chapter-8. Computing and the environment
We will learn Computing and the environment, Advantage & Disadvantage of Computing to the environment, Manufacture, Raw material extraction, Production Most hazardous materials used in the manufacture of computing technology, Usages of Computing technology, Disposal of Computing technology, How computing technology preserving the environment.
0/3
Chapter-9. Computer Privacy
We will learn Privacy, Personal Data, UK Data Protection Act (1998) Big data, How Big Data Works, The Uses of Big Data Surveillance, Advantages of surveillance technology location-based service (LBS), how do location-based services work, Uses of location-based services Privacy Enhancing Technologies (PET), Privacy-enhancing tools Cyber Security, The computer misuse act 1990
0/4
Chapter-10. Digital Inclusion
We will learn about Digital Inclusion, Challenges for Digital Inclusion, Solutions, Impact and Advantage of Digital Inclusion, Moving Toward Digital Inclusion,
0/3
Chapter-11. Professionalism
We will learn about Professionalism, Importance of Professionalism, the professional standards by the British Computer Society (BCS).
0/3
Chapter-12. the Legal Impacts
We will learn about, Intellectual property, Copyright and patents, The Copyright, Designs, and Patents Act (1988), Licensing, The terms of a Software license, Creative Commons license, Open-source and proprietary software Advantage and disadvantages of open-source software
0/4
Chapter-13. Algorithm
We will learn about the definition of Algorithm, Criteria for a successful algorithm, Relationship between algorithm & Program, Flowcharts, The algorithm, for making a cup of coffee, Pseudo-code, Algorithm for adding two numbers, Arithmetic Operators, Variables, Constants, Selection, Iteration, Representation of selection & iteration in a flowchart, Representation of selection & iteration in Pseudo-code, Relational operator is an operator that compares two values, Nested Selection, Nested Selection pseudo-code, Indefinite iteration, Definite iteration, Logical Operators (AND, OR, NOT), NESTED LOOPS, Random Number
0/14
Chapter-18. Programming
0/35
Test Yourself
You can test your current situation on this course.
0/5
Edexcel OLevel Computer Science revision notes
About Lesson

Fetch-Decode-Execute Model:

Arithmetic/logic unit (ALU): The part of the CPU that does calculations and logic operations is called the arithmetic/logic unit (ALU).

Inside the CPU are several memory locations called registers. These are extremely fast to access, but there are usually only a relatively small number of them. Some registers play a specific role in the fetch-decode-execute cycle, for example, holding a memory address, an instruction, or a piece of data, while others serve a general purpose.

Some of the registers with a specific role that are found in most computers include the following:

  • The accumulator holds the results of calculations performed by the ALU. (All input and output from the CPU passes through the accumulator.)
  • The program counter holds the memory address of the next instruction to be fetched.
  • Current Instructions (holds the instruction currently being executed.)

The steps in the cycle are controlled by a control unit and synchronized by an electronic clock. You have probably seen the advertised clock speeds of CPUs; for example, a 2.2 GHz CPU means that its clock ticks 2200 million times per second.

system clock by arif sir science hub

 

The bus that connects the CPU to other devices in the computer is split into three parts: the address bus, the data bus, and the control bus.

  • The address bus carries memory addresses between the CPU and memory to identify uniquely a memory location.
  • The data bus carries the value to be read from or written to memory, and
  • The control bus carries the signals that, for example, determine whether to read or write the data and when to do so.

Fetch-Decode-Execute Cycle:

  1. The processor checks the program counter to see which instruction to run next.
  2. The program counter gives an address value in the memory of where the next instruction is.
  3. The processor fetches the instruction value from this memory location.
  4. Once the instruction has been fetched, it needs to be decoded and executed. For example, this could involve taking one value, putting it into the ALU, then taking a different value from a register and adding the two together.
  5. Once this is complete, the processor goes back to the program counter to find the next instruction.
  6. This cycle is repeated until the program ends.