COMPUTER SCIENCE GCE PROJECTS TO BE READ CAREFULLY BY EACH COMPUTER SCIENCE STUDENT A/L

Size: px
Start display at page:

Download "COMPUTER SCIENCE GCE PROJECTS TO BE READ CAREFULLY BY EACH COMPUTER SCIENCE STUDENT A/L"

Transcription

1 Ministry of Secondary Education Progressive Comprehensive High School & PCHS Mankon Bamenda Department of Computer Studies Republic of Cameroon Peace Work Fatherland School Year 2013/2014 COMPUTER SCIENCE GCE PROJECTS Class: Comp. Sc By: DZEUGANG PLACIDE TO BE READ CAREFULLY BY EACH COMPUTER SCIENCE STUDENT A/L I. The Computer Science Project: a school base assessment instituted by the GCE Board for 795 Computer Science (See 795 Computer Science Syllabus April 2011) Candidates will be required to present evidence of suitable work in the form of work book and a Project Report. A Project report is a school based open room practical examination, involving guidance. The assessment of the report will constitute 5% of the total mark for the subject. Each candidate will have to answer one from seven competency domains to complete this component of paper three. The domain shall include: 1. Computer workstation environment, 2. Computer and information ethics, 3. Data and Information System creation, Production, Processing and Management, 4. Algorithmic thinking and programming 5. Communication and networking 6. Computer workstation and networking setting, Maintenance and security, 7. Design and implementation of Information system The project examination will last eight weeks, making sis weeks for candidates and two weeks and two weeks the evaluation and transmission to the GCE Board. The initial assessment of this report shall be by the teacher and shall be subjected to modification by the GCE board.

2 School are required to transmit ALL project reports in sealed envelopes to appropriate examination centres during Part II of the Practical Tests. II. INTRUCTIONS FOR THE PROJECTS 1) The project should be done according to the following distributions per topics: (those with the name in bold are consider as the leader of the group. (They should meet the teacher to know their duty as the leader) GROUP TOPIC MEMBERS I Develop a game to find a number guessed by the computer 1) NANGA VANELLA 2) ANYERE FAITH II A program to do the conversion in number systems (decimal to nondecimal conversion and vice-versa, Nondecimal to non-decimal conversion) 1) ASANG ARROIE 2) NGAM BEETHOVEN 3) PIKWERE CECLIL 2) The detail of each topic is given in a single file to be downloaded on For further explanations, you can write to the teacher through the blog, through his personal address dzeugangplacide@yahoo.fr, or to encounter him personally. 3) The deadline for submitting your work is set to Monday, February 10, 2014 at 11 am. 4) The work to be submitted will include the following: - A Project Report which details about the content will be given below. - A CD containing the all the source code files, executable code file and the softcopy of the project report 5) The project report should contain the following: - An introduction - The detail description of the task to be done - The detail analysis of the work: modularization, description of each module, function or procedure with algorithms and/or flowcharts and repartition of task between group members - The source code of the program - The user manual with screenshots (Explaining how the program function) - Conclusion: (what you learnt, difficulties encountered, perspectives )

3 6) Work should be submitted to the appreciation of the teacher at each stage of its evolution, and any difficulty, blocking or misunderstanding, should be brought to his attention as soon as possible 7) This document and the one containing the detail description of your topic should be attached to your report as appendices 8) All the function and data structures used should be contained in a header file III. MARK SCHEME (can be subject to modification) achievement of objectives (Solution to the problem according to the description given) Project report C programming skill 10% Solution of the problem 25% Good programming practice 5% Analysis of the problem 20% Quality of the documentation 10% Quality of suggestion and perspectives 5% Presentation of the report with respect of 10% different parts Individual participation Through oral questioning 15% THE COMPUTER SCIENCE TEACHER

4 COMPUTER SCIENCE PROJECT GROUP 2 DETAILS OF THE WORK TO BE DONE Develop a program to do conversion in number systems. Your program should be able to do: - Coding: conversion from the decimal system to a non decimal system - Decoding: Conversion from a non-decimal system to the decimal system - Encoding: conversion between two non-decimal systems At the beginning of the execution a menu should be presented to enable the user to choose which conversion he wants to do. See the screenshot below The recall of the procedures of conversion is given below Number System Conversion There are many methods or techniques which can be used to convert numbers from one base to another. We'll demonstrate here the following Decimal to Other Base System Other Base System to Decimal Other Base System to Non-Decimal Shortcut method - Binary to Octal Shortcut method - Octal to Binary Shortcut method - Binary to Hexadecimal Shortcut method - Hexadecimal to Binary Decimal to Other Base System s 1 - Divide the decimal number to be converted by the value of the new base. 2 - Get the remainder from 1 as the rightmost digit (least significant digit) of new base number. 3 - Divide the quotient of the previous divide by the new base.

5 4 - Record the remainder from 3 as the next digit (to the left) of the new base number. Repeat s 3 and 4, getting remainders from right to left, until the quotient becomes zero in 3. The last remainder thus obtained will be the most significant digit (MSD) of the new base number. Decimal Number: Calculating Binary Equivalent: Operation Result Remainder 1 29 / / / / / As mentioned in s 2 and 4, the remainders have to be arranged in the reverse order so that the first remainder becomes the least significant digit (LSD) and the last remainder becomes the most significant digit (MSD). Decimal Number: = Binary Number: Other base system to Decimal System s 1 - Determine the column (positional) value of each digit (this depends on the position of the digit and the base of the number system). 2 - Multiply the obtained column values (in 1) by the digits in the corresponding columns. 3 - Sum the products calculated in 2. The total is the equivalent value in decimal. Binary Number: Calculating Decimal Equivalent: Binary Number Decimal Number ((1 x 2 4 ) + (1 x 2 3 ) + (1 x 2 2 ) + (0 x 2 1 ) + (1 x 2 0 )) ( )

6 Binary Number: = Decimal Number: Other Base System to Non-Decimal System s 1 - Convert the original number to a decimal number (base 10). 2 - Convert the decimal number so obtained to the new base number. Octal Number: 25 8 Calculating Binary Equivalent: 1: Convert to Decimal Octal Number Decimal Number ((2 x 8 1 ) + (5 x 8 0 )) ( ) Octal Number: 25 8 = Decimal Number: : Convert Decimal to Binary Operation Result Remainder 1 21 / / / / / Decimal Number: = Binary Number: Octal Number: 25 8 = Binary Number: Shortcut method - Binary to Octal s 1 - Divide the binary digits into groups of three (starting from the right). 2 - Convert each group of three binary digits to one octal digit. Binary Number: Calculating Octal Equivalent: Binary Number Octal Number

7 Binary Number: = Octal Number: 25 8 Shortcut method - Octal to Binary s 1 - Convert each octal digit to a 3 digit binary number (the octal digits may be treated as decimal for this conversion). 2 - Combine all the resulting binary groups (of 3 digits each) into a single binary number. Octal Number: 25 8 Calculating Binary Equivalent: Octal Number Binary Number Octal Number: 25 8 = Binary Number: Shortcut method - Binary to Hexadecimal s 1 - Divide the binary digits into groups of four (starting from the right). 2 - Convert each group of four binary digits to one hexadecimal symbol. Binary Number: Calculating hexadecimal Equivalent: Binary Number Hexadecimal Number Binary Number: = Hexadecimal Number: Shortcut method - Hexadecimal to Binary s 1 - Convert each hexadecimal digit to a 4 digit binary number (the hexadecimal digits may be treated as decimal for this conversion).

8 2 - Combine all the resulting binary groups (of 4 digits each) into a single binary number. Hexadecimal Number: Calculating Binary Equivalent: Hexadecimal Number Binary Number Hexadecimal Number: = Binary Number:

TOPIC: NUMBER SYSTEMS

TOPIC: NUMBER SYSTEMS Ministry of Secondary Education Progressive Comprehensive High School PCHS Mankon Bamenda Department of Computer Studies Republic of Cameroon Peace Work - Fatherland TOPIC: NUMBER SYSTEMS Class: Comp.

More information

MOCK GCE EXAMINATION

MOCK GCE EXAMINATION Ministry of Secondary Education Progressive Comprehensive High School PCHS Mankon Bamenda Department of Computer Studies Republic of Cameroon Peace Work Fatherland School Year 2013/2014 MOCK GCE EXAMINATION

More information

Octal & Hexadecimal Number Systems. Digital Electronics

Octal & Hexadecimal Number Systems. Digital Electronics Octal & Hexadecimal Number Systems Digital Electronics What, More Number Systems? Why do we need more number systems? Humans understand decimal Check out my ten digits! Digital electronics (computers)

More information

PREMOCK GCE EXAMINATIONS

PREMOCK GCE EXAMINATIONS PROGRESSIVE COMPREHENSIVE HIGH SCHOOL (PCHS) MANKON, BAMENDA PREMOCK GCE EXAMINATIONS OCTOBER 2013 Subject/Code: Computer Science 795 Paper N 1 Examiner DZEUGANG Placide ADVANCED LEVEL 795 COMPUTER SCIENCE

More information

Number representations

Number representations Number representations Number bases Three number bases are of interest: Binary, Octal and Hexadecimal. We look briefly at conversions among them and between each of them and decimal. Binary Base-two, or

More information

TOPICS. Other Number Systems. Other Number Systems 9/9/2017. Octal Hexadecimal Number conversion

TOPICS. Other Number Systems. Other Number Systems 9/9/2017. Octal Hexadecimal Number conversion Topic : Introduction To computers Faculty : Department of commerce and Management BY: Prof.Meeta R. Gujarathi E mail: meetargujarathi@gmail.com Octal Hexadecimal Number conversion TOPICS Other Number Systems

More information

Review of Number Systems

Review of Number Systems Review of Number Systems The study of number systems is important from the viewpoint of understanding how data are represented before they can be processed by any digital system including a digital computer.

More information

in this web service Cambridge University Press

in this web service Cambridge University Press 978-0-51-85748- - Switching and Finite Automata Theory, Third Edition Part 1 Preliminaries 978-0-51-85748- - Switching and Finite Automata Theory, Third Edition CHAPTER 1 Number systems and codes This

More information

CHAPTER 2 (b) : AND CODES

CHAPTER 2 (b) : AND CODES DKT 122 / 3 DIGITAL SYSTEMS 1 CHAPTER 2 (b) : NUMBER SYSTEMS OPERATION AND CODES m.rizal@unimap.edu.my sitizarina@unimap.edu.my DECIMAL VALUE OF SIGNED NUMBERS SIGN-MAGNITUDE: Decimal values of +ve & -ve

More information

Conversion Between Number Bases

Conversion Between Number Bases Conversion Between Number Bases MATH 100 Survey of Mathematical Ideas J. Robert Buchanan Department of Mathematics Summer 2018 General Number Bases Bases other than 10 are sometimes used in numeration

More information

BCS Higher Education Qualifications. Diploma in IT. Professional Project Syllabus

BCS Higher Education Qualifications. Diploma in IT. Professional Project Syllabus BCS Higher Education Qualifications Diploma in IT Professional Project Syllabus Version 2.0 December 2016 This is a United Kingdom government regulated qualification which is administered and approved

More information

COE 202- Digital Logic. Number Systems II. Dr. Abdulaziz Y. Barnawi COE Department KFUPM. January 23, Abdulaziz Barnawi. COE 202 Logic Design

COE 202- Digital Logic. Number Systems II. Dr. Abdulaziz Y. Barnawi COE Department KFUPM. January 23, Abdulaziz Barnawi. COE 202 Logic Design 1 COE 0- Digital Logic Number Systems II Dr. Abdulaziz Y. Barnawi COE Department KFUPM COE 0 Logic Design January 3, 016 Objectives Base Conversion Decimal to other bases Binary to Octal and Hexadecimal

More information

CHAPTER 2 Number Systems

CHAPTER 2 Number Systems CHAPTER 2 Number Systems Objectives After studying this chapter, the student should be able to: Understand the concept of number systems. Distinguish between non-positional and positional number systems.

More information

Switching Circuits and Logic Design Prof. Indranil Sengupta Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur

Switching Circuits and Logic Design Prof. Indranil Sengupta Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Switching Circuits and Logic Design Prof. Indranil Sengupta Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture - 02 Octal and Hexadecimal Number Systems Welcome

More information

2 Number Systems 2.1. Foundations of Computer Science Cengage Learning

2 Number Systems 2.1. Foundations of Computer Science Cengage Learning 2 Number Systems 2.1 Foundations of Computer Science Cengage Learning 2.2 Objectives After studying this chapter, the student should be able to: Understand the concept of number systems. Distinguish between

More information

SDD PRELIMINARY CHANGES SUMMARY

SDD PRELIMINARY CHANGES SUMMARY SDD PRELIMINARY CHANGES SUMMARY This document aims to highlight recent changes made to the NSW Software Design and Development Preliminary syllabus. The original syllabus will be examined for the last

More information

Digital Fundamentals

Digital Fundamentals Digital Fundamentals Tenth Edition Floyd Chapter 2 2009 Pearson Education, Upper 2008 Pearson Saddle River, Education NJ 07458. All Rights Reserved Decimal Numbers The position of each digit in a weighted

More information

EEM 232 Digital System I

EEM 232 Digital System I EEM 232 Digital System I Instructor : Assist. Prof. Dr. Emin Germen egermen@anadolu.edu.tr Course Book : Logic and Computer Design Fundamentals by Mano & Kime Third Ed/Fourth Ed.. Pearson Grading 1 st

More information

Chapter Binary Representation of Numbers

Chapter Binary Representation of Numbers Chapter 4 Binary Representation of Numbers After reading this chapter, you should be able to: convert a base- real number to its binary representation,. convert a binary number to an equivalent base- number.

More information

EXAM PREPARATION GUIDE

EXAM PREPARATION GUIDE When Recognition Matters EXAM PREPARATION GUIDE PECB Certified ISO/IEC 20000 Lead Auditor www.pecb.com The objective of the Certified ISO/IEC 20000 Lead Auditor examination is to ensure that the candidate

More information

LECTURE 1-2. Introduction and Number Systems

LECTURE 1-2. Introduction and Number Systems LECTURE 1-2 Introduction and Number Systems 1 BASIC INFORMATION Course Code: CSE 115 Course Title: Computing Concepts Course Teacher: Dr. Muhammad Asif H. Khan (Mfs), Associate Professor, Dept. of Computer

More information

Computer Sc. & IT. Digital Logic. Computer Sciencee & Information Technology. 20 Rank under AIR 100. Postal Correspondence

Computer Sc. & IT. Digital Logic. Computer Sciencee & Information Technology. 20 Rank under AIR 100. Postal Correspondence GATE Postal Correspondence Computer Sc. & IT 1 Digital Logic Computer Sciencee & Information Technology (CS) 20 Rank under AIR 100 Postal Correspondence Examination Oriented Theory, Practice Set Key concepts,

More information

DATA REPRESENTATION. By- Neha Tyagi PGT CS KV 5 Jaipur II Shift, Jaipur Region. Based on CBSE curriculum Class 11. Neha Tyagi, KV 5 Jaipur II Shift

DATA REPRESENTATION. By- Neha Tyagi PGT CS KV 5 Jaipur II Shift, Jaipur Region. Based on CBSE curriculum Class 11. Neha Tyagi, KV 5 Jaipur II Shift DATA REPRESENTATION Based on CBSE curriculum Class 11 By- Neha Tyagi PGT CS KV 5 Jaipur II Shift, Jaipur Region Neha Tyagi, KV 5 Jaipur II Shift Introduction As we know that computer system stores any

More information

1010 2?= ?= CS 64 Lecture 2 Data Representation. Decimal Numbers: Base 10. Reading: FLD Digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9

1010 2?= ?= CS 64 Lecture 2 Data Representation. Decimal Numbers: Base 10. Reading: FLD Digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 CS 64 Lecture 2 Data Representation Reading: FLD 1.2-1.4 Decimal Numbers: Base 10 Digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 Example: 3271 = (3x10 3 ) + (2x10 2 ) + (7x10 1 ) + (1x10 0 ) 1010 10?= 1010 2?= 1

More information

Chapter 3 DATA REPRESENTATION

Chapter 3 DATA REPRESENTATION Page1 Chapter 3 DATA REPRESENTATION Digital Number Systems In digital systems like computers, the quantities are represented by symbols called digits. Many number systems are in use in digital technology

More information

PMP Certification Preparatory Course

PMP Certification Preparatory Course PMP Certification Preparatory Course Client Relation Officer Ewa Kazimierczuk Tel. 508 018 380 ewa.kazimierczuk@pl.ey.com Dates: Warszawa, 8-10 October 2018 5-6 November 2018 Price: 5000 PLN net or 1140

More information

Positional notation Ch Conversions between Decimal and Binary. /continued. Binary to Decimal

Positional notation Ch Conversions between Decimal and Binary. /continued. Binary to Decimal Positional notation Ch.. /continued Conversions between Decimal and Binary Binary to Decimal - use the definition of a number in a positional number system with base - evaluate the definition formula using

More information

Your route to becoming a Chartered IT Professional

Your route to becoming a Chartered IT Professional Introduction Regulations 1 Structure of the qualifications, pathway to membership and further study 1.1 Certificate in IT 1.2 Diploma in IT 1.2.1 Diploma Examination 1.3 Professional Graduate Diploma in

More information

Programming Studio #1 ECE 190

Programming Studio #1 ECE 190 Programming Studio #1 ECE 190 Programming Studio #1 Announcements In Studio Assignment Introduction to Linux Command-Line Operations Recitation Floating Point Representation Binary & Hexadecimal 2 s Complement

More information

BCS HIGHER EDUCATION QUALIFICATIONS - REGULATIONS

BCS HIGHER EDUCATION QUALIFICATIONS - REGULATIONS BCS HIGHER EDUCATION QUALIFICATIONS - REGULATIONS 1 Structure of the Examinations 1.1 Certificate in IT 1.2 Diploma in IT 1.2.1 Diploma Examination 1.3 Professional Graduate Diploma in IT 1.3.1 Professional

More information

Information Science 1

Information Science 1 Information Science 1 - Representa*on of Data in Memory- Week 03 College of Information Science and Engineering Ritsumeikan University Topics covered l Basic terms and concepts of The Structure of a Computer

More information

SPECIAL MOCK GCE EXAMINATIONS

SPECIAL MOCK GCE EXAMINATIONS PROGRESSIVE COMPREHENSIVE HIGH SCHOOL (PCHS) MANKON, BAMENDA SPECIAL MOCK GCE EXAMINATIONS 14 FEBRUARY 2014 ADVANCED LEVEL Subject/Code: Computer Science 795 Paper N 1 Examiner DZEUGANG Placide 795 COMPUTER

More information

SCHOOL OF ENGINEERING & BUILT ENVIRONMENT. Mathematics. Numbers & Number Systems

SCHOOL OF ENGINEERING & BUILT ENVIRONMENT. Mathematics. Numbers & Number Systems SCHOOL OF ENGINEERING & BUILT ENVIRONMENT Mathematics Numbers & Number Systems Introduction Numbers and Their Properties Multiples and Factors The Division Algorithm Prime and Composite Numbers Prime Factors

More information

PMP Certification Preparatory Course

PMP Certification Preparatory Course PMP Certification Preparatory Course Why Project Management Professional (PMP ) Certification? In today's flexible organization, the boundaries between functions are becoming less defined. You are most

More information

Internal Data Representation

Internal Data Representation Appendices This part consists of seven appendices, which provide a wealth of reference material. Appendix A primarily discusses the number systems and their internal representation. Appendix B gives information

More information

BCS Higher Education Qualifications. Level 4 Certificate in IT. Computer Network Technology Syllabus

BCS Higher Education Qualifications. Level 4 Certificate in IT. Computer Network Technology Syllabus BCS Higher Education Qualifications Level 4 Certificate in IT Computer Network Technology Syllabus Version 4.0 December 2016 This is a United Kingdom government regulated qualification which is administered

More information

Chapter 2 Number Systems and Codes Dr. Xu

Chapter 2 Number Systems and Codes Dr. Xu Chapter 2 Number Systems and Codes Dr. Xu Chapter 2 Objectives Selected areas covered in this chapter: Converting between number systems. Decimal, binary, hexadecimal. Advantages of the hexadecimal number

More information

LESSON TITLE. Language English Local Language Introduction to Computer Science. Mr. VAR Sovannrath Submission Date October 30th, 2014 Version 1.

LESSON TITLE. Language English Local Language Introduction to Computer Science. Mr. VAR Sovannrath Submission Date October 30th, 2014 Version 1. LESSON TITLE Country Cambodia Language English Local Language Course Title Introduction to Computer Science Lesson Title 06. Number Systems SME Mr. VAR Sovannrath Submission Date October 30th, 2014 Version

More information

DATA PROCESSING. There will be two papers, Papers 1 and 2 both of which shall be taken as a composite paper at one sitting.

DATA PROCESSING. There will be two papers, Papers 1 and 2 both of which shall be taken as a composite paper at one sitting. DATA PROCESSING PREAMBLE This examination syllabus is derived from the Senior Secondary School curriculum on Data Processing published by the NERDC. It is designed to test basic knowledge and skills acquisition

More information

DATA PROCESSING. There will be two papers, Papers 1 and 2 both of which shall be taken as a composite paper at one sitting.

DATA PROCESSING. There will be two papers, Papers 1 and 2 both of which shall be taken as a composite paper at one sitting. DATA PROCESSING PREAMBLE This examination syllabus is derived from the Senior Secondary School curriculum on Data Processing published by the NERDC. It is designed to test basic knowledge and skills acquisition

More information

Preparing and submitting

Preparing and submitting Cambridge International AS & A Level Preparing and submitting Guidance on preparing and submitting work for: Cambridge International AS & A Level Global Perspectives & Research (9239/02, 03 and 04) Cambridge

More information

Programming Studio #1 ECE 190

Programming Studio #1 ECE 190 Programming Studio #1 ECE 190 Programming Studio #1 Announcements Recitation Binary representation, hexadecimal notation floating point representation, 2 s complement In Studio Assignment Introduction

More information

Cambridge International General Certificate of Secondary Education 0478 Computer Science June 2015 Principal Examiner Report for Teachers

Cambridge International General Certificate of Secondary Education 0478 Computer Science June 2015 Principal Examiner Report for Teachers COMPUTER SCIENCE Paper 0478/11 Paper 1 Key Messages This is a new syllabus and the standard of candidates work was mostly very good. There is a continued move to provide questions where candidates have

More information

Computer Arithmetic. In this article we look at the way in which numbers are represented in binary form and manipulated in a computer.

Computer Arithmetic. In this article we look at the way in which numbers are represented in binary form and manipulated in a computer. Computer Arithmetic In this article we look at the way in which numbers are represented in binary form and manipulated in a computer. Numbers have a long history. In Europe up to about 400 numbers were

More information

Machine Architecture and Number Systems

Machine Architecture and Number Systems Machine Architecture and Number Systems Topics Major Computer Components Bits, Bytes, and Words The Decimal Number System The Binary Number System Converting from Binary to Decimal Converting from Decimal

More information

Exemplar Candidate Work Part 1 of 2 GCE in Applied ICT. OCR Advanced GCE in Applied ICT: H715 Unit G057: Database design

Exemplar Candidate Work Part 1 of 2 GCE in Applied ICT. OCR Advanced GCE in Applied ICT: H715 Unit G057: Database design Exemplar Candidate Work Part 1 of 2 GCE in Applied ICT OCR Advanced GCE in Applied ICT: H715 Unit G057: Database design OCR 2011 Contents Contents 2 Introduction 3 Moderator s Commentary: G057 Database

More information

Number Systems MA1S1. Tristan McLoughlin. November 27, 2013

Number Systems MA1S1. Tristan McLoughlin. November 27, 2013 Number Systems MA1S1 Tristan McLoughlin November 27, 2013 http://en.wikipedia.org/wiki/binary numeral system http://accu.org/index.php/articles/1558 http://www.binaryconvert.com http://en.wikipedia.org/wiki/ascii

More information

PROGRAMME SUMMARY You are required to take eight core modules in terms one and two as outlined in the module list.

PROGRAMME SUMMARY You are required to take eight core modules in terms one and two as outlined in the module list. PROGRAMME SPECIFICATION MSc Real Estate Investment KEY FACTS Programme name Real Estate Investment Award MSc School Cass Business School Department or equivalent Specialist Masters Programme Programme

More information

EXAM PREPARATION GUIDE

EXAM PREPARATION GUIDE EXAM PREPARATION GUIDE PECB Certified ISO 50001 Lead Auditor The objective of the PECB Certified ISO 50001 Lead Auditor examination is to ensure that the candidate has the knowledge and skills to plan

More information

Outline. What Digit? => Number System. Decimal (base 10) Significant Digits. Lect 03 Number System, Gates, Boolean Algebra. CS221: Digital Design

Outline. What Digit? => Number System. Decimal (base 10) Significant Digits. Lect 03 Number System, Gates, Boolean Algebra. CS221: Digital Design Lect 3 Number System, Gates, Boolean Algebra CS22: Digital Design Dr. A. Sahu Dept of Comp. Sc. & Engg. Indian Institute of Technology Guwahati Outline Number System Decimal, Binary, Octal, Hex Conversions

More information

Digital Fundamentals

Digital Fundamentals Digital Fundamentals Tenth Edition Floyd Chapter 1 Modified by Yuttapong Jiraraksopakun Floyd, Digital Fundamentals, 10 th 2008 Pearson Education ENE, KMUTT ed 2009 Analog Quantities Most natural quantities

More information

Project Management Professional (PMP ) Exam Preparation Course

Project Management Professional (PMP ) Exam Preparation Course Course Objective Project Management Professional (PMP ) Spring 2018 Syllabus To prepare the student for the PMP certification examination with a rigorous review of Project Management best practices that

More information

Preparing and submitting Cambridge Global Perspectives work

Preparing and submitting Cambridge Global Perspectives work Cambridge International AS & A Level Preparing and submitting Cambridge Global Perspectives work Guidance on preparing and submitting work for Cambridge International AS & A Level Global Perspectives &

More information

COE 202: Digital Logic Design Number Systems Part 2. Dr. Ahmad Almulhem ahmadsm AT kfupm Phone: Office:

COE 202: Digital Logic Design Number Systems Part 2. Dr. Ahmad Almulhem   ahmadsm AT kfupm Phone: Office: COE 0: Digital Logic Design Number Systems Part Dr. Ahmad Almulhem Email: ahmadsm AT kfupm Phone: 860-7554 Office: -34 Objectives Arithmetic operations: Binary number system Other number systems Base Conversion

More information

Number System. Introduction. Decimal Numbers

Number System. Introduction. Decimal Numbers Number System Introduction Number systems provide the basis for all operations in information processing systems. In a number system the information is divided into a group of symbols; for example, 26

More information

Introduction to Computer Science (I1100) With 1 coin 2 possibilities: Head / Tail or 0/1

Introduction to Computer Science (I1100) With 1 coin 2 possibilities: Head / Tail or 0/1 With 1 coin 2 possibilities: Head / Tail or 0/1 77 What if I have 2 coins?! 0 0 With 2 coins, I can have 4 possibilities 0 1 1 0 1 1 With 3 coins, I can have 2*2*2=8 possibilities With 4 coins, I can have

More information

Higher National Unit Specification. General information for centres. Unit code: DX33 35

Higher National Unit Specification. General information for centres. Unit code: DX33 35 Higher National Unit Specification General information for centres Unit title: Digital Imaging Project Unit code: DX33 35 Unit purpose: This Unit is designed to apply digital and computer technology within

More information

EXAM PREPARATION GUIDE

EXAM PREPARATION GUIDE When Recognition Matters EXAM PREPARATION GUIDE PECB Certified ISO 22000 Lead Auditor www.pecb.com The objective of the Certified ISO 22000 Lead Auditor examination is to ensure that the candidate has

More information

Numeral system Numerals

Numeral system Numerals Book B: Chapter 9 Different Numeral Systems Revision. (a) Numerals in the system Numeral system Numerals Denary,,,,,, 6, 7, 8 and 9 Binary and Hexadecimal,,,,,, 6, 7, 8, 9, A (i.e. ), B (i.e. ), C (i.e.

More information

This one-semester elective course is intended as a practical, hands-on guide to help you understand digital art.

This one-semester elective course is intended as a practical, hands-on guide to help you understand digital art. Syllabus Digital Art Overview This one-semester elective course is intended as a practical, hands-on guide to help you understand digital art. This course is structured into lessons and Activities as follows:

More information

umber Systems bit nibble byte word binary decimal

umber Systems bit nibble byte word binary decimal umber Systems Inside today s computers, data is represented as 1 s and 0 s. These 1 s and 0 s might be stored magnetically on a disk, or as a state in a transistor. To perform useful operations on these

More information

Digital Communication and Aesthetics,

Digital Communication and Aesthetics, Curriculum for the Elective Study at Bachelor Level in Digital Communication and Aesthetics, 2016 Corrected 2017 Amended 2018 Department of Media, Cognition and Communication Faculty of Humanities University

More information

1. NUMBER SYSTEMS USED IN COMPUTING: THE BINARY NUMBER SYSTEM

1. NUMBER SYSTEMS USED IN COMPUTING: THE BINARY NUMBER SYSTEM 1. NUMBER SYSTEMS USED IN COMPUTING: THE BINARY NUMBER SYSTEM 1.1 Introduction Given that digital logic and memory devices are based on two electrical states (on and off), it is natural to use a number

More information

1.1. INTRODUCTION 1.2. NUMBER SYSTEMS

1.1. INTRODUCTION 1.2. NUMBER SYSTEMS Chapter 1. 1.1. INTRODUCTION Digital computers have brought about the information age that we live in today. Computers are important tools because they can locate and process enormous amounts of information

More information

Lecture (01) Digital Systems and Binary Numbers By: Dr. Ahmed ElShafee

Lecture (01) Digital Systems and Binary Numbers By: Dr. Ahmed ElShafee ١ Lecture (01) Digital Systems and Binary Numbers By: Dr. Ahmed ElShafee Digital systems Digital systems are used in communication, business transactions, traffic control, spacecraft guidance, medical

More information

Number Systems CHAPTER Positional Number Systems

Number Systems CHAPTER Positional Number Systems CHAPTER 2 Number Systems Inside computers, information is encoded as patterns of bits because it is easy to construct electronic circuits that exhibit the two alternative states, 0 and 1. The meaning of

More information

GCSE Subject Level Conditions and Requirements for Computer Science May 2015

GCSE Subject Level Conditions and Requirements for Computer Science May 2015 GCSE Subject Level Conditions and Requirements for Computer Science May 2015 Ofqual/15/5681 Contents GCSE Subject Level Conditions and Requirements for Computer Science Introduction... 2 About this document...

More information

Machine Architecture and Number Systems CMSC104. Von Neumann Machine. Major Computer Components. Schematic Diagram of a Computer. First Computer?

Machine Architecture and Number Systems CMSC104. Von Neumann Machine. Major Computer Components. Schematic Diagram of a Computer. First Computer? CMSC104 Lecture 2 Remember to report to the lab on Wednesday Topics Machine Architecture and Number Systems Major Computer Components Bits, Bytes, and Words The Decimal Number System The Binary Number

More information

This document contains additional questions; it is not intended to be treated as a complete paper.

This document contains additional questions; it is not intended to be treated as a complete paper. 1 AS COMPUTER SCIENCE Paper 2 Additional Questions These questions focus primarily on topics that were not covered by the AQA AS and A-level Computing specifications, introduced in 2009. It is hoped that

More information

Candidate Exam Briefing

Candidate Exam Briefing Candidate Exam Briefing The purpose of this presentation is to provide you with a basic overview of exam rules and regulations, and how we organise exams at Ethos College Full details are provided in the

More information

Cambridge International Examinations Cambridge International Advanced Subsidiary and Advanced Level

Cambridge International Examinations Cambridge International Advanced Subsidiary and Advanced Level Cambridge International Examinations Cambridge International Advanced Subsidiary and Advanced Level COMPUTER SCIENCE 9608/23 Paper 2 Fundamental Problem-solving and Programming Skills May/June 2018 PRE-RELEASE

More information

Numeral Systems. -Numeral System -Positional systems -Decimal -Binary -Octal. Subjects:

Numeral Systems. -Numeral System -Positional systems -Decimal -Binary -Octal. Subjects: Numeral Systems -Numeral System -Positional systems -Decimal -Binary -Octal Subjects: Introduction A numeral system (or system of numeration) is a writing system for expressing numbers, that is a mathematical

More information

Cambridge International Examinations Cambridge International Advanced Subsidiary and Advanced Level

Cambridge International Examinations Cambridge International Advanced Subsidiary and Advanced Level Cambridge International Examinations Cambridge International Advanced Subsidiary and Advanced Level COMPUTER SCIENCE 9608/41 Paper 4 Further Problem-solving and Programming Skills October/November 2017

More information

BINARY SYSTEM. Binary system is used in digital systems because it is:

BINARY SYSTEM. Binary system is used in digital systems because it is: CHAPTER 2 CHAPTER CONTENTS 2.1 Binary System 2.2 Binary Arithmetic Operation 2.3 Signed & Unsigned Numbers 2.4 Arithmetic Operations of Signed Numbers 2.5 Hexadecimal Number System 2.6 Octal Number System

More information

GOSFORTH ACADEMY AND GOSFORTH JUNIOR HIGH ACADEMY EXAM POLICY

GOSFORTH ACADEMY AND GOSFORTH JUNIOR HIGH ACADEMY EXAM POLICY Author: MDM Date: September 2018 Review Date: September 2019 GOSFORTH ACADEMY AND GOSFORTH JUNIOR HIGH ACADEMY EXAM POLICY Contents 1. Exam responsibilities 2. The statutory tests and qualifications offered

More information

Class 9 Saturday, Feb 14

Class 9 Saturday, Feb 14 Jahangirabad Institute of technology Er.Amit Kr Pathak Computer System & Programming in C, NCS-201 Semester II, 2016(Odd Sem.) MASTER SCHEDULE [U-1] week 1 Class 1 Monday, Feb 1 Introduction to digital

More information

Applied Information and Communication Technology

Applied Information and Communication Technology Pearson Edexcel GCE Applied Information and Communication Technology Unit 7: Using Database Software 9 27 May 2016 Assessment window: 3 weeks Time: 10 hours You must have: Cover sheet, short treasury tag,

More information

EXAM PREPARATION GUIDE

EXAM PREPARATION GUIDE When Recognition Matters EXAM PREPARATION GUIDE PECB Certified ISO 9001 Lead Auditor www.pecb.com The objective of the PECB Certified ISO 9001 Lead Auditor examination is to ensure that the candidate possesses

More information

Step Octal Number Binary Number Step Step

Step Octal Number Binary Number Step Step Binary Number: 101012 = Octal Number: 258 Shortcut method - Octal to Binary Steps Step 1 - Convert each octal digit to a 3 digit binary number (the octal digits may be treated as decimal for this conversion).

More information

CprE 281: Digital Logic

CprE 281: Digital Logic CprE 281: Digital Logic Instructor: Alexander Stoytchev http://www.ece.iastate.edu/~alexs/classes/ Binary Numbers CprE 281: Digital Logic Iowa State University, Ames, IA Copyright Alexander Stoytchev Administrative

More information

Numbers and Computers. Debdeep Mukhopadhyay Assistant Professor Dept of Computer Sc and Engg IIT Madras

Numbers and Computers. Debdeep Mukhopadhyay Assistant Professor Dept of Computer Sc and Engg IIT Madras Numbers and Computers Debdeep Mukhopadhyay Assistant Professor Dept of Computer Sc and Engg IIT Madras 1 Think of a number between 1 and 15 8 9 10 11 12 13 14 15 4 5 6 7 12 13 14 15 2 3 6 7 10 11 14 15

More information

Lecture (01) Introduction Number Systems and Conversion (1)

Lecture (01) Introduction Number Systems and Conversion (1) Lecture (01) Introduction Number Systems and Conversion (1) By: Dr. Ahmed ElShafee ١ Digital systems Digital systems are used in communication, business transactions, traffic control, spacecraft guidance,

More information

Beyond Base 10: Non-decimal Based Number Systems

Beyond Base 10: Non-decimal Based Number Systems Beyond Base : Non-decimal Based Number Systems What is the decimal based number system? How do other number systems work (binary, octal and hex) How to convert to and from nondecimal number systems to

More information

Browser Wars : Battles of Standards

Browser Wars : Battles of Standards Browser Wars : Battles of Standards CHARDONNEAU Innovation and Knowledge Management European Master in Business Studies 25/04/2009 Browser Wars Battles of Standards, Microsoft versus Netscape Topic : One

More information

Resource Inspections Canada Inc. Certification Scheme Requirements

Resource Inspections Canada Inc. Certification Scheme Requirements 1. Purpose To describe the requirements for certification scheme for certified calibration laboratory technician for dimensional calibrations conducted by Resource Inspections Canada Incorporated. This

More information

Applied Information and Communication Technology

Applied Information and Communication Technology Edexcel GCE Applied Information and Communication Technology Unit 9: Communications and Networks 10 28 May 2010 Assessment window 3 weeks Time: 10 hours You must have: Short treasury tag, cover sheet Paper

More information

CHW 261: Logic Design

CHW 261: Logic Design CHW 261: Logic Design Instructors: Prof. Hala Zayed Dr. Ahmed Shalaby http://www.bu.edu.eg/staff/halazayed14 http://bu.edu.eg/staff/ahmedshalaby14# Slide 1 Slide 2 Slide 3 Digital Fundamentals CHAPTER

More information

Number Systems and Binary Arithmetic. Quantitative Analysis II Professor Bob Orr

Number Systems and Binary Arithmetic. Quantitative Analysis II Professor Bob Orr Number Systems and Binary Arithmetic Quantitative Analysis II Professor Bob Orr Introduction to Numbering Systems We are all familiar with the decimal number system (Base 10). Some other number systems

More information

Kenya Certificate of Secondary Education (K.C.S.E)

Kenya Certificate of Secondary Education (K.C.S.E) Name. Adm No /. Date. Candidate s Signature 451/1 COMPUTER STUDIES Paper 1 2015 Time: 2 ½ Hours Kenya Certificate of Secondary Education (K.C.S.E) INSTRUCTIONS TO CANDIDATES - Write your name, School and

More information

Moodle WILLINGDON COLLEGE SANGLI. ELECTRONICS (B. Sc.-I) Introduction to Number System

Moodle WILLINGDON COLLEGE SANGLI. ELECTRONICS (B. Sc.-I) Introduction to Number System Moodle 1 WILLINGDON COLLEGE SANGLI ELECTRONICS (B. Sc.-I) Introduction to Number System E L E C T R O N I C S Introduction to Number System and Codes Moodle developed By Dr. S. R. Kumbhar Department of

More information

Digital Logic Circuits Volume I Digital Number Systems

Digital Logic Circuits Volume I Digital Number Systems PDHonline Course E377 (5 PDH) Digital Logic Circuits Volume I Digital Number Systems Instructor: Lee Layton, P.E 2012 PDH Online PDH Center 5272 Meadow Estates Drive Fairfax, VA 22030-6658 Phone & Fax:

More information

Cambridge International General Certificate of Secondary Education 0478 Computer Science June 2016 Principal Examiner Report for Teachers

Cambridge International General Certificate of Secondary Education 0478 Computer Science June 2016 Principal Examiner Report for Teachers COMPUTER SCIENCE Paper 0478/11 Paper 1 Key messages This syllabus has now been running for a few sessions and candidate s work continues to improve. There is a continued move to provide questions where

More information

UNIT - I: COMPUTER ARITHMETIC, REGISTER TRANSFER LANGUAGE & MICROOPERATIONS

UNIT - I: COMPUTER ARITHMETIC, REGISTER TRANSFER LANGUAGE & MICROOPERATIONS UNIT - I: COMPUTER ARITHMETIC, REGISTER TRANSFER LANGUAGE & MICROOPERATIONS (09 periods) Computer Arithmetic: Data Representation, Fixed Point Representation, Floating Point Representation, Addition and

More information

EXAM PREPARATION GUIDE

EXAM PREPARATION GUIDE EXAM PREPARATION GUIDE PECB Certified ISO 39001 Lead Auditor The objective of the PECB Certified ISO 39001 Lead Auditor examination is to ensure that the candidate has the knowledge and skills to plan

More information

Resource Inspections Canada Inc. Certification Scheme Requirements

Resource Inspections Canada Inc. Certification Scheme Requirements 1. Purpose To describe the requirements for certification scheme for certified calibration laboratory technician for mechanical calibrations conducted by Resource Inspections Canada Incorporated. This

More information

Academic Course Description

Academic Course Description BEC601 - COMPUTER COMMUNICATION AND NETWORKS Course (catalog) description Academic Course Description BHARATH UNIVERSITY Faculty of Engineering and Technology Department of Electronics and Communication

More information

Decimal/Binary Conversion on the Soroban

Decimal/Binary Conversion on the Soroban Decimal/Binary Conversion on the Soroban Conversion of a whole number from decimal to binary This method uses successive divisions by two, in place, utilizing a simple right-to-left algorithm. The division

More information

C A R I B B E A N E X A M I N A T I O N S C O U N C I L REPORT ON CANDIDATES WORK IN THE SECONDARY EDUCATION CERTIFICATE EXAMINATIONS MAY/JUNE 2010

C A R I B B E A N E X A M I N A T I O N S C O U N C I L REPORT ON CANDIDATES WORK IN THE SECONDARY EDUCATION CERTIFICATE EXAMINATIONS MAY/JUNE 2010 C A R I B B E A N E X A M I N A T I O N S C O U N C I L REPORT ON CANDIDATES WORK IN THE SECONDARY EDUCATION CERTIFICATE EXAMINATIONS MAY/JUNE 2010 INFORMATION TECHNOLOGY GENERAL PROFICIENCY Copyright

More information

EXAM PREPARATION GUIDE

EXAM PREPARATION GUIDE When Recognition Matters EXAM PREPARATION GUIDE PECB Certified ISO 22000 Lead Implementer www.pecb.com The objective of the Certified ISO 22000 Lead Implementer examination is to ensure that the candidate

More information

Professional Evaluation and Certification Board Frequently Asked Questions

Professional Evaluation and Certification Board Frequently Asked Questions Professional Evaluation and Certification Board Frequently Asked Questions 1. About PECB... 2 2. General... 2 3. PECB Official Training Courses... 4 4. Course Registration... 5 5. Certification... 5 6.

More information