N04/5/COMSC/SP1/ENG/TZ0/XX COMPUTER SCIENCE STANDARD LEVEL PAPER 1. Monday 15 November 2004 (afternoon) 1 hour 15 minutes INSTRUCTIONS TO CANDIDATES

Size: px
Start display at page:

Download "N04/5/COMSC/SP1/ENG/TZ0/XX COMPUTER SCIENCE STANDARD LEVEL PAPER 1. Monday 15 November 2004 (afternoon) 1 hour 15 minutes INSTRUCTIONS TO CANDIDATES"

Transcription

1 c IB COMPUTER SCIENCE STANDARD LEVEL PAPER 1 DIPLOMA PROGRAMME PROGRAMME DU DIPLÔME DU BI PROGRAMA DEL DIPLOMA DEL BI N04/5/COMSC/SP1/ENG/TZ0/XX Monday 15 November 2004 (afternoon) 1 hour 15 minutes INSTRUCTIONS TO CANDIDATES! Do not open this examination paper until instructed to do so.! Section A: answer all the questions.! Section B: answer three questions pages

2 2 N04/5/COMSC/SP1/ENG/TZ0/XX SECTION A Answer all the questions. 1. Three optical input systems for computers are OMR (Optical Mark Recognition), OCR (Optical Character Recognition) and Bar-Codes. State which is most appropriate for inputting data recorded by a human being: OMR, OCR, or Bar-Codes. State which is most appropriate for producing a document for further word-processing. Describe how one of these systems is commonly used at a point-of-sale in a retail store. 2. Two search algorithms are binary search and sequential search. Outline a set of data, stored in an array, for which a binary search cannot be used. This must include at least four sample data items, and clearly state the reason that a binary search cannot be used. State which search algorithm (binary or sequential) is more efficient on large sets of data in the situation where either can be used. 3. The following algorithm is supposed to return the last digit of an integer. For example: LASTDIGIT(12345) ==> 5 LASTDIGIT(3) ==> 3 function LASTDIGIT(val NUMBER integer) result integer while (NUMBER >= 10) do NUMBER <-- NUMBER - 10 endwhile return NUMBER endfunction LASTDIGIT Determine the value returned by the function for a negative input: LASTDIGIT ( -27 ) The value returned for LASTDIGIT ( -27) is incorrect. State whether this is a syntax error, a logic error, a run-time error, or none of these. Explain why the use of a compiler rather than an interpreter can reduce the number and severity of run-time errors

3 3 N04/5/COMSC/SP1/ENG/TZ0/XX 4. A teacher stores graphics files on a server in a LAN. A student stores graphics files on a web-server. Outline one advantage and one disadvantage of LAN storage compared to WAN storage. Describe a reliable method the teacher could use to copy files from one LAN to a separate LAN which is not connected to the Internet. [4 marks] 5. A multimedia software utility retrieves data from a hard-disk at a speed of 5 MB per second. Calculate the data-transfer rate in kb per second. State whether digital-to-analog conversion is performed by multimedia software, a hardware device, or the operating system. 6. A printer uses parity checking during data transmission. Describe how parity checking is performed. Include some sample data in your answer. State whether it is possible for a printer to be infected by a computer virus, and justify your answer. [3 marks] 7. Describe one application of sensors. Explain why the signal from a sensor requires conversion before processing in a computer Turn over

4 4 N04/5/COMSC/SP1/ENG/TZ0/XX SECTION B Answer three questions. 8. An server must store the NAME, ACCOUNT, and PASSWORD for each user in the database. The database is represented by three parallel arrays as shown below. There are exactly four users in the system. NAME Fred Green Elly Brown Dave Black Axel White ACCOUNT GreenF@mail.com BrownE@mail.com BlackD@mail.com WhiteA@mail.com PASSWORD Tree Earth Moon Sun The following algorithm should sort the data. It assumes all 3 arrays have already been declared as global variables, and already contain 4 rows of data. main SORTDATA SORT(NAME) endmain SORTDATA procedure SORT(ref DATA string array[1..4]) declare P integer, C integer, B integer for P <-- 1 upto 3 do B <-- P for C <-- P+1 upto 4 do if (DATA[C] < DATA[B]) then B <-- C endif endfor SWAP( DATA[B],DATA[P] ) endfor endprocedure SORT procedure SWAP( ref ITEMA string, ref ITEMB string) declare TEMP string TEMP <-- ITEMA ITEMA <-- ITEMB ITEMB <-- TEMP endprocedure SWAP State the name of the standard sorting algorithm attempted by SORT. (This question continues on the following page)

5 5 N04/5/COMSC/SP1/ENG/TZ0/XX (Question 8 continued) Trace the algorithm, using the array given, and state the contents of the NAME array after the second pass - that is, after the loop where P = 2. [3 marks] Outline the difference between pass-by-value and pass-by-reference parameters. The algorithm does not correctly sort the database. (d) (i) Describe the incorrect results of this error and the cause of the error. (ii) Suggest a change to the SORT algorithm, which would correct this error. The correction must only change the SORT procedure, and should not change the SWAP procedure Turn over

6 6 N04/5/COMSC/SP1/ENG/TZ0/XX 9. A book publisher is converting all of its books to electronic (digital) versions. Each book is scanned in through an optical scanner. The text is converted to HTML format. Pictures are automatically saved in a standard graphics format and linked to the HTML text in the correct position. The resulting digital books can be displayed by a browser. A clerk must place a book in the scanner, press a button, turn a page, place it in the scanner again, press a button again, etc. This continues through the entire book. State whether the scanning process is best described as batch processing, interactive processing, or real-time processing. Explain the need for analog-to-digital conversion during the scanning process. Discuss an appropriate testing-strategy for three aspects of the conversion process from paper to electronic format. [3 marks] After converting a book to HTML format, the publisher may add multimedia files to the book, creating a multimedia enhanced version. The average size of a multi-media enhanced version is 500 MB. (d) Explain how a web-browser can display a 500 MB book in a computer with only 64 MB of RAM. The publisher sells some multimedia enhanced versions on CD-ROM - these are identical to the online versions. Although the publisher's web-site is always available, and the online books are available at no cost, they still sell a lot of CD-ROMs. (e) Outline two advantages of using the CD-ROM version rather than the web-based version, justifying the cost of purchasing the CD-ROM

7 7 N04/5/COMSC/SP1/ENG/TZ0/XX 10. A software developer is creating an Electronic Voting Application (EVA). EVA can be used in public elections. It might be used through Internet connections or on PCs in normal voting locations. The hardware issues have been solved, but the software is still under development. There are three major undecided issues: 1. Interface - How can users conveniently interact with the system? 2. Security - How can cheating (fraud) be prevented? 3. Reliability - How can operators ensure that all votes are correctly counted and the system never loses data? (d) Outline two standard methods for collecting wishes and preferences from users about the design of the interface. Explain how reliability can be improved by clear and complete system documentation. State which of the three undecided issues might be handled partially through encryption, and justify your answer. In an election with eight candidates, a voter must vote for exactly one candidate. (i) (ii) (iii) State whether validation or verification is appropriate for ensuring that the voter only votes for one candidate. Outline one appropriate response from the system when a voter incorrectly votes for two candidates. Suggest a method for storing each voter's ballot in a single byte Turn over

8 8 N04/5/COMSC/SP1/ENG/TZ0/XX 11. Alex is a personal computer (PC) user. She uses her PC for: 1. Playing video games (stored locally) 2. Internet access, especially downloading files 3. Word-processing simple text documents Alex's PC is 5 years old. The hard-disk is about half full, which is okay, but Alex finds that all the applications listed above run too slowly. She wishes to upgrade the hardware, by doing one or more of the following:! Add an extra hard-disk-drive! Add more RAM! Replace the CPU with a faster model (d) Explain why adding more RAM might speed up one of the applications, clearly identifying which application you are discussing. Explain why replacing the CPU will probably not speed up Internet downloads. Explain why none of the upgrades listed is likely to speed up word-processing. One possible CPU upgrade would significantly increase the cache memory, but this new CPU runs at the same speed as the old one. Outline the function of cache memory, and state whether or not it is possible that this upgrade would speed up the applications. [3 marks] Alex found out that hardware upgrades are expensive, and is looking for ways to speed up the applications without hardware upgrades. (e) State the name of a software utility which might speed some of the applications (above), and outline how this software utility functions

M12/5/COMSC/SP1/ENG/TZ0/XX COMPUTER SCIENCE STANDARD LEVEL PAPER 1. Friday 18 May 2012 (afternoon) 1 hour 30 minutes INSTRUCTIONS TO CANDIDATES

M12/5/COMSC/SP1/ENG/TZ0/XX COMPUTER SCIENCE STANDARD LEVEL PAPER 1. Friday 18 May 2012 (afternoon) 1 hour 30 minutes INSTRUCTIONS TO CANDIDATES M12/5/COMSC/SP1/ENG/TZ0/XX 22127013 COMPUTER SCIENCE STANDARD LEVEL PAPER 1 Friday 18 May 2012 (afternoon) 1 hour 30 minutes INSTRUCTIONS TO CANDIDATES Do not open this examination paper until instructed

More information

IB Comp Sci SL Review Answers 1/10

IB Comp Sci SL Review Answers 1/10 IB Comp Sci SL Review Answers 1/10 ** These answers are for the older version of these review questions, so some are incorrect ** ** especially the algorithms which are written in PURE instead of Java

More information

Do not open this examination paper until instructed to do so. Answer all the questions.

Do not open this examination paper until instructed to do so. Answer all the questions. IB Computer science Standard level Paper 2 DIPLOMA PROGRAMME PROGRAMME DU DIPLÔME DU BI PROGRAMA DEL DIPLOMA DEL BI N07/5/COMSC/SP2/ENG/TZ0/XX 88077014 Tuesday 13 November 2007 (morning) 1 hour 30 minutes

More information

Unit 2: Technology Systems

Unit 2: Technology Systems Unit 2: Technology Systems Level: 1 and 2 Unit type: Core Guided learning hours: 30 Assessment type: External Unit introduction Technology systems are involved in many of the objects we use every day,

More information

Computer science Higher level Paper 1

Computer science Higher level Paper 1 Computer science Higher level Paper 1 Friday 4 November 2016 (afternoon) 2 hours 10 minutes Instructions to candidates ydo not open this examination paper until instructed to do so. ysection A: answer

More information

Computer Systems. Communication (networks, radio links) Meatware (people, users don t forget them)

Computer Systems. Communication (networks, radio links) Meatware (people, users don t forget them) Computers are useful machines, but they are generally useless by themselves. Computers are usually part of a system a computer system includes: Hardware (machines) Software (programs, applications) Communication

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

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

COMPUTER SCIENCE UNIT 1: Understanding Computer Science

COMPUTER SCIENCE UNIT 1: Understanding Computer Science Surname Centre Number Candidate Number Other Names 0 GCSE 4341/01 S15-4341-01 COMPUTER SCIENCE UNIT 1: Understanding Computer Science A.M. WEDNESDAY, 3 June 2015 1 hour 30 minutes For s use Total 4341

More information

N02/650/H(2)M+ MARKSCHEME. November 2002 COMPUTER SCIENCE. Higher Level. Paper pages

N02/650/H(2)M+ MARKSCHEME. November 2002 COMPUTER SCIENCE. Higher Level. Paper pages INTERNATIONAL cbaccalaureate BACCALAURÉAT INTERNATIONAL BACHILLERATO INTERNACIONAL N02/650/H(2)M+ MARKSCHEME November 2002 COMPUTER SCIENCE Higher Level Paper 2 14 pages 5 N02/650/H(2)M+ Subject Details:

More information

REPORT ON CANDIDATES WORK IN THE SECONDARY EDUCATION CERTIFICATE EXAMINATION JANUARY 2010 INFORMATION TECHNOLOGY TECHNICAL PROFICIENCY EXAMINATION

REPORT ON CANDIDATES WORK IN THE SECONDARY EDUCATION CERTIFICATE EXAMINATION JANUARY 2010 INFORMATION TECHNOLOGY TECHNICAL PROFICIENCY EXAMINATION CARIBBEAN EXAMINATIONS COUNCIL HEADQUARTERS REPORT ON CANDIDATES WORK IN THE SECONDARY EDUCATION CERTIFICATE EXAMINATION JANUARY 2010 INFORMATION TECHNOLOGY TECHNICAL PROFICIENCY EXAMINATION Copyright

More information

Specimen. Date Morning/Afternoon Time allowed: 1 hour 30 minutes. GCSE (9 1) Computer Science J276/01 Computer Systems Sample Question Paper

Specimen. Date Morning/Afternoon Time allowed: 1 hour 30 minutes. GCSE (9 1) Computer Science J276/01 Computer Systems Sample Question Paper GCSE (9 1) Computer Science J276/01 Computer Systems Sample Question Paper Date Morning/Afternoon Time allowed: 1 hour 30 minutes You may not use: a calculator First name Last name Centre number Candidate

More information

I1100 E Introduction to computer.

I1100 E Introduction to computer. Université Libanaise Faculty of Sciences I 1 st Session I1100 E Introduction to computer. Final 2017/2018 Duration : 2 h Problem 1 Multiple Choices Questions 25 points Question 1. The Operating System

More information

The Office, Procedures and Technology Chapter 3 Test 1

The Office, Procedures and Technology Chapter 3 Test 1 Chapter 3 Test 1 True/False Name Indicate whether the statement is true or false by writing T or F on the line below the statement. 1. Information is essential only to companies that manufacture products.

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

Quality Developers is a company that writes programs to do specific jobs for other companies. These programs are called

Quality Developers is a company that writes programs to do specific jobs for other companies. These programs are called When the computer is working on given instructions, it is called The teclmology used to read pencil or pen marks on a multip Ie choice answer sheet is (8) CD) output storage processing input (8) OCR OMR

More information

Topics. Hardware and Software. Introduction. Main Memory. The CPU 9/21/2014. Introduction to Computers and Programming

Topics. Hardware and Software. Introduction. Main Memory. The CPU 9/21/2014. Introduction to Computers and Programming Topics C H A P T E R 1 Introduction to Computers and Programming Introduction Hardware and Software How Computers Store Data Using Python Introduction Computers can be programmed Designed to do any job

More information

CONCEPTS OF MANAGEMENT COMPUTING

CONCEPTS OF MANAGEMENT COMPUTING CONBUS1 NOVEMBER 2013 EXAMINATION DATE: 11 NOVEMBER 2013 TIME: 14H00 17H00 TOTAL: 100 MARKS DURATION: 3 HOURS PASS MARK: 40% (BUS-EDP) CONCEPTS OF MANAGEMENT COMPUTING THIS EXAMINATION PAPER CONSISTS OF

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 *4841344152* COMPUTING 9691/23 Paper 2 October/November 2015 2 hours Candidates answer on the Question

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

UGANDA NATIONAL EXAMINATIONS BOARD Uganda Certificate of Education COMPUTER STUDIES. Paper 1. 2 hours 30 minutes

UGANDA NATIONAL EXAMINATIONS BOARD Uganda Certificate of Education COMPUTER STUDIES. Paper 1. 2 hours 30 minutes 840/1 Computer Studies Paper 1 Oct./Nov. 2009 2 1 /2 Hours UGANDA NATIONAL EXAMINATIONS BOARD Uganda Certificate of Education COMPUTER STUDIES Paper 1 2 hours 30 minutes Candidate s Name: Index No.. Candidate

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 *0412751671* COMPUTING 9691/21 Paper 2 October/November 2014 2 hours Candidates answer on the Question

More information

CONCEPTS OF MANAGEMENT COMPUTING

CONCEPTS OF MANAGEMENT COMPUTING CONBUS1 JUNE 2012 EXAMINATION DATE: 11 JUNE 2012 TIME: 14H00 17H00 TOTAL: 100 MARKS DURATION: 3 HOURS PASS MARK: 40% (BUS-EDP) CONCEPTS OF MANAGEMENT COMPUTING THIS EXAMINATION PAPER CONSISTS OF 4 SECTIONS:

More information

1. A washing machine is controlled by microprocessors. The name given to this type of microprocessor is: A a mainframe computer. B an output device

1. A washing machine is controlled by microprocessors. The name given to this type of microprocessor is: A a mainframe computer. B an output device SECTION A Answer ALL questions. For each question, choose an answer A, B, C or D and put a cross in the box. Mark only one answer for each question. If you change your mind, put a line through the box

More information

Cambridge International Examinations Cambridge International General Certificate of Secondary Education. Published

Cambridge International Examinations Cambridge International General Certificate of Secondary Education. Published Cambridge International Examinations Cambridge International General Certificate of Secondary Education COMPUTER SCIENCE 078/12 Paper 1 MARK SCHEME Maximum Mark: 75 Published This mark scheme is published

More information

GIRLS SECONDARY, L-IMRIEĦEL HALF YEARLY EXAMINATIONS 2015/2016

GIRLS SECONDARY, L-IMRIEĦEL HALF YEARLY EXAMINATIONS 2015/2016 GIRLS SECONDARY, L-IMRIEĦEL HALF YEARLY EXAMINATIONS 2015/2016 FORM: 3 Computing Time: 1½ Hr. Name: Class: Instructions: 1. Answer all the questions in the space provided on this paper. 2. Calculators

More information

KULLEĠĠ SAN BENEDITTU Secondary School, Kirkop

KULLEĠĠ SAN BENEDITTU Secondary School, Kirkop KULLEĠĠ SAN BENEDITTU Secondary School, Kirkop HALF YEARLY EXAMINATION 2016/2017 MARKING SCHEME Year 9 ICT TIME: 1h 30min Question 1 2 3 4 5 6 7 8 9 Global Mark Max. Mark 10 12 26 8 16 6 13 5 4 100 Mark

More information

Cambridge Ordinary Level 2210 Computer Science June 2016 Principal Examiner Report for Teachers

Cambridge Ordinary Level 2210 Computer Science June 2016 Principal Examiner Report for Teachers COMPUTER SCIENCE Paper 2210/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

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

Cambridge Ordinary Level 2210 Computer Science November 2016 Principal Examiner Report for Teachers

Cambridge Ordinary Level 2210 Computer Science November 2016 Principal Examiner Report for Teachers COMPUTER SCIENCE Paper 2210/12 Paper 1 Key messages If a candidate writes the answer to a question on an additional page they must indicate very clearly to the Examiner where the revised answer can be

More information

Final Examination Semester 3 / Year 2011

Final Examination Semester 3 / Year 2011 Final Examination Semester 3 / Year 2011 COURSE : INFORMATION TECHNOLOGY COURSE CODE : BUSS1063 TIME : 2 1/2 HOURS DEPARTMENT : COMMERCE LECTURER : LEE HUAH Student s ID : Batch No. : Notes to candidates:

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 1 Computer Systems, Programming and Networking Concepts

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

More information

C H A P T E R 1. Introduction to Computers and Programming

C H A P T E R 1. Introduction to Computers and Programming C H A P T E R 1 Introduction to Computers and Programming Topics Introduction Hardware and Software How Computers Store Data How a Program Works Using Python Computer Uses What do students use computers

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *833595* INFORMATION AND COMMUNICATION TECHNOLOGY 047/3 Paper October/November 00 hours Candidates

More information

KULLEĠĠ SAN BENEDITTU Secondary School, Kirkop

KULLEĠĠ SAN BENEDITTU Secondary School, Kirkop KULLEĠĠ SAN BENEDITTU Secondary School, Kirkop Mark HALF YEARLY EXAMINATION 2015/2016 FORM 4 ICT TIME: 1h 30min Page 1 2 3 4 5 6 7 8 9 10 Global Mark Max. Mark 6 8 6 10 6 8 14 16 16 2 100 Mark DO NOT WRITE

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

Cambridge International Examinations Cambridge International Advanced Subsidiary Level and Advanced Level. Paper 2 May/June hours

Cambridge International Examinations Cambridge International Advanced Subsidiary Level and Advanced Level. Paper 2 May/June hours *0* Cambridge International Examinations Cambridge International Advanced Subsidiary Level and Advanced Level COMPUTING / Paper May/June 0 hours Candidates answer on the Question Paper. No additional materials

More information

1996 ILLINOIS JETS TEAMS DISTRICT COMPUTER FUNDAMENTALS TEST. 1. A computer program is:

1996 ILLINOIS JETS TEAMS DISTRICT COMPUTER FUNDAMENTALS TEST. 1. A computer program is: 1996 ILLINOIS JETS TEAMS DISTRICT COMPUTER FUNDAMENTALS TEST 1. A computer program is: a. a sequence of binary machine instructions b. a sequence of operations to carry out a defined task c. a set of computer

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

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

ICT 1. June Advanced level

ICT 1. June Advanced level 2 1. Software that allows a team to have an electronic face-to face meetings when members are geographically dispersed is ICT 1 A E-mail software 796 B Chat room software C E-messaging software June 2013

More information

Vocabulary Platform Computing\ First grade Theoretical number of hours=30 Practical number of hours =60

Vocabulary Platform Computing\ First grade Theoretical number of hours=30 Practical number of hours =60 Vocabulary Platform Computing\ First grade Theoretical number of hours=30 Practical number of hours =60 Sequence Subject Theoretical number of hours Introduction (Introduction to Computers, the concepts

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

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

6. Under which of the following categories is a laptop computer classified? (1) Microcomputer (2) Minicomputer (3) Mainframe (4) Supercomputer

6. Under which of the following categories is a laptop computer classified? (1) Microcomputer (2) Minicomputer (3) Mainframe (4) Supercomputer General Certificate of Education (Ord.Level) Examination 2007 Information & Communication Technology I One hour Note: Answer all questions. In each of the questions 1 to 40 pick one of the alternatives

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

COLLEGEDUNIA MCA. 3. What would be displayed, if the following program is compiled and run?

COLLEGEDUNIA MCA. 3. What would be displayed, if the following program is compiled and run? MCA 1. If a 1Gb file is to be transmitted over a 10Mbps link, how much time would it take to complete the transmission? A) 10 seconds B) 100 seconds C) 1000 seconds D) 1024 seconds 2. Which one of the

More information

5. a computer which CPU speed around 100 million instruction per second and with the word length of around 64 bits is known as

5. a computer which CPU speed around 100 million instruction per second and with the word length of around 64 bits is known as 1. To locate a data item for storage is a. Field b. Feed c. Database d. Fetch 2. programs designed to perform specific tasks is known as a. system software b. application software c. utility programs d.

More information

Some popular Operating Systems include Linux Operating System, Windows Operating System, VMS, OS/400, AIX, z/os, etc.

Some popular Operating Systems include Linux Operating System, Windows Operating System, VMS, OS/400, AIX, z/os, etc. An Operating System (OS) is an interface between computer user and computer hardware. An operating system is software which performs all the basic tasks like file management, memory management, process

More information

GCSE ICT AQA Specification A (Full Course) Summary

GCSE ICT AQA Specification A (Full Course) Summary GCSE ICT AQA Specification A (Full Course) Summary Areas not covered by the short course are shown in red. 9.1 The general Understand that information systems may be 1 structure of information systems

More information

Input output and memory devices

Input output and memory devices Input output and memory devices One marks 1. What is cache memory The very high speed memory present between CPU and RAM 2. Expand the term OCR Optical Character Recognition (Recognizer) 3. Expand the

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

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

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 *4137415794* COMPUTER SCIENCE 9608/31 Paper 3 Advanced Theory October/November 2018 1 hour 30 minutes

More information

National 5 Computing Science Software Design & Development

National 5 Computing Science Software Design & Development National 5 Computing Science Software Design & Development 1 Stages of Development 2 Analysis 3 Design 4 Implementation 5 Testing 6 Documentation 7 Evaluation 8 Maintenance 9 Data Types & Structures 10

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

IBPS Practice Exam 1. One megabyte equals approximately 1) 1,000 bits 2) 1,000 bytes 3) 1 million bytes 4) 1 million bits 5) 2,000 bytes 2.

IBPS Practice Exam 1. One megabyte equals approximately 1) 1,000 bits 2) 1,000 bytes 3) 1 million bytes 4) 1 million bits 5) 2,000 bytes 2. IBPS Practice Exam 1. One megabyte equals approximately 1) 1,000 bits 2) 1,000 bytes 3) 1 million bytes 4) 1 million bits 5) 2,000 bytes 2. Data going into the computer is called? 1) Output 2) Algorithm

More information

Dawood Public School Course Outline Computer Science Class XI

Dawood Public School Course Outline Computer Science Class XI Dawood Public School Course Outline 2015-16 Computer Science Class XI Study Guide Text book: Computer Course book by Chris Lead better Reference Book: Cambridge IG CSE Computer Science by David Watson

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

Class IX FIT Notes for Short Answer Questions

Class IX FIT Notes for Short Answer Questions 1. Differentiate between OCR and OMR. Class IX FIT Notes for Short Answer Questions Ans. OCR stands for Optical Character Recognition which is used to read characters of special type font that are printed

More information

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education. Paper 1 October/November hours

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education. Paper 1 October/November hours *2238279192* UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education INFORMATION AND COMMUNICATION TECHNOLOGY 0417/12 Paper 1 October/November 2011 2

More information

COMP3 (JUN13COMP301) General Certificate of Education Advanced Level Examination June 2013

COMP3 (JUN13COMP301) General Certificate of Education Advanced Level Examination June 2013 Centre Number Surname Candidate Number For Examiner s Use Other Names Candidate Signature Examiner s Initials Computing General Certificate of Education Advanced Level Examination June 2013 COMP3 Question

More information

MEHRAN UNIVERSITY OF ENGINEERING AND TECHNOLOGY, JAMSHORO. FIRST TERM FIRST YEAR (1 ST TERM) B.E.(ELECTRICAL) REGULAR EXAMINATION 2009 OF 09-BATCH.

MEHRAN UNIVERSITY OF ENGINEERING AND TECHNOLOGY, JAMSHORO. FIRST TERM FIRST YEAR (1 ST TERM) B.E.(ELECTRICAL) REGULAR EXAMINATION 2009 OF 09-BATCH. ID.No./Seat No. MEHRAN UNIVERSITY OF ENGINEERING AND TECHNOLOGY, JAMSHORO. FIRST TERM FIRST YEAR (1 ST TERM) B.E.(ELECTRICAL) REGULAR EXAMINATION 2009 OF 09-BATCH. COMPUTER APPLICATION & E-LEARNING Dated:

More information

Solve only 2 out of 3 questions

Solve only 2 out of 3 questions The American University in Cairo Computer Science Department CSCI 10602&07 Dr. KHALIL Quiz-I Fall 2009 Last Name :... ID:... First Name:... Form I EXAMINATION INSTRUCTIONS Solve only 2 out of 3 questions

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

Total Mark out of 35

Total Mark out of 35 University of Bahrain College of Information Technology Department of Information Systems ITBIS105 Test 1 Version 1 (35 points) 30 Oct 2013 @ 8:00-9:00 AM Student Name: Section: ID Number: Serial Number:

More information

M1-R4: Introduction to ICT Resource (JULY 2018)

M1-R4: Introduction to ICT Resource (JULY 2018) M1-R4: Introduction to ICT Resource (JULY 2018) Max Marks: 100 M1-R4-07-18 DURATION: 03 Hrs 1. Each question below gives a multiple choice of answers. Choose the most appropriate one and enter in the OMR

More information

Binghamton University. CS-220 Spring Cached Memory. Computer Systems Chapter

Binghamton University. CS-220 Spring Cached Memory. Computer Systems Chapter Cached Memory Computer Systems Chapter 6.2-6.5 Cost Speed The Memory Hierarchy Capacity The Cache Concept CPU Registers Addresses Data Memory ALU Instructions The Cache Concept Memory CPU Registers Addresses

More information

Algorithms from IB Examinations

Algorithms from IB Examinations Sample Algorithms in PURE Algorithms from IB Examinations Previous examination paper questions, even those that apply to an earlier syllabus, can be a valuable resource because they can be used: x to illustrate

More information

WYSE Academic Challenge 2002 Computer Science Test (Sectional) SOLUTION

WYSE Academic Challenge 2002 Computer Science Test (Sectional) SOLUTION Computer Science - 1 WYSE Academic Challenge 2002 Computer Science Test (Sectional) SOLUTION 1. Access to moving head disks requires three periods of delay before information is brought into memory. The

More information

Dawood Public School Course Outline Computer Science

Dawood Public School Course Outline Computer Science 1 Dawood Public School Course Outline 2018-19 Computer Science Class XI Study Guide Text book: IGCSE Computer Science Course book by David Watson and Helen Williams Reference Book: Information Systems

More information

Computer Knowledge. 3. Modern computers are reliable but they don't have. a) Fast b) Powerful c) Cheap d) Self thinking

Computer Knowledge. 3. Modern computers are reliable but they don't have. a) Fast b) Powerful c) Cheap d) Self thinking Computer Knowledge 1. Which of the following measure(s) is/are used to determine the quality of a printer. a) Dots printed in a minute b) Dots per Inch c) Dot-Per-Square-Inch d) All of the Above 2. is

More information

Read this before starting!

Read this before starting! Points missed: Student's Name: Total score: /100 points East Tennessee State University Department of Computer and Information Sciences CSCI 4717 Computer Architecture TEST 1 for Fall Semester, 2006 Section

More information

Common Technology Words and Definitions

Common Technology Words and Definitions Common Technology Words and Definitions 77 78 Common Technology Words and Definitions: ASCII American Standard Code for Information Interchange, a code that makes it possible to send information from one

More information

Q1. Describe the characteristic features of input and output devices of a computer system. [10]

Q1. Describe the characteristic features of input and output devices of a computer system. [10] Course: 1 st Sem. Of 3-year B.Sc. in H&HA Academic Year: 2017-2018 Q1. Describe the characteristic features of input and output devices of a computer system. [10] What is Topology? Discuss the various

More information

6. Something which has easily understood instructions is said to be: 1) User friendly 2) Information 3) Word Processing 4) Icon 5) None of these

6. Something which has easily understood instructions is said to be: 1) User friendly 2) Information 3) Word Processing 4) Icon 5) None of these 1. Pick the odd one out: 1) Interpreter 2) Operating System 3) Compiler 4) Assembler 2. When a particular object or an image is copied, in which of the following places it is stored? 1) Notice Board 2)

More information

understand the need for input and output devices describe suitable output devices for a wide range of computer controlled situations

understand the need for input and output devices describe suitable output devices for a wide range of computer controlled situations Hardware The OCR Specification says that you should be able to: The Central Processing Unit state the purpose of the CPU describe the function of the CPU as fetching and executing instructions stored in

More information

The Programming Process Summer 2010 Margaret Reid-Miller

The Programming Process Summer 2010 Margaret Reid-Miller The Programming Process 15-110 Margaret Reid-Miller Hardware Components Central Processing Unit (CPU) Program control Arithmetic/logical operations Coordinates data movement between memory and registers

More information

Architect. User s Manual

Architect. User s Manual Architect User s Manual DOC. NO. UM-PT202-03 Version 1.11 January 2013 TABLE OF CONTENTS Chapter 1: Introduction...1 Features... 1 System Requirements... 2 Installing the Software... 2 Opening the Software...

More information

ICT REVISION WORKSHEET YEAR 9

ICT REVISION WORKSHEET YEAR 9 ICT REVISION WORKSHEET YEAR 9 1. Identify the following device and state whether it is an input/output. Give one use of it. Device Input/output Use 2. Draw four lines on the diagram to match the use to

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

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

This document consists of 8 printed pages.

This document consists of 8 printed pages. Cambridge International Examinations Cambridge Ordinary Level COMPUTER SCIENCE 10/11 Paper 1 MARK SCHEME Maximum Mark: 75 Published This mark scheme is published as an aid to teachers and candidates, to

More information

Cambridge International Examinations Cambridge International Advanced Subsidiary Level and Advanced Level. Paper 1 May/June hour 30 minutes

Cambridge International Examinations Cambridge International Advanced Subsidiary Level and Advanced Level. Paper 1 May/June hour 30 minutes *4857442177* Cambridge International Examinations Cambridge International Advanced Subsidiary Level and Advanced Level COMPUTING 9691/12 Paper 1 May/June 2014 1 hour 30 minutes Candidates answer on the

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

Core Syllabus. Version 2.6 C OPERATE KNOWLEDGE AREA: OPERATION AND SUPPORT OF INFORMATION SYSTEMS. June 2006

Core Syllabus. Version 2.6 C OPERATE KNOWLEDGE AREA: OPERATION AND SUPPORT OF INFORMATION SYSTEMS. June 2006 Core Syllabus C OPERATE KNOWLEDGE AREA: OPERATION AND SUPPORT OF INFORMATION SYSTEMS Version 2.6 June 2006 EUCIP CORE Version 2.6 Syllabus. The following is the Syllabus for EUCIP CORE Version 2.6, which

More information

SUBJECT COMPUTER APPLICATION PAGE 1

SUBJECT COMPUTER APPLICATION PAGE 1 BACHELOR OF ARTS (B.A.) (THREE YEAR DEGREE COURSE) SUBJECT COMPUTER APPLICATION PAGE 1 B.A.(COMPUTER APPLICATION) COURSE STRUCTURE FIRST YEAR PAPER 101: Computer Fundamentals PAPER 102: Operating System

More information

UNIQUE IAS ACADEMY- COMPUTER QUIZ 2

UNIQUE IAS ACADEMY- COMPUTER QUIZ 2 1. Your business has contracted with another company to have them host and run an application for your company over the Internet. The company providing this service to your business is called an a) Internet

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

END-TERM EXAMINATION

END-TERM EXAMINATION (Please Write your Exam Roll No. immediately) END-TERM EXAMINATION DECEMBER 2006 Exam. Roll No... Exam Series code: 100179DEC06200134 Paper Code : MCA-101 Paper Title: Introduction to Information Technology

More information

This paper is not to be removed from the Examination Halls UNIVERSITY OF LONDON

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

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

Dawood Public School Course Outline Computer Science Class XI

Dawood Public School Course Outline Computer Science Class XI Dawood Public School Course Outline 2016-17 Computer Science Class XI Study Guide Text book: IGCSE Computer Science Course book by David Watson and Helen Williams Reference Book: Information Systems by

More information

2010 HSC Software Design and Development Sample Answers

2010 HSC Software Design and Development Sample Answers 2010 HSC Software Design and Development Sample Answers This document contains sample answers, or, in the case of some questions, answers could include. These are developed by the examination committee

More information

DIPLOMA IN HARDWARE NETWORKING CURRICULUM FUNDAMENTALS OF COMPUTER APPLICATION. Generations of Computer. Block Diagram of a Computer.

DIPLOMA IN HARDWARE NETWORKING CURRICULUM FUNDAMENTALS OF COMPUTER APPLICATION. Generations of Computer. Block Diagram of a Computer. DIPLOMA IN HARDWARE NETWORKING CURRICULUM FUNDAMENTALS OF COMPUTER APPLICATION Generations of Computer Block Diagram of a Computer Number System Functions of the Different Units Input unit, Output unit,

More information

M4.3-R4: INTRODUCTION TO ICT RESOURCES. Objective of the Course

M4.3-R4: INTRODUCTION TO ICT RESOURCES. Objective of the Course M4.3-R4: INTRODUCTION TO ICT RESOURCES Objective of the Course This course has been designed to provide an introduction to Computer Hardware and Networking troubleshooting & maintenance. The student will

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

Chapter 1: Introduction to Computers and Java

Chapter 1: Introduction to Computers and Java Chapter 1: Introduction to Computers and Java Starting Out with Java: From Control Structures through Objects Fifth Edition by Tony Gaddis Chapter Topics Chapter 1 discusses the following main topics:

More information

8/23/2014. Chapter Topics. Introduction. Java History. Why Program? Java Applications and Applets. Chapter 1: Introduction to Computers and Java

8/23/2014. Chapter Topics. Introduction. Java History. Why Program? Java Applications and Applets. Chapter 1: Introduction to Computers and Java Chapter 1: Introduction to Computers and Java Starting Out with Java: From Control Structures through Objects Fifth Edition by Tony Gaddis Chapter Topics Chapter 1 discusses the following main topics:

More information