2. This Question Booklet contains nine questions. Answer any SIX questions.

Size: px
Start display at page:

Download "2. This Question Booklet contains nine questions. Answer any SIX questions."

Transcription

1 PROGRESSIVE COMPREHENSIVE HIGH SCHOOL (PCHS) MANKON, BAMENDA 14 FEBRUARY 2014 ADVANCED LEVEL Subject/Code: Computer Science 795 Paper N Paper 2 Examiner DZEUGANG Placide TIME ALLOWED: 2 hours INSTRUCTIONS 1. This Question Booklet is your question paper. Do not write anything therein apart from your name and candidate number 2. This Question Booklet contains nine questions. Answer any SIX questions. 3. All questions carry 20 marks each. For your guidance, the approximate mark for each part of a question is indicated in brackets. 4. You are reminded of the necessity for good English and orderly presentation in your answer. 5. In calculations, you are advised to show all the steps in your working, giving your answer at each stage. 6. Clip board, log tables, slide rules, programmable calculator, cellular phone, pager and electronic gadgets in any form are not allowed. 7. Noiseless and cordless electronic calculators may be used. 8. The Answer Sheet must be handed over to the invigilator before leaving the examination hall. TURN OVER PCHS special mock February 2014/ Computer Science Paper 2 Page 1

2 Question 1 1- The diagram below represents essential features of a computer system. Study the diagram and answer the question the follows: (a) Name the components X, R, S and Q (4mks) (b) In the diagram above indicate the direction of data flow using arrows. (2mks) 2- Explain the concept of pipelining in microprocessor architecture 3- What is a bus width? Explain the influence of the data bus width on the performance of the computer 4- What is the difference between the following concepts (8 mks) (a) multiprocessing and multiprogramming (b) parallel and distributed processing (c) SRAM and DRAM (d) RISC and CISC architecture (at least two differences) Question 2 1. The diagram bellow shows coded data that could be input into a computer (a) What is the name of the above method of input (b) Where would the above method of input be applied? (c) For the application you have given in the above question, state two items of information this type of input may represent. 2- with reasons, briefly describe the most appropriate type of printer or output device for the output of: (6 mks) (a) customer invoices on multi-part stationery (b) letters to customers (c) detailed engineering designs 3- What is a terminal? Name two types of terminal with short description of each 4- State what is meant by each of the following and give an example of where each is used. PCHS special mock February 2014/ Computer Science Paper 2 Page 2

3 (a) Magnetic Ink Character Recognition (MICR) (b) Optical Mark Reader (OMR) 5- Distinguish LCD monitor and CRT monitor Question 3 1- What is structured programming? Name two approaches used in structured programming 2- Differentiate between a local variable and a global variable in programming. 3- What is the importance of program documentation for (4mks) (a) The end-user (b) A programmer 4- Study the following flowchart and answer the questions that follow. (a) Name and represent two programming constructs used in the flowchart (b) What does the flowchart generate as output? Show the dry execution. (c) Write a pseudocode that does the same thing as the flowchart above. Question 4 1- (a) What is a process? (b) Complete the following process state transition diagram and explain any of two transitions. 2- Give one advantage and one disadvantage of one of each the following process management algorithm (a) FCFS (b) SJF 3- Let s consider memory partitions of 100K, 500K, 200K, 300K and 600K (in order) and four processes P1, P2, P3 and P4 of 212K, 417K, 112K and 426K respectively. 100 K 500 K 200 K 300 K 600 (a) For each of the algorithm below, use a diagram to show how processes are allocated to memory partitions. (6 mks) i) first fit, ii) best fit iii) worst fit (b) Which algorithm makes the most efficient use of memory? 4- What is a safe state as for as deadlock is concern? PCHS special mock February 2014/ Computer Science Paper 2 Page 3

4 5- Assume we have nine tape drives. Using the Banker algorithm, consider whether or not the following states are safe or unsafe. Process Current Loan Maximum Need A 0 3 B 3 5 C 4 7 Process Current Loan Maximum Need A 5 7 B 2 5 C 1 3 Question 5 1- Give the acronym name for the following i) BCD ii) ASCII 2- Bit patterns can be interpreted in a number of different ways. A character in a computer is represented by the bit pattern What is its decimal value if it represents: (a) a pure binary integer (b) a BCD (Binary Coded Decimal)? 3- x is a digit such that (2x0) 10 = (x0x) 7. Determine the value of x 4- A particular high-level language supports a type 'string' that is used to represent a sequence of characters stored as ASCII codes. A typical such string variable representing 'ABCDE' is stored in memory in following way. All bytes are shown in hexadecimal. The first byte is not one of the characters of the string Etc. (a) The first byte is not one of the characters of the string. Explain its purpose (2mks) (b) State, with reasons, the maximum number of characters that could be stored in such a string representation (c) Show the memory representation of the string PLACIDE in such a memory(2mks) 5- A burglar alarm system for a house is controlled by a switch. When the switch (S) is on, the alarm (A) sounds if either the front door (F) or back door (B) or both doors are opened. The alarm will not work if the switch is off. (a) Draw the truth table of the circuit managing the alarm burglar system. (b) Find the Boolean function corresponding to the above truth table and simplify it using karnaugh map. (c) Design a circuit of logic gates for the alarm system Question 6 1- Explain briefly the difference between the following concepts with appropriate examples 2- Explain the difference between the user's logical view of the database and the physical database. 3- Using appropriate examples, describe two of the following three types of relationships: i) One-to-one ii) One-to-many iii) Many-to-many PCHS special mock February 2014/ Computer Science Paper 2 Page 4

5 4- Read the following narrative and answer the questions that follow. Get_Well_Soon clinic is a veterinary clinic owned by a few veterinarians in a small rural town. The vets would like to set up a database to keep track of their operations. These operations relate to the clinic s doctors, various animals the veterinarians attend to, and the animals owners. For each Doctor a social security number, name, address, phone number, and salary are maintained. Doctors attend to the animals. A doctor may attend to more than one animal and an animal may be attended to by more than one doctor. Each animal is identified by a unique id. In addition, the kind (such as horse), the gender, and the age of the animal is also maintained. For each owner of an animal, an account number, an address, a phone number, and the balance in the account is maintained. An animal must be owned by exactly one owner, but an owner may own zero or more animal. Required a) Identify all the entities (tables) in the above narrative and the various attributes for each. The primary key should be underlined. (6 mks) b) Prepare an ERD for the above scenario showing all relationship constraints. (5 mks) Question 7 F 0 = 0 1- Let s consider the Fibonacci sequence defined as follow F 1 = 1 F n = F n 1 + F n 2 (a) What is a recursive function? (b) By the use of a graph show the dry execution to calculate F(4) (c) Write a recursive function which calculate F(n) 2- Let s consider the following expression tree (a) Generate the arithmetic expression represented by the tree in postfix, infix and prefix notations (3mks) (b) Explain how a postfix expression can be evaluated with a stack using the following example (a) Explain the principle of selection sort (b) Use the selection sort to sort the following list. All the steps should be given Question 8 1- A company has decided to computerize their operations. They have decided to purchase packages instead of developing their own programs. Give two advantages and two disadvantages of this approach. 2- State three differences between Windows and Linux operating systems PCHS special mock February 2014/ Computer Science Paper 2 Page 5

6 3- (a) Define The Turing Machine and describe its functioning (b) What is the Church-Turing thesis? (c) State what it means by i) Halting problem ii) Computable problem 4- Knowing that a DVR-ROM is 4.7 GB and a CD-ROM is 700 MB, How many CD-ROM do we need to store the content of a full DVD-ROM? (Take 1GB=1024 MB) (3mks) Question 9: 1- Let s consider the following table employee_project below which keeps track of employees working on certain projects Emplyee_project Project Project Employee Employee name Rate Hourly rate number name number category 1023 travel site 11 Vincent Radebe A $ travel site 12 Pauline James B $ travel site 16 Charles Ramoraz C $ estate agency 11 Vincent Radebe A $ estate agency 17 Monique Williams B $50 (a) What is normalization? (b) Justify that the table is in 1NF. (c) What are the rules of the 2NF? Put the table in 2NF (5 mks) 2- Let s consider the following tables (a) What is a primary key? Identify the primary key of each of the tables. (b) Define foreign key and composite key (2mks) (c) Is there any foreign key in one of these tables? Any composite key? (d) What is the result of the following SQL command: i) SELECT title, time FROM Track WHERE Num = 1 ii) SELECT Track.Title, CD.Title FROM Track, CD WHERE CD.cID = Track.cID AND Track.Num = 2 (e) Write the following SQL command i) Find a list of all the CD titles. ii) Find a list of the titles and the time of tracks that are more than 300 seconds long. Your success is in Jesus-Christ!!! PCHS special mock February 2014/ Computer Science Paper 2 Page 6

2. This Question Booklet contains nine questions. Answer any SIX questions.

2. This Question Booklet contains nine questions. Answer any SIX questions. PROGRESSIVE COMPREHENSIVE HIGH SCHOOL (PCHS) MANKON, BAMENDA APRIL 2014 Subject/Code: Computer Science 795 Paper N Paper 2 Examiner DZEUGANG Placide ADVANCED LEVEL TIME ALLOWED: 2 hours INSTRUCTIONS 1.

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

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

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

CE161-4-AU UNIVERSITY OF ESSEX. Undergraduate Examinations 2014 DIGITAL SYSTEMS ARCHITECTURE. Time allowed: TWO hours

CE161-4-AU UNIVERSITY OF ESSEX. Undergraduate Examinations 2014 DIGITAL SYSTEMS ARCHITECTURE. Time allowed: TWO hours CE161-4-AU UNIVERSITY OF ESSEX Undergraduate Examinations 2014 DIGITAL SYSTEMS ARCHITECTURE Time allowed: TWO hours The following items are provided: Graph paper (available on invigilator s desk) Candidates

More information

GCE A level 1103/01 COMPUTING CG3

GCE A level 1103/01 COMPUTING CG3 GCE A level 1103/01 COMPUTING CG3 A.M. TUESDAY, 17 June 2014 3 hours 1103 010001 ADDITIONAL MATERIALS You will need a WJEC 20 page answer booklet (pink), which has been specifically designed for the examination

More information

5. (a) What is secondary storage? How does it differ from a primary storage? (b) Explain the functions of (i) cache memory (ii) Register

5. (a) What is secondary storage? How does it differ from a primary storage? (b) Explain the functions of (i) cache memory (ii) Register General Concepts 1. (a) What are combinational circuits? (b) Perform the following: (i) Convert (0.5625) 10 = ( ) 2 (ii) (010010) 2 (100011) 2 = ( ) 2 2. (a) Using truth table prove that A B= A+ B (b)

More information

Caribbean Secondary Education Examination

Caribbean Secondary Education Examination FORM TP22230 Test Code 012299020 Mock Exam (March) 2013 CARIBBEAN EXAMINATIONS COUNCIL Caribbean Secondary Education Examination INFORMATION TECHNOLOGY PAPER 2 2 Hours March 2013 (a.m.) I N S T R U C T

More information

Angel International School - Manipay 1 st Term Examination November, 2015 ICT

Angel International School - Manipay 1 st Term Examination November, 2015 ICT Grade 07 Angel International School - Manipay 1 st Term Examination November, 2015 ICT I. Underline the correct answer. Duration: 2 Hours Index No:- 1) Components of a computer CPU are (a) ALU, CU (b)

More information

Question Bank BCA-T111: Computer Fundamentals 1. What is Computer? Why is it also known as a data processor? 2. What is data processing?

Question Bank BCA-T111: Computer Fundamentals 1. What is Computer? Why is it also known as a data processor? 2. What is data processing? Question Bank BCA-T111: Computer Fundamentals 1. What is Computer? Why is it also known as a data processor? 2. What is data processing? Differenciate between data and information. Whis is more useful

More information

GOZO COLLEGE. Boys Secondary Victoria - Gozo, Malta Ninu Cremona. Half Yearly Examination

GOZO COLLEGE. Boys Secondary Victoria - Gozo, Malta Ninu Cremona. Half Yearly Examination GOZO COLLEGE Boys Secondary Victoria - Gozo, Malta Ninu Cremona Half Yearly Examination 2010 2011 Subject: Form: Time: COMPUTER STUDIES 4 Junior Lyceum 1 hr 30 min NAME: CLASS: INDEX NO: Instructions to

More information

Code No: R Set No. 1

Code No: R Set No. 1 Code No: R05010106 Set No. 1 1. (a) Draw a Flowchart for the following The average score for 3 tests has to be greater than 80 for a candidate to qualify for the interview. Representing the conditional

More information

PART A (22 Marks) 2. a) Briefly write about r's complement and (r-1)'s complement. [8] b) Explain any two ways of adding decimal numbers.

PART A (22 Marks) 2. a) Briefly write about r's complement and (r-1)'s complement. [8] b) Explain any two ways of adding decimal numbers. Set No. 1 IV B.Tech I Semester Supplementary Examinations, March - 2017 COMPUTER ARCHITECTURE & ORGANIZATION (Common to Electronics & Communication Engineering and Electronics & Time: 3 hours Max. Marks:

More information

Angel International School - Manipay 2 nd Term Examination March, 2016 Computing

Angel International School - Manipay 2 nd Term Examination March, 2016 Computing c Grade 10 Angel International School - Manipay 2 nd Term Examination March, 2016 Computing Duration: xx Hours Index No:- 1) The storage medium uses sequential data access method is: a) Hard disk b) Floppy

More information

Aryan College. Computer Fundamental. Introduction to Computer System

Aryan College. Computer Fundamental. Introduction to Computer System Computer Fundamental Unit 1 Introduction to Computer System 1. List various characteristics of computer. (2017) 2. Give name of two super computers. (2017) 3. What do you mean by system software? (2017)

More information

B1.1-R3: IT TOOLS AND APPLICATIONS

B1.1-R3: IT TOOLS AND APPLICATIONS B1.1-R3: IT TOOLS AND APPLICATIONS NOTE: 1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and PART TWO contains FIVE questions. 2. PART ONE is to be answered in the TEAR-OFF

More information

FORM 5 COMPUTING TIME: 1h 45min

FORM 5 COMPUTING TIME: 1h 45min DIRECTORATE FOR QUALITY AND STANDARDS IN EDUCATION Curriculum Management and elearning Department Educational Assessment Unit Annual Examinations for Secondary Schools 2014 Track 3 FORM 5 COMPUTING TIME:

More information

ST.FRANCIS SECONDARY SCHOOL SLIEMA HALF YEARLY EXAMINATIONS SPECIMEN PAPER. SENIOR 3 COMPUTER STUDIES TIME: 2 hours

ST.FRANCIS SECONDARY SCHOOL SLIEMA HALF YEARLY EXAMINATIONS SPECIMEN PAPER. SENIOR 3 COMPUTER STUDIES TIME: 2 hours Name: Index: Class: ST.FRANCIS SECONDARY SCHOOL SLIEMA HALF YEARLY EXAMINATIONS SENIOR 3 COMPUTER STUDIES TIME: 2 hours The use of CALCULATORS is NOT ALLOWED!! Answer ALL questions!! 1: The following diagrams

More information

YEAR 11 COMPUTING TIME: 1h 45min. Marking Scheme

YEAR 11 COMPUTING TIME: 1h 45min. Marking Scheme DIRECTORATE FOR QUALITY AND STANDARDS IN EDUCATION Department of Curriculum Management Educational Assessment Unit Annual Examinations for Secondary Schools 2017 Track 3 YEAR 11 COMPUTING TIME: 1h 45min

More information

COMPUTER SCIENCE Paper 1

COMPUTER SCIENCE Paper 1 COMPUTER SCIENCE Paper 1 (THEORY) (Three hours) Maximum Marks: 70 (Candidates are allowed additional 15 minutes for only reading the paper. They must NOT start writing during this time) -----------------------------------------------------------------------------------------------------------------------

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 *2898775305* COMPUTER SCIENCE 9608/11 Paper 1 Theory Fundamentals October/November 2017 1 hour 30 minutes

More information

M.C.A. DEGREE EXAMINATION, MAY First Year. Paper I INFORMATION TECHNOLOGY. SECTION A (3 15 = 45 marks) Answer any THREE of the following.

M.C.A. DEGREE EXAMINATION, MAY First Year. Paper I INFORMATION TECHNOLOGY. SECTION A (3 15 = 45 marks) Answer any THREE of the following. Paper I INFORMATION TECHNOLOGY Answer any THREE of the following. 1. Explain Architecture of computer in detail. 2. Explain in detail about Input and Output technologies. 3. What is MODEM? What factors

More information

Computer Studies Theory Paper 840/1

Computer Studies Theory Paper 840/1 NAME stream.signature. Computer Studies Theory Paper 840/1 2½ mu Hours SHAMMAH HIGH SCHOOL EXAMINATION COUNCIL INSTRUCTIONS TO CANDIDATES: SENIOR THREE END OF TERM TWO 2018 COMPUTER STUDIES PAPER 1 2 HOURS

More information

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

M.Sc. (Previous) DEGREE EXAMINATION, MAY First Year Information Technology. Time : 03 Hours Maximum Marks : 75

M.Sc. (Previous) DEGREE EXAMINATION, MAY First Year Information Technology. Time : 03 Hours Maximum Marks : 75 M.Sc. (Previous) DEGREE EXAMINATION, MAY - 2013 First Year Information Technology Paper - I : BASICS OF INFORMATION TECHNOLOGY (DMSIT01) Time : 03 Hours Maximum Marks : 75 Section - A (3 15 = 45) Answer

More information

This paper consists of 27 pages and the instructions for the completion of a mark-reading sheet.

This paper consists of 27 pages and the instructions for the completion of a mark-reading sheet. This paper consists of 27 pages and the instructions for the completion of a mark-reading sheet. Please complete the attendance register on the back page, tear it off and hand it to the invigilator. Instructions:

More information

Advanced Diploma in Computer Science (907) Computer Systems Architecture

Advanced Diploma in Computer Science (907) Computer Systems Architecture Advanced Diploma in Computer Science (907) Computer Systems Architecture Prerequisites: Good computing knowledge Corequisites: A pass or better in Diploma in System Analysis & Design or equivalence. Aim:

More information

CHETTINAD COLLEGE OF ENGINEERING AND TECHNOLOGY COMPUTER ARCHITECURE- III YEAR EEE-6 TH SEMESTER 16 MARKS QUESTION BANK UNIT-1

CHETTINAD COLLEGE OF ENGINEERING AND TECHNOLOGY COMPUTER ARCHITECURE- III YEAR EEE-6 TH SEMESTER 16 MARKS QUESTION BANK UNIT-1 CHETTINAD COLLEGE OF ENGINEERING AND TECHNOLOGY COMPUTER ARCHITECURE- III YEAR EEE-6 TH SEMESTER 16 MARKS QUESTION BANK UNIT-1 Data representation: (CHAPTER-3) 1. Discuss in brief about Data types, (8marks)

More information

COMPUTER SCIENCE PAPER 1

COMPUTER SCIENCE PAPER 1 COMPUTER SCIENCE PAPER 1 (THEORY) (Maximum Marks: 70) (Time allowed: Three hours) (Candidates are allowed additional 15 minutes for only reading the paper. They must NOT start writing during this time.)

More information

Answer any Five Questions. All questions carry equal marks.

Answer any Five Questions. All questions carry equal marks. PART II, PAPER XII (Object Oriented Analysis and Design) 1. What are the benefits of object oriented development over structure development. How one way association is different than two way association.

More information

MRIEHEL SECONDARY SCHOOL HALF-YEARLY EXAMINATIONS 2016~17. Year 9 Computing Time: 1hr 30mins

MRIEHEL SECONDARY SCHOOL HALF-YEARLY EXAMINATIONS 2016~17. Year 9 Computing Time: 1hr 30mins MRIEHEL SECONDARY SCHOOL HALF-YEARLY EXAMINATIONS 2016~17 Year 9 Computing Time: 1hr 30mins Name: Class: Please read the following instructions carefully: 1. Answer ALL the questions in the space provided

More information

INPUT AND OUTPUT DEVICES. Blu-ray disc Graph plotter Graphics tablet Optical mark reader Projector Web cam

INPUT AND OUTPUT DEVICES. Blu-ray disc Graph plotter Graphics tablet Optical mark reader Projector Web cam INPUT AND OUTPUT DEVICES 1. Ring two items which are output devices. Blu-ray disc Graph plotter Graphics tablet Optical mark reader Projector Web cam 2. Draw five lines on the diagram to match the input

More information

Personalised Learning Checklist ( ) SOUND

Personalised Learning Checklist ( ) SOUND Personalised Learning Checklist (2015-2016) Subject: Computing Level: A2 Name: Outlined below are the topics you have studied for this course. Inside each topic area you will find a breakdown of the topic

More information

Padasalai s - VIRUDHUNAGAR DISTRICT COMMON FIRST MID TERM TEST, JULY 2018 STANDARD 11 COMPUTER APPLICATION

Padasalai s - VIRUDHUNAGAR DISTRICT COMMON FIRST MID TERM TEST, JULY 2018 STANDARD 11 COMPUTER APPLICATION Padasalai s - VIRUDHUNAGAR DISTRICT COMMON FIRST MID TERM TEST, JULY 2018 I. CHOOSE THE CORRECT ANSWER: 1. C. Power on Self Test 2. d. Optical character reader 3. b. 2 4. c. Peta 5. d. a and b 6. b. 111,

More information

Draw a diagram of an empty circular queue and describe it to the reader.

Draw a diagram of an empty circular queue and describe it to the reader. 1020_1030_testquestions.text Wed Sep 10 10:40:46 2014 1 1983/84 COSC1020/30 Tests >>> The following was given to students. >>> Students can have a good idea of test questions by examining and trying 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 *7825200973* COMPUTER SCIENCE 9608/32 Paper 3 Advanced Theory October/November 2018 1 hour 30 minutes

More information

Angel International School - Manipay

Angel International School - Manipay Grade 10 Angel International School - Manipay 3 rd Term Examination July, 2017 ICT Duration: xx Hours Index No :- 1) PASCAL is a : a) Low level language b) High Level language 2) Who is the creator of

More information

Cambridge International Examinations Cambridge International Advanced Level

Cambridge International Examinations Cambridge International Advanced Level Cambridge International Examinations Cambridge International Advanced Level *8275126887* COMPUTING 9691/31 Paper 3 May/June 2015 2 hours Candidates answer on the Question Paper. No Additional Materials

More information

BACHELORS IN COMPUTER APPLICATIONS COMPUTER NETWORKS PAPER CODE: BCA-401

BACHELORS IN COMPUTER APPLICATIONS COMPUTER NETWORKS PAPER CODE: BCA-401 BACHELORS IN COMPUTER APPLICATIONS COMPUTER NETWORKS PAPER CODE: BCA-401 SECTION-A Answer the following questions in around 100 words. 1. What information is contained in the control field of HDLC protocol?

More information

ZONAL EDUCATION OFFICE - JAFFNA

ZONAL EDUCATION OFFICE - JAFFNA ZONAL EDUCATION OFFICE - JAFFNA SECOND TERM EXAMINATION - 2014 Information and Communication Technology Grade 10 Time : 3 Hours Answer all the questions Part I 01. Which of the following is correct chronological

More information

CPT1. Unit 1 Computer Systems, Programming and Networking Concepts. General Certificate of Education January 2004 Advanced Subsidiary Examination

CPT1. Unit 1 Computer Systems, Programming and Networking Concepts. General Certificate of Education January 2004 Advanced Subsidiary Examination Surname Other Names Leave blank Centre Number Candidate Number Candidate Signature General Certificate of Education January 2004 Advanced Subsidiary Examination COMPUTING Unit 1 Computer Systems, Programming

More information

15110 PRINCIPLES OF COMPUTING SAMPLE EXAM 2

15110 PRINCIPLES OF COMPUTING SAMPLE EXAM 2 15110 PRINCIPLES OF COMPUTING SAMPLE EXAM 2 Name Section Directions: Answer each question neatly in the space provided. Please read each question carefully. You have 50 minutes for this exam. No electronic

More information

Cambridge International Examinations Cambridge International General Certificate of Secondary Education

Cambridge International Examinations Cambridge International General Certificate of Secondary Education Cambridge International Examinations Cambridge International General Certificate of Secondary Education *0720829747* COMPUTER SCIENCE 0478/12 Paper 1 Theory October/November 2016 1 hour 45 minutes Candidates

More information

Switching to AQA from OCR

Switching to AQA from OCR Switching to AQA from OCR This resource compares our new GCSE Computer Science specification (8520) with the new OCR Computer Science specification (J276). If you are thinking of switching from OCR to

More information

Note: Select one full question from each unit

Note: Select one full question from each unit P.E.S COLLEGE OF ENGINEERING, MANDYA-571401 (An Autonomous Institution Under VTU Belgaum) Department of Master of Computer Applications Model Question Paper Data Structures Using C (P18MCA21) Credits :

More information

KULLEĠĠ SAN BENEDITTU Boys Secondary, Kirkop

KULLEĠĠ SAN BENEDITTU Boys Secondary, Kirkop KULLEĠĠ SAN BENEDITTU Boys Secondary, Kirkop Mark HALF-YEARLY EXAMINATION 2012/2013 Track 3 (JL) FORM 3 COMPUTING TIME: 1h 30min Question 1 2 3 4 5 6 7 8 Max. Mark 12 18 18 20 5 5 10 12 Mark Global Mark

More information

ST. MARY S COLLEGE FORM 4

ST. MARY S COLLEGE FORM 4 Term 1 Week 1 Week 2 FUNDAMENTALS OF HARDWARE AND SOFTWARE 1. The generalpurpose computer system 2. Functions of the major hardware components of a computer system 3. Functions and uses of primary storage

More information

KULLEĠĠ SAN BENEDITTU Secondary School, Kirkop

KULLEĠĠ SAN BENEDITTU Secondary School, Kirkop KULLEĠĠ SAN BENEDITTU Secondary School, Kirkop Mark HALF-YEARLY EXAMINATION 2014/2015 Level 5-8 FORM 3 COMPUTING TIME: 1h 30min Question 1 2 3 4 5 6 7 8 9 10 11 Global Mark Max. Mark 5 10 10 10 10 10 10

More information

CONTENTS. Chapter 1 Introduction and Evolution of Computer

CONTENTS. Chapter 1 Introduction and Evolution of Computer CONTENTS Chapter 1 Introduction and Evolution of Computer 1.1 Concept and Characteristics of Computer... 2 1.2 Application of Computers... 6 1.3 History of Computer... 8 Mechanical Calculating Era... 8

More information

JNTUWORLD. 1. Discuss in detail inter processor arbitration logics and procedures with necessary diagrams? [15]

JNTUWORLD. 1. Discuss in detail inter processor arbitration logics and procedures with necessary diagrams? [15] Code No: 09A50402 R09 Set No. 2 1. Discuss in detail inter processor arbitration logics and procedures with necessary diagrams? [15] 2. (a) Discuss asynchronous serial transfer concept? (b) Explain in

More information

This paper is not to be removed from the Examination Halls

This paper is not to be removed from the Examination Halls ~~IS1168 ZB d0 This paper is not to be removed from the Examination Halls UNIVERSITY OF LONDON IS1168 ZB BSc degrees and Diplomas for Graduates in Economics, Management, Finance and the Social Sciences,

More information

Sai Nath University. Assignment For MCA 1 st

Sai Nath University. Assignment For MCA 1 st Sai Nath University Assignment For MCA 1 st Sem. The Assignment will consist of two parts, A and B. will have 5 short answer questions(40-60 words) of 4 marks each. will have 4 long answer questions of

More information

elc International School

elc International School Subject: COMPUTER SCIENCE (0478) Syllabus 2016 Topics to be covered Section 1: Theory of Computer Science Theory: At the end of the section candidates should be able to Practical: At the end of the section

More information

QUESTION BANK UNIT-I. 4. With a neat diagram explain Von Neumann computer architecture

QUESTION BANK UNIT-I. 4. With a neat diagram explain Von Neumann computer architecture UNIT-I 1. Write the basic functional units of computer? (Nov/Dec 2014) 2. What is a bus? What are the different buses in a CPU? 3. Define multiprogramming? 4.List the basic functional units of a computer?

More information

Section Question Candidates Score A 1-15

Section Question Candidates Score A 1-15 Name. 451/1 Computer Studies Paper 1 (THEORY) July 2013 2½ hours KENYA NATIONAL EXAMINATION COUNCIL SUPA JET EXAMINATION Computer Studies Paper 1 (THEORY) 2½ hours INSTRUCTIONS TO CANDIDATES Index Number

More information

COMPUTER SCIENCE. Paper 1

COMPUTER SCIENCE. Paper 1 COMPUTER SCIENCE Paper 1 (THEORY) Three hours (Candidates are allowed additional 15 minutes for only reading the paper. They must NOT start writing during this time) ----------------------------------------------------------------------------------------------------------------------------------

More information

MULTIMEDIA COLLEGE JALAN GURNEY KIRI KUALA LUMPUR

MULTIMEDIA COLLEGE JALAN GURNEY KIRI KUALA LUMPUR STUDENT IDENTIFICATION NO MULTIMEDIA COLLEGE JALAN GURNEY KIRI 54100 KUALA LUMPUR SECOND SEMESTER FINAL EXAMINATION, 2013/2014 SESSION ITC2223 COMPUTER ORGANIZATION & ARCHITECTURE DSEW-E-F 1/13 18 FEBRUARY

More information

SIR MICHELANGELO REFALO

SIR MICHELANGELO REFALO SIR MICHELANGELO REFALO SIXTH FORM Annual Exam 2014 Name: COMPUTING ADV 2 ND 3hrs Section A This question is Compulsory of 16 marks Consider carefully the following 2 classes and answer the related questions

More information

ASSIGNMENT-1 M.Sc. DEGREE EXAMINATION, MAY 2018 (First Year) INFORMATION TECHNOLOGY Basics of Information Technology

ASSIGNMENT-1 M.Sc. DEGREE EXAMINATION, MAY 2018 (First Year) INFORMATION TECHNOLOGY Basics of Information Technology ASSIGNMENT-1 () Basics of Information Technology (DMSIT01) Q1) Discuss in detail about IT support at different organizational levels. Q2) Explain about hierarchy of computers. Q3) Discuss different categories

More information

INTRODUCTION TO COMPUTERS

INTRODUCTION TO COMPUTERS INTRODUCTION TO COMPUTERS When we talk about computers, we really are talking about a Computer System. Computer System: It is a combination of Hardware and Software. This combination allows a computer

More information

Bits and Bit Patterns

Bits and Bit Patterns Bits and Bit Patterns Bit: Binary Digit (0 or 1) Bit Patterns are used to represent information. Numbers Text characters Images Sound And others 0-1 Boolean Operations Boolean Operation: An operation that

More information

Angel International School - Manipay 2 nd Term Examination March, 2018 Ict

Angel International School - Manipay 2 nd Term Examination March, 2018 Ict c Grade 10 Angel International School - Manipay 2 nd Term Examination March, 2018 Ict Duration: 03:00 Hours Index No:- Part I 1) A computer that is optimized to provide services to other computers over

More information

Computers Are Your Future

Computers Are Your Future Computers Are Your Future 2008 Prentice-Hall, Inc. Computers Are Your Future Chapter 6 Inside the System Unit 2008 Prentice-Hall, Inc. Slide 2 What You Will Learn... Understand how computers represent

More information

COURSE OUTLINE & WEEK WISE BREAKAGE

COURSE OUTLINE & WEEK WISE BREAKAGE COURSE OUTLINE & WEEK WISE BREAKAGE Week wise Course outline of Computer Fundamentals & Programming (CE-100) 3+1 (Batch 2018-Electronic Engineering) Dated: 13-12-2017 Course Coordinator: Saeed Azhar WEEK

More information

N.B. These pastpapers may rely on the knowledge gained from the previous chapters.

N.B. These pastpapers may rely on the knowledge gained from the previous chapters. N.B. These pastpapers may rely on the knowledge gained from the previous chapters. 1 SEC 94-PAPER 1-Q3B Briefly explain the purpose of the PROGRAM COUNTER 2 SEC 94-PAPER 2A-Q4 (a) Why is a 16-bit 60 MHz

More information

(DMCA101) M.C.A. DEGREE EXAMINATION, MAY First Year INFORMATION TECHNOLOGY

(DMCA101) M.C.A. DEGREE EXAMINATION, MAY First Year INFORMATION TECHNOLOGY (DMCA101) M.C.A. DEGREE EXAMINATION, MAY - 2017 First Year INFORMATION TECHNOLOGY Time : 3 Hours Maximum Marks : 70 SECTION - A (3 15 = 45) Answer any three of the following Q1) Discuss business pressures

More information

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

MOKASA JOINT EXAMINATION Kenya Certificate of Secondary Education (K.C.S.E) Name. Adm. No Date.. Student s Signature.. 451/1 COMPUTER STUDIES PAPER 1 (THEORY) MARCH 2013 TIME: 2 ½ HRS MOKASA JOINT EXAMINATION Kenya Certificate of Secondary Education (K.C.S.E) 451/1 COMPUTER STUDIES

More information

2c. Content of Computer systems (Component 01)

2c. Content of Computer systems (Component 01) c. Content of Computer systems (Component 01) This component will introduce learners to the internal workings of the Central Processing Unit (CPU), the exchange of data and will also look at software development,

More information

ISC 2011 COMPUTER SCIENCE PAPER 1 THEORY

ISC 2011 COMPUTER SCIENCE PAPER 1 THEORY ISC 2011 COMPUTER SCIENCE PAPER 1 THEORY Question 1. a) State the two absorption laws. Verify any one of them using truth table. b) Reduce the following expression : F(A,B,C)= (0,1,2,3,4,5,6,7) Also find

More information

Reader's Guide Outline of the Book A Roadmap For Readers and Instructors Why Study Computer Organization and Architecture Internet and Web Resources

Reader's Guide Outline of the Book A Roadmap For Readers and Instructors Why Study Computer Organization and Architecture Internet and Web Resources Reader's Guide Outline of the Book A Roadmap For Readers and Instructors Why Study Computer Organization and Architecture Internet and Web Resources Overview Introduction Organization and Architecture

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS General Certificate of Education Advanced Subsidiary Level and Advanced Level

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS General Certificate of Education Advanced Subsidiary Level and Advanced Level UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS General Certificate of Education Advanced Subsidiary Level and Advanced Level *5040454558* COMPUTING 9691/11 Paper 1 May/June 2012 1 hour 30 minutes Candidates

More information

All Rights Reserved Index No. SCHOOL OF ACCOUNTING AND BUSINESS BSc. (APPLIED ACCOUNTING) GENERAL / SPECIAL DEGREE PROGRAMME

All Rights Reserved Index No. SCHOOL OF ACCOUNTING AND BUSINESS BSc. (APPLIED ACCOUNTING) GENERAL / SPECIAL DEGREE PROGRAMME All Rights Reserved Index No No. of Pages - 10 No of Questions - 05 SCHOOL OF ACCOUNTING AND BUSINESS BSc. (APPLIED ACCOUNTING) GENERAL / SPECIAL DEGREE PROGRAMME YEAR I SEMESTER I INTAKE VIII (GROUP B)

More information

KIHARU/KAHURO DISTRICT JOINT EXAMINATION 2013

KIHARU/KAHURO DISTRICT JOINT EXAMINATION 2013 NAME.. SCHOOL.. 451/1 COMPUTER STUDIES PAPER 1 (THEORY) JULY/AUGUST 2013 TIME: 2½ HOURS INDEX NO... CANDIDATES SIGNATURE. DATE. KIHARU/KAHURO DISTRICT JOINT EXAMINATION 2013 Kenya Certificate of Secondary

More information

(DMCA 101) M.C.A.(Previous) DEGREE EXAMINATION, MAY 2006 PAPER - I - INFORMATION TECHNOLOGY

(DMCA 101) M.C.A.(Previous) DEGREE EXAMINATION, MAY 2006 PAPER - I - INFORMATION TECHNOLOGY 1 (DMCA 101) PAPER - I - INFORMATION TECHNOLOGY 1. What is a computer based information system? Discuss the general technological trends for information technology. 2. (a) Describe the four main types

More information

WYSE Academic Challenge Computer Fundamentals Test (State Finals)

WYSE Academic Challenge Computer Fundamentals Test (State Finals) WYSE Academic Challenge Computer Fundamentals Test (State Finals) - 1998 1. What is the decimal value for the result of the addition of the binary values: 1111 + 0101? (Assume a 4 bit, 2's complement representation.)

More information

BAHAUDDIN ZAKARIYA UNIVERSITY Department of Information Technology

BAHAUDDIN ZAKARIYA UNIVERSITY Department of Information Technology 2017 Comprehensive Sample Paper Page 1 of 15 BAHAUDDIN ZAKARIYA UNIVERSITY Department of Information Technology Instructions Comprehensive Examination MIT (2014-2016) Date: This exam has 7 sections on

More information

AQA GCSE Computer Science PLC

AQA GCSE Computer Science PLC 1 - Fundamentals of Algorithms Useful Websites BBC Bite Size Cambridge GCSE Exam Dates https://www.bbc.co.uk/education/subjects/z34k7ty Paper 1 14/05/2018 am https://www.cambridgegcsecomputing.org/ Paper

More information

G.C.E. (A/L) Examination July 2016 Conducted by Field Work Center, Thondaimanaru

G.C.E. (A/L) Examination July 2016 Conducted by Field Work Center, Thondaimanaru G.C.E. (A/L) Examination July 2016 Conducted by Field Work Center, Thondaimanaru In Collaboration with the Zonal Education Office, Jaffna Information & Communication Technology (ICT) Grade - 12 (A/L) 2017

More information

Syllabus of B.A./B.Sc. Computer Application

Syllabus of B.A./B.Sc. Computer Application Syllabus of B.A./B.Sc. Computer Application B.A./B.Sc. I Year (effective from 2008-09) Theory: I Paper : Introduction to Computer & Operating System II Paper : Programming in 'C' III Paper : PC Software

More information

Learning objectives. Computer principles The characteristics of contemporary processors, input, output and storage devices

Learning objectives. Computer principles The characteristics of contemporary processors, input, output and storage devices Learning objectives Computer principles 1.1. The characteristics of contemporary processors, input, output and storage devices Components of a computer and their uses 1.1.1 Structure and function of the

More information

GCE A level 1103/01 COMPUTING CG3

GCE A level 1103/01 COMPUTING CG3 GCE A level 1103/01 COMPUTING CG3 P.M. THURSDAY, 26 January 2012 3 hours 1103 010001 ADDITIONAL MATERIALS In addition to this examination paper, you will need a 20 page answer book. INSTRUCTIONS TO CANDIDATES

More information

CIS 1.5 Course Objectives. a. Understand the concept of a program (i.e., a computer following a series of instructions)

CIS 1.5 Course Objectives. a. Understand the concept of a program (i.e., a computer following a series of instructions) By the end of this course, students should CIS 1.5 Course Objectives a. Understand the concept of a program (i.e., a computer following a series of instructions) b. Understand the concept of a variable

More information

5 Computer Organization

5 Computer Organization 5 Computer Organization 5.1 Foundations of Computer Science Cengage Learning Objectives After studying this chapter, the student should be able to: List the three subsystems of a computer. Describe the

More information

Year 10 OCR GCSE Computer Science (9-1)

Year 10 OCR GCSE Computer Science (9-1) 01 4 th September 02 11 th September 03 18 th September Half Term 1 04 25 th September 05 2 nd October 06 9 th October 07 16 th October NA Students on in school Thursday PM and Friday Only Unit 1, Lesson

More information

M.C.A. DEGREE EXAMINATION, MAY First Year Paper - I : INFORMATION TECHNOLOGY. Time : 03 Hours Maximum Marks : 75

M.C.A. DEGREE EXAMINATION, MAY First Year Paper - I : INFORMATION TECHNOLOGY. Time : 03 Hours Maximum Marks : 75 M.C.A. DEGREE EXAMINATION, MAY - 2013 First Year Paper - I : INFORMATION TECHNOLOGY (DMCA 101) Time : 03 Hours Maximum Marks : 75 Section - A (3 15 = 45) Answer any Three of the following 1) What is the

More information

BACHELOR OF COMPUTER APPLICATIONS (BCA)

BACHELOR OF COMPUTER APPLICATIONS (BCA) BACHELOR OF COMPUTER APPLICATIONS (BCA) BCA/ASSIGN/IV/YEAR/2012 ASSIGNMENTS Year, 2012 (4 th Semester (Pre-Revised) ) CS-06 CS-64 CS-65 CS-66 CS-67 SCHOOL OF COMPUTER AND INFORMATION SCIENCES INDIRA GANDHI

More information

Cambridge International Examinations Cambridge International General Certificate of Secondary Education

Cambridge International Examinations Cambridge International General Certificate of Secondary Education Cambridge International Examinations Cambridge International General Certificate of Secondary Education *0733674375* COMPUTER SCIENCE 0478/13 Paper 1 Theory May/June 2016 1 hour 45 minutes Candidates answer

More information

JAIPUR NATIONAL UNIVERSITY, JAIPUR

JAIPUR NATIONAL UNIVERSITY, JAIPUR Paper Code: MCA - 101 Paper Title: Fundamental of Computer Master of Computer Application (MCA) (i) Differentiate between data and information. Which is more useful to the people and why? (ii) Explain

More information

Computer Organization

Computer Organization INF 101 Fundamental Information Technology Computer Organization Assistant Prof. Dr. Turgay ĐBRĐKÇĐ Course slides are adapted from slides provided by Addison-Wesley Computing Fundamentals of Information

More information

Dawood Public School Computer Studies Course Outline for Class VI. Course book- Right Byte 1 Fourth edition (Oxford University Press)

Dawood Public School Computer Studies Course Outline for Class VI. Course book- Right Byte 1 Fourth edition (Oxford University Press) Dawood Public School Computer Studies Course Outline for 2017-2018 Class VI Course book- Right Byte 1 Fourth edition (Oxford University Press) Month wise Distribution of Course Work August The Evolution

More information

OFFICE COMPUTER RETAILING

OFFICE COMPUTER RETAILING 1. This is part of an advertisement for a computer. OFFICE COMPUTER RETAILING Technical specification includes: 2 GHz CPU 256 MB RAM 200 GB Hard Disk Drive 64 MB Graphics Card DVD-ROM Drive Sound Card

More information

Switching to AQA from Edexcel

Switching to AQA from Edexcel Switching to AQA from Edexcel This resource compares our new GCSE Computer Science specification (8520) with the new Edexcel Computer Science specification (1CP1). If you are thinking of switching from

More information

FINAL QUIZ. Marlene Galea

FINAL QUIZ. Marlene Galea FINAL QUIZ Marlene Galea Give 2 possible disadvantages of computerising a system Give 2 possible disadvantages of computerising a system - Dependency : users may grow increasingly dependent on the computerised

More information

UNIT-II. Part-2: CENTRAL PROCESSING UNIT

UNIT-II. Part-2: CENTRAL PROCESSING UNIT Page1 UNIT-II Part-2: CENTRAL PROCESSING UNIT Stack Organization Instruction Formats Addressing Modes Data Transfer And Manipulation Program Control Reduced Instruction Set Computer (RISC) Introduction:

More information

Ch. 1: Computer System part I

Ch. 1: Computer System part I Chapter 1 Computer System Ch. 1: Computer System part I Benjamas Panyangam 2013 Revision by Suphakit Awiphan Ph.D. Adapted for English Section by Kittipitch Kuptavanich And Prakarn Unachak Computer Classification

More information

Defining Computers. Defining Computers. Understanding Essential Computer Concepts

Defining Computers. Defining Computers. Understanding Essential Computer Concepts Understanding Essential Computer Concepts Defining Computers A high-speed idiot must be told exactly what to do by humans and programs step-by-step instructions An electronic device that accepts input,

More information

M1-R4: IT TOOLS AND BUSINESS SYSTEMS

M1-R4: IT TOOLS AND BUSINESS SYSTEMS M1-R4: IT TOOLS AND BUSINESS SYSTEMS NOTE: 1. There are TWO PARTS in this Module/Paper. PART ONE contains FOUR questions and PART TWO contains FIVE questions. 2. PART ONE is to be answered in the TEAR-OFF

More information

OCR GCSE Computing Learning Grids H/W

OCR GCSE Computing Learning Grids H/W COMPUTING GCSE OCR J275 OCR GCSE Computing Learning Grids H/W Unit A451: Computer Systems and Programming This learning grid H/W belongs to: Name: Form: Mr. Ahmed A451 - ATTENTION! Please read! These learning

More information

INFORMATION TECHNOLOGY PRINCIPLES

INFORMATION TECHNOLOGY PRINCIPLES INTBUS9 NOVEMBER 2013 EXAMINATION DATE: 6 NOVEMBER 2013 TIME: 14H00 16H00 TOTAL: 100 MARKS DURATION: 2 HOURS PASS MARK: 40% (DBM-07) INFORMATION TECHNOLOGY PRINCIPLES THIS EXAMINATION PAPER CONSISTS OF

More information

2. (a) Compare the characteristics of a floppy disk and a hard disk. (b) Discuss in detail memory interleaving. [8+7]

2. (a) Compare the characteristics of a floppy disk and a hard disk. (b) Discuss in detail memory interleaving. [8+7] Code No: A109211202 R09 Set No. 2 1. (a) Explain the purpose of the following registers: i. IR ii. PC iii. MDR iv. MAR. (b) Explain with an example the steps in subtraction of two n-digit unsigned numbers.

More information