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

Size: px
Start display at page:

Download "G.C.E. (A/L) Examination June 2015 Conducted by Field Work Center, Thondaimanaru."

Transcription

1 G.C.E. (A/L) Examination June 2015 Conducted by Field Work Center, Thondaimanaru. In Collaboration with the Zonal Education Office, Jaffna Information & Communication Technology (ICT) Grade - 13 (A/L) 2015 Part - II Time: 3 Hours Part II - A Structured Essay Answer all the questions (1) Consider the following scenario. Each supplier has a unique suppliernumber and name, and one or more suppliers may be in a city. Each part has a unique partnumber, partname and colour. A supplier may distribute more than one parts and a part may be distributed more than one distributed. A supplier distributes a specific quantity of parts. (a) Draw ER diagram. (b) Write down the relationship among entities whether it is one to one, one to many or many to many. [Justify your answer]. (c) Write down the table in the form of schema if the given ER diagram is mapped into possible tables. (d) Write down SQL statement to obtain names of suppliers who distribute more than 1000 quantity of parts. 1 [See page two

2 (2) (a) Consider the following web page rendered on a web browser. The following is an incomplete code to produce the above mentioned web page using HTML and CSS. < 1 > <head> <title> 2 </title> <style> #toptitle { text-align: center; font-size: 18pt; 3 : italic; }.paratext { font-size: 12pt; font-family: Arial; } < 4 > </head> <body> <div id="5"> Welcome to RoboEddy </div> <p class="6"> RoboEddy is an educational robot with the following features: </p> < 7 > <li> Fast microprocessor </li> <li> Two motor channels </li> <li> 8 analogue inputs </li> <li> 8 digital I/O ports </li> < 8 > </body> </html> 4 2 [See page three

3 Write down for labels given from 1 to 8 in the following table. Number Code / Tag (b) Assume a 2 20 byte memory. What are the lowest and highest addresses if memory is byte addressable? (c) Write down for WIMP using in Graphical User Interface (GUI) used in user interface design of software. W -. M -. I -. P -. (3) (a) Write down (16 10) and (-7 10) in one s complement method using 8-bits. (b) Find the value of (16 10) + (-7 10) using 8-bits one s complement method. 3 [See page four

4 (c) Four layers, protocols and devices of OSI reference model are given in the following table. Tick ( ) in the suitable boxes. Physical layer Application layer Transport layer Network layer (1) service (2) Routing (3) UDP (4) Hub (5) TCP (6) FTP (d) Write down the class, NetID and HostID of IP addresses given in the following table. IP address Class NetID HostID (1) (2) (3) (4) (a) Draw a flowchart to find whether a given number entered by the user is positive or negative number. 4 [See page five

5 (b) Write down a python program to find whether the given number by the user is positive number or negative number. (c) The following diagram shows the stages of Waterfall software process model in the order. Write down name of each stage A, B, C, D and E. A B C D E A -. B -. C -. D -. E -. 5 [See page six

6 (d) Consider the following scenario. A To Z is a company selling of clothing materials. A client purchasing clothing materials will get receipt and invoice copy bill by paying cash.. If payment was not received within two weeks, a reminder was issued. If another one week elapsed, then a final reminder was issued. Details about invoice are stored in invoice file. Reminder details are stored in reminder file. Itemized Bill M1 Itemized Bill (ii) (iii) 1 Receipt Details M2 Receipts (i) Receipt Copy Invoice (v) (iv) Manage Customer Accounts (vi) (vii) M3 (viii) Payment M4 Reminders Details M5 Payments Complete the following partial data flow diagram by identifying the missing elements. Write your answers in the table provided below. Label Appropriate Words (i) (ii) (iii) (iv) (v) (vi) (vii) (viii) **** 6 [See page seven

7 (1) Part II - B Essay Questions Write down any four questions only Chemical process gives out a warning signal (W = 1) when the process operates incorrectly. A logic circuit is used to monitor the process and to determine whether W = 1. Input Binary values Process condition 1 Chemical rate = 20 litre / second A 0 Chemical rate < 20 litre / second 1 Temperature = 91 0 C B 0 Temperature > 91 0 C 1 Concentration > 5M C 0 Concentration = 5M A warning signal (W = 1) will be generated if: either Chemical rate < 20 litres /second or Temperature > 91ºC and Concentration > 5M or Chemical rate = 20 litres /second and Temperature > 91 (a) Write down the Boolean expression. (b) Draw the logic circuit, using only AND, OR and NOT gates, for the Boolean expression obtained in (a). (c) Construct a truth table for the Boolean expression obtained above in (a). (d) Obtain the Boolean expression, without simplification, in sum of product (SOP) form using truth table or other method. (2) Consider the following scenario. A popular private hospital situated in a city in Sri Lanka provides an e-health card for all of the patients getting treatment from it. This card would contain about his/her health related information in addition to each patient s identity information. This card is updated by doctors and the administration of the hospital each time as required when a patient goes to the hospital. Each doctor in the hospital has a card reader to read information about patient. (a) Write down three benefits that the hospital would obtain by providing this card to the patients. (b) Write down two benefits that the patients would obtain by using this card. (c) Write down a possible threat that the patients would face if unauthorized people is able to know the health related information of the patients. (d) Write down a technology that would be used in this card in order to reduce risk from getting health related information by unauthorized people if the patients lost their cards. (3) (a) Write down any two functions of data link layer of OSI network reference model. (b) IP address of a network is and its subnet mask is How many hosts may be connected in this network? (c) Write down short notes on the followings. (i) DNS Server (ii) Data encryption (d) Define the term agent in the context of agent technology and write down three situations with the help of example where agent technology is used. 7 [See page eight

8 (4) (a) Explain about three control structures used in computer programming with the help of flowchart segments. (b) Briefly explain what would happen by the interpreter when the following python program is executed. n = int (input("how many marks to sum?:")) total = 0 i =1 while i <= n: s = input ("Enter marks:") total = total+int (s) i = i+1 print (total) print (total/n) (c) What is the output of the following python program? def order(word): i = 0 j = len (word)-1 while i < j: if word[i]!= word[j]: return False i = i+1 j = j-1 return True print (order("ada")) (5) The following scenario describes the data requirements for a video rental company. The company has several branches throughout the country. The data held on each branch is the branch address and the telephone number. Each branch is given a branch number, which is unique throughout the company. Each branch is allocated staff, which includes a Manager. The Manager is responsible for the day-to-day running of a given branch. The data held on a member of staff is his or her name, position, and salary. Each member of staff is given a staff number (staffno), which is unique throughout the company. Each branch has a stock of videos. The data held on a video is the video number (videono), title, category and the names of the main actor and the director. The videono uniquely identifies each video. There are several copies of each video at a branch, and the individual copies are identified using the copy number (copyno). A video is given a category such as Action, Adult, Children, Drama, Horror, or Fiction. Before hiring a video from the company, a customer must first register as a member of a local branch. The data held on a member is the name and the date that the member registered at a branch. Each member is given a member number (memberno), which is unique throughout all branches of the company. Once registered, a member is free to rent videos, up to a maximum of ten at any one time. The data held on each video rented is the rental number, and the dates the video is rented out and returned. The rental number is unique throughout the company. Construct a single ER diagram for the above mentioned scenario and identify attributes and associate them with entity or relationship types and mark primary key attributes for each entities. State any assumptions necessary to support your design. 8 [See page nine

9 (6) Consider the following scenario. It is planning to provide new e-identity card for all the citizens above 15 years old by the department for registration of person in Sri Lanka. A person s photo, finger print, bio-data and blood group would be stored in this identity card. A computerized system has to be developed for this purpose. It is expected to be used this system by the office of the department for registration of person in each districts. Photo and finger print shall be able to take in this system. A citizen will give all the details by going to the office of the department for registration of person. The department for registration of person decides of the necessity to protect all of the information given by the citizens from unauthorized people. Further, all other necessary information about person are stored inside a chip embedded on an identity card. These information are invisible on the identity card. (a) What is functional requirement? (b) Write down two functional requirements of this system. (c) State two possible advantages that the department for registration of person would obtain by introducing this new electronic identity card. (d) Except the chip technology, write down two card technologies that would be used for data storage, machine reading and information encoding. **** 9 [End

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

fy;tpg; nghjj; juhjug; gj;jpu (cah; ju ) Kd;Ndhbg; gupl;ir> 2013 A+iy General Certificate of Education (Advanced Level)Pre Examination, 2013 July

fy;tpg; nghjj; juhjug; gj;jpu (cah; ju ) Kd;Ndhbg; gupl;ir> 2013 A+iy General Certificate of Education (Advanced Level)Pre Examination, 2013 July L/2013/20-E-II KOg;gjpg;GupikilaJ] ll Rights Reserved] khfhzf; fy;tpj; jpizf;fsk;>tlkhfhzk; Provincial Department of Education, Northern Province khfhzf; fy;tpj; Provincial Department of Education, Northern

More information

Database Systems. A Practical Approach to Design, Implementation, and Management. Database Systems. Thomas Connolly Carolyn Begg

Database Systems. A Practical Approach to Design, Implementation, and Management. Database Systems. Thomas Connolly Carolyn Begg Database Systems A Practical Approach to Design, Implementation, and Management For these Global Editions, the editorial team at Pearson has collaborated with educators across the world to address a wide

More information

Week 4 Tute/Lab Entity-Relationship (ER) Model

Week 4 Tute/Lab Entity-Relationship (ER) Model ISYS1055/1057 Database Concepts 2018 Semester 2 Week 4 Tute/Lab Entity-Relationship (ER) Model The objectives of this tute/lab session are: Learn about the entity-relationship model; Learn how to build

More information

Part A Structured Essay. 1. (a) Write the output of the following HTML code when rendered by a web browser.

Part A Structured Essay. 1. (a) Write the output of the following HTML code when rendered by a web browser. Instructions : This question paper comprises of two parts. Part A and part B. Time allocated for both parts is three hours Part A Structured essay Answer all the questions in this paper itself Part A Structured

More information

Part A - Structured Essay Answer all four questions on this paper itself.

Part A - Structured Essay Answer all four questions on this paper itself. General Certificate of Education (Adv. Level) Examination, August 2016 New Syllabus Information & Communication Technology II 20 E II Three hours Important: This question paper comprises of two parts,

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

SRI LANKA INSTITUTE OF ADVANCED TECHNOLOGICAL EDUCATION

SRI LANKA INSTITUTE OF ADVANCED TECHNOLOGICAL EDUCATION [All Rights Reserved] SLIATE SLIATE SRI LANKA INSTITUTE OF ADVANCED TECHNOLOGICAL EDUCATION (Established in the Ministry of Higher Education, vide in Act No. 29 of 1995) Higher National Diploma in Accountancy

More information

EXAMINATION FOR THE BSC (HONS) IN INFORMATION SYSTEMS; YEAR 2

EXAMINATION FOR THE BSC (HONS) IN INFORMATION SYSTEMS; YEAR 2 FACULTY OF SCIENCE AND TECHNOLOGY EXAMINATION FOR THE BSC (HONS) IN INFORMATION SYSTEMS; YEAR 2 ACADEMIC SESSION; 2013 SEMESTER 4 SEG2102: DATABASE MANAGEMENT SYSTEMS FINAL JULY 2013 EXAM CYCLE TIME: 2

More information

Date Performed: Marks Obtained: /10. Group Members (ID):. Experiment # 04. Boolean Expression Simplification and Implementation

Date Performed: Marks Obtained: /10. Group Members (ID):. Experiment # 04. Boolean Expression Simplification and Implementation Name: Instructor: Engr. Date Performed: Marks Obtained: /10 Group Members (ID):. Checked By: Date: Experiment # 04 Boolean Expression Simplification and Implementation OBJECTIVES: To understand the utilization

More information

e-quals Unit Syllabus

e-quals Unit Syllabus e-quals Unit Syllabus Level 1 Creating simple web pages 7266 009 www.cityandguilds.com/equals07 March 2007 Version 4.0 About City & Guilds City & Guilds is the UK s leading provider of vocational qualifications,

More information

General Certificate of Education (Adv. Level) Support Seminar

General Certificate of Education (Adv. Level) Support Seminar 1 General Certificate of Education (Adv. Level) Support Seminar - 2012 Sample Paper :- Information & Communication Technology I Preparation :- Ministry of Education Instruction: Duration:- Two hours Answer

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

2018 Computing Science. National 5. Finalised Marking Instructions

2018 Computing Science. National 5. Finalised Marking Instructions National Qualifications 208 208 Computing Science National 5 Finalised Marking Instructions Scottish Qualifications Authority 208 The information in this publication may be reproduced to support SQA qualifications

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

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

Name: Database Systems ( 資料庫系統 ) Midterm exam, November 15, 2006

Name: Database Systems ( 資料庫系統 ) Midterm exam, November 15, 2006 1 of 8 pages Database Systems ( 資料庫系統 ) Midterm exam, November 15, 2006 Time: 10:00 ~ 12:20 Name: Student ID: I herewith state that I understand and will adhere to the following academic integrity: I will

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

COIT20248: Information Systems Analysis and Design Term 2, 2015 Assignment 2. Lecturer: Dr. Meena Jha Tutor: Aries Tao

COIT20248: Information Systems Analysis and Design Term 2, 2015 Assignment 2. Lecturer: Dr. Meena Jha Tutor: Aries Tao COIT20248: Information Systems Analysis and Design Term 2, 2015 Assignment 2 Lecturer: Dr. Meena Jha Tutor: Aries Tao Prepared by: AXXXX XXXX: S0XXXXXX AXXXX MXXXXX: BisXXXXX BaXXXX: S0XXXXX S02XXXX SXXXXX

More information

1. Boolean algebra. [6] 2. Constructing a circuit. [4] 3. Number representation [4] 4. Adders [4] 5. ALU [2] 6. Software [4]

1. Boolean algebra. [6] 2. Constructing a circuit. [4] 3. Number representation [4] 4. Adders [4] 5. ALU [2] 6. Software [4] Family Name:.......................... Other Names:.......................... ID Number:.......................... ENGR101: Test 4 May 2009 Instructions Time allowed: 45 minutes. There are 45 marks in

More information

Chapter 11: Wide-Area Networks and the Internet

Chapter 11: Wide-Area Networks and the Internet Chapter 11: Wide-Area Networks and the Internet MULTIPLE CHOICE 1. MAN stands for: a. Manchester Access Network c. Metropolitan-Area Network b. Multiple-Area Network d. Multiple Access Network 2. Packet

More information

AMEB Victoria's new online service centre. User s Guide

AMEB Victoria's new online service centre. User s Guide AMEB Victoria AMEB Victoria, 259 Auburn Road, Hawthorn, Victoria 3122 T 03 9035 8888 ameb-vic@unimelb.edu.au www.ameb.unimelb.edu.au User s Guide AMEB Victoria's new online service centre Contents Introduction...

More information

COMP2 (JAN10COMP201) General Certificate of Education Advanced Subsidiary Examination January 2010

COMP2 (JAN10COMP201) General Certificate of Education Advanced Subsidiary Examination January 2010 Centre Number Surname Candidate Number For Examiner s Use Other Names Candidate Signature Examiner s Initials Computing General Certificate of Education Advanced Subsidiary Examination January 2010 COMP2

More information

Computing at Cox Green Curriculum Plan. Key Stage 3 Year 7

Computing at Cox Green Curriculum Plan. Key Stage 3 Year 7 Computing at Cox Green Curriculum Plan Key Stage 3 Year 7 Term 1 Term 2 Term 3 Term 4 Term 5 Term 6 E-safety Database Programming Spreadsheet and modelling Web design How data is represented in s? How

More information

4. Write a sum-of-products representation of the following circuit. Y = (A + B + C) (A + B + C)

4. Write a sum-of-products representation of the following circuit. Y = (A + B + C) (A + B + C) COP 273, Winter 26 Exercises 2 - combinational logic Questions. How many boolean functions can be defined on n input variables? 2. Consider the function: Y = (A B) (A C) B (a) Draw a combinational logic

More information

Examination will be conducted in English Medium and you are required to answer in English Medium.

Examination will be conducted in English Medium and you are required to answer in English Medium. A. Dates of Conducting the Business Level and Corporate Level s December, 2017 To All Candidates, Please read the following instructions carefully before filling the application 24 th, 30 th and 31 st

More information

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 14 FEBRUARY 2014 ADVANCED LEVEL Subject/Code: Computer Science 795 Paper N Paper 2 Examiner DZEUGANG Placide TIME ALLOWED: 2 hours INSTRUCTIONS

More information

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS. INTRODUCTION TO INTERNET SOFTWARE DEVELOPMENT CSIT 2230 (formerly CSIT 2645)

PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS. INTRODUCTION TO INTERNET SOFTWARE DEVELOPMENT CSIT 2230 (formerly CSIT 2645) PELLISSIPPI STATE COMMUNITY COLLEGE MASTER SYLLABUS INTRODUCTION TO INTERNET SOFTWARE DEVELOPMENT CSIT 2230 (formerly CSIT 2645) Class Hours: 2.0 Credit Hours: 3.0 Laboratory Hours: 2.0 Revised: Fall 2012

More information

G.C.E. (A/L) Examination November 2015 Conducted by Field Work Center, Thondaimanaru. In Collaboration with the Zonal Education Office, Jaffna

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

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

CTI Short Learning Programme in Internet Development Specialist

CTI Short Learning Programme in Internet Development Specialist CTI Short Learning Programme in Internet Development Specialist Module Descriptions 2015 1 Short Learning Programme in Internet Development Specialist (10 months full-time, 25 months part-time) Computer

More information

e-invoicing Guide Version 1.2 March 2014

e-invoicing Guide Version 1.2 March 2014 e-invoicing Guide Version 1.2 March 2014 Table of Contents About this Guide...3 Introduction...4 Creating an e-invoice/quotation...5 e-invoice/quotation Fields...5 e-invoice/quotation Details...5 Customer

More information

Suggestions and Model Questions for B.Com Part II IT Practical Examination (C21G), 2016 (Information Technology and its Application in Business)

Suggestions and Model Questions for B.Com Part II IT Practical Examination (C21G), 2016 (Information Technology and its Application in Business) Suggestions and Model Questions for B.Com Part II IT Practical Examination (C21G), 2016 (Information Technology and its Application in Business) Students may practice the following 1. Creating Folders

More information

Level 3 Voice and data communications ( )

Level 3 Voice and data communications ( ) Level 3 Voice and data communications (7540-370) Systems and Principles Assignment guide for Candidates Assignment B www.cityandguilds.com September 2017 Version 1.0 About City & Guilds City & Guilds is

More information

Boolean Analysis of Logic Circuits

Boolean Analysis of Logic Circuits Course: B.Sc. Applied Physical Science (Computer Science) Year & Sem.: IInd Year, Sem - IIIrd Subject: Computer Science Paper No.: IX Paper Title: Computer System Architecture Lecture No.: 7 Lecture Title:

More information

[CS(SG)06FMS] NATIONAL QUALIFICATIONS. COMPUTING STUDIES STANDARD GRADE Foundation Level. Marking Guidelines

[CS(SG)06FMS] NATIONAL QUALIFICATIONS. COMPUTING STUDIES STANDARD GRADE Foundation Level. Marking Guidelines F [CS(SG)06FMS] NATIONAL QUALIFICATIONS Marking Guidelines COMPUTING STUDIES STANDARD GRADE Foundation Level This paper must be withdrawn from candidates after any follow-up discussion of marks/grades

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

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

download instant at The Relational Data Model

download instant at  The Relational Data Model 3 The Relational Data Model EXERCISES 3.1 Define data atomicity as it relates to the definition of relational databases. Contrast data atomicity with transaction atomicity as used in a transaction processing

More information

Overview. Exercise 0: Implementing a Client. Setup and Preparation

Overview. Exercise 0: Implementing a Client. Setup and Preparation Overview This Lab assignment is similar to the previous one, in that you will be implementing a simple client server protocol. There are several differences, however. This time you will use the SOCK_DGRAM

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

Adept Software Online Family Registration

Adept Software Online Family Registration Adept Software Online Family Registration Contents Adept Software Online Family Registration... 1 Embedding Registration Package into Club Website... 2 Primary Contact and Family Medical Information...

More information

The Institute of Chartered Accountants of Sri Lanka

The Institute of Chartered Accountants of Sri Lanka The Institute of Chartered Accountants of Sri Lanka 30A, Malalasekera Mw, Colombo 07. SPECIAL NOTICE STRATEGIC LEVEL EXAMINATION JUNE 2012 TO ALL STRATEGIC LEVEL CANDIDATES (1 st Attempt) Please draw the

More information

Automated Information System AIS telephone user guide

Automated Information System AIS telephone user guide Automated Information System AIS telephone user guide May 2007 Department of Human Services Division of Medical Assistance Programs 500 Summer St NE, E 44 Salem, OR 97301-1077 1-800-527-5772 Contents I.

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

Lecture 01. Fall 2018 Borough of Manhattan Community College

Lecture 01. Fall 2018 Borough of Manhattan Community College Lecture 01 Fall 2018 Borough of Manhattan Community College 1 2 Introduction A database (DB) is a collection of related data. A database management system (DBMS) is the software that manages and controls

More information

P.G.D.C.M. (Semester I) Examination, : ELEMENTS OF INFORMATION TECHNOLOGY AND OFFICE AUTOMATION (2008 Pattern)

P.G.D.C.M. (Semester I) Examination, : ELEMENTS OF INFORMATION TECHNOLOGY AND OFFICE AUTOMATION (2008 Pattern) *4089101* [4089] 101 P.G.D.C.M. (Semester I) Examination, 2011 101 : ELEMENTS OF INFORMATION TECHNOLOGY AND OFFICE AUTOMATION (2008 Pattern) Time : 3 Hours Max. Marks : 70 Note : 1) Q. 1 is compulsory.

More information

06/02/ Local & Metropolitan Area Networks 0. INTRODUCTION. 1. History and Future of TCP/IP ACOE322

06/02/ Local & Metropolitan Area Networks 0. INTRODUCTION. 1. History and Future of TCP/IP ACOE322 1 Local & Metropolitan Area Networks ACOE322 Lecture 5 TCP/IP Protocol suite and IP addressing 1 0. INTRODUCTION We shall cover in this topic: 1. The relation of TCP/IP with internet and OSI model 2. Internet

More information

MRIEHEL SECONDARY SCHOOL HALF-YEARLY EXAMINATIONS 2016~17. Year 9 Computing Time: 1hr 30mins MARKING SCHEME. a) CPU : b) MSB : c) GUI :

MRIEHEL SECONDARY SCHOOL HALF-YEARLY EXAMINATIONS 2016~17. Year 9 Computing Time: 1hr 30mins MARKING SCHEME. a) CPU : b) MSB : c) GUI : MRIEHEL SECONDARY SCHOOL HALF-YEARLY EXAMINATIONS 2016~17 Year 9 Computing Time: 1hr 30mins MARKING SCHEME 1. What do the following abbreviations stand for? Central Processing Unit a) CPU : Most Significant

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

Subject Introduction to Information Technology Paper code MSCIT-101

Subject Introduction to Information Technology Paper code MSCIT-101 Q.1) Write a short note on following: (A) Buffer & register: MSC 1 st Sem Aug-2014 Subject Introduction to Information Technology Paper code MSCIT-101 Answer: To handle the execution of instructions and

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

IT Skills. September Marking Scheme

IT Skills. September Marking Scheme IT Skills September 205 Marking Scheme This marking scheme has been prepared as a guide only to markers. This is not a set of model answers, or the exclusive answers to the questions, and there will frequently

More information

Earo Scan Pos Version 7 User Manual Point of Sale

Earo Scan Pos Version 7 User Manual Point of Sale Earo Scan Pos Version 7 User Manual Point of Sale Profectus Capital (Pty) Ltd 12 Chasewater Str, New Redruth, Alberton, 1450 Tel : 011 869 2954 accounts@profectuscapital.co.za WORKING WITH THE TOUCH POS

More information

COMPUTING SUBJECT KNOWLEDGE AUDIT

COMPUTING SUBJECT KNOWLEDGE AUDIT COMPUTING SUBJECT KNOWLEDGE AUDIT Use this needs analysis to help self-assess and track your computing subject knowledge. Topic Area 1 Computational thinking Define, explain and use these concepts with

More information

QUESTION BANK UNIT-I

QUESTION BANK UNIT-I DEPARTMENT OF INFORMATION TECHNOLOGY QUESTION BANK Subject Code: CS1302 Subject Name: Computer Networks Year/ Sem: III / V UNIT-I 1. What is multicast? What is the difference between unicast and multicast?

More information

BLUEBIRD QUESTIONS. Basics Patient Data 4 5. Appointments 5. Service Codes 5 6. Invoice Creation 6 7. Invoice Advance 7 8. Payment Basics 8 9

BLUEBIRD QUESTIONS. Basics Patient Data 4 5. Appointments 5. Service Codes 5 6. Invoice Creation 6 7. Invoice Advance 7 8. Payment Basics 8 9 BLUEBIRD QUESTIONS 1 Basics 2 3 4 Patient Data 4 5 Appointments 5 Service Codes 5 6 Invoice Creation 6 7 Invoice Advance 7 8 Payment Basics 8 9 Money Basics 9 10 Assets 10 11 Bank Deposits 11 Buy vs. Lease

More information

Chapter Three. Digital Components

Chapter Three. Digital Components Chapter Three 3.1. Combinational Circuit A combinational circuit is a connected arrangement of logic gates with a set of inputs and outputs. The binary values of the outputs are a function of the binary

More information

SPECIAL NOTICE Business & Corporate Level Examinations June To All Business & Corporate Levels Candidates (1st Attempt)

SPECIAL NOTICE Business & Corporate Level Examinations June To All Business & Corporate Levels Candidates (1st Attempt) SPECIAL NOTICE Business & Corporate Level Examinations June 2015 To All Business & Corporate Levels Candidates (1st Attempt) Please draw your ernest attention on the following examination eligibility criteria

More information

COP 5725 Fall Hospital System Database and Data Interface. Term Project

COP 5725 Fall Hospital System Database and Data Interface. Term Project COP 5725 Fall 2016 Hospital System Database and Data Interface Term Project Due date: Nov. 3, 2016 (THU) Database The database contains most of the information used by the web application. A database is

More information

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad

INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad INSTITUTE OF AERONAUTICAL ENGINEERING (Autonomous) Dundigal, Hyderabad - 500 043 INFORMATION TECHNOLOGY TUTORIAL QUESTION BANK Course Name Course Code Class Branch : Web Technologies : ACS006 : B. Tech

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

06 - Related Parties - Controlled Groups 1

06 - Related Parties - Controlled Groups 1 06 - Related Parties - Controlled Groups 1 Page 105 I. Controlled Groups C 1 C 2 C 3 C 4 C 5 A Sea of C s C 6 Carl s C Corporation TI = $50,000. 06 - Related Parties - Controlled Groups 2 Page 105 I. Controlled

More information

RelayHealth Legal Notices

RelayHealth Legal Notices Page 1 of 7 RelayHealth Legal Notices PRIVACY POLICY Revised August 2010 This policy only applies to those RelayHealth services for which you also must accept RelayHealth s Terms of Use. RelayHealth respects

More information

Review of Data Representation & Binary Operations Dhananjai M. Rao CSA Department Miami University

Review of Data Representation & Binary Operations Dhananjai M. Rao CSA Department Miami University Review of Data Representation & Binary Operations Dhananjai M. Rao () CSA Department Miami University 1. Introduction In digital computers all data including numbers, characters, and strings are ultimately

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

My Health Online 2017 Website Update Configuration User Guide

My Health Online 2017 Website Update Configuration User Guide My Health Online 2017 Website Update Configuration User Guide Version 1 15 June 2017 Vision The Bread Factory 1a Broughton Street London SW8 3QJ Registered No: 1788577 England www.visionhealth.co.uk T

More information

CTI Higher Certificate in Information Systems (Internet Development)

CTI Higher Certificate in Information Systems (Internet Development) CTI Higher Certificate in Information Systems (Internet Development) Module Descriptions 2015 1 Higher Certificate in Information Systems (Internet Development) (1 year full-time, 2½ years part-time) Computer

More information

Effective Date: November 26, A. Overview

Effective Date: November 26, A. Overview WEI Technology LLC ( WEI, we or us ) takes your privacy seriously. Please read this Privacy Policy, which describes the types of information we collect through www.lendingpad.com (the Website ), and how

More information

Order Type Order time (Day 0) Delivery day VOR Before 4pm Day 2 After 4pm Day 3 STOCK Before 4pm Day 3 After 4pm Day 4

Order Type Order time (Day 0) Delivery day VOR Before 4pm Day 2 After 4pm Day 3 STOCK Before 4pm Day 3 After 4pm Day 4 PARTS & SERVICE 21 st January 2016 PARTS & SERVICE NEWSLETTER 1408 TO ALL PEUGEOT PARTS DISTRIBUTORS For the attention of the Dealer Principal and Parts Manager Dear Sir/Madam PARTS DISTRIBUTION PROCESSES

More information

Data and Process Modeling

Data and Process Modeling Chapter 5 Data and Process Modeling 5 CHAPTER Data and Process Modeling Chapter 5 is the second of four chapters in the systems analysis phase of the SDLC. This chapter discusses data and process modeling

More information

SECONDARY SCHOOL, L-IMRIEĦEL HALF YEARLY EXAMINATIONS 2016/2017

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

More information

Oracle Copy Inventory Organization

Oracle Copy Inventory Organization Oracle Copy Inventory Organization Implementation Guide Release 11i October 2001 Part No. A95116-01 Oracle Copy Inventory Organization Implementation Guide, Release 11i Part No. A95116-01 Copyright 1996,

More information

HIPAA Federal Security Rule H I P A A

HIPAA Federal Security Rule H I P A A H I P A A HIPAA Federal Security Rule nsurance ortability ccountability ct of 1996 HIPAA Introduction - What is HIPAA? HIPAA = The Health Insurance Portability and Accountability Act A Federal Law Created

More information

Visit Mon General Registration

Visit Mon General Registration Visit Mon General Registration Fill-out your MyMonGen Registration card and present it to the registration staff at Mon General * Please Note: You must have a valid photo ID to sign up. Or Visit: MonGeneral.Com/MMG

More information

Viral Load Scale-Up Facility Readiness Assessment Checklist

Viral Load Scale-Up Facility Readiness Assessment Checklist Viral Load Scale-Up Facility Readiness Assessment Checklist Facility Name: Region: Date: Assessors Names: 1. 2. Interview Start Time: Interview End Time: Instructions: Please read and make sure you understand

More information

PRACTICE MANAGEMENT SYSTEMS

PRACTICE MANAGEMENT SYSTEMS PRACTICE MANAGEMENT SYSTEMS P.O. Box 102 Ivanhoe, Victoria, 3079 T: 1300 784 908 F: 1300 784 906 www.ppmp.com.au Pag 1 of 124 Table of Contents PROGRAM SETUP WIZARD... 4 INSTALLATION & ACTIVATION OF HICAPS...

More information

INFORMATION TECHNOLOGY CONCEPTS (391) OPEN EVENT

INFORMATION TECHNOLOGY CONCEPTS (391) OPEN EVENT INFORMATION TECHNOLOGY CONCEPTS-OPEN- REGIONAL 2017 Page 1 of 10 INFORMATION TECHNOLOGY CONCEPTS (391) OPEN EVENT REGIONAL 2017 DO NOT WRITE ON TEST BOOKLET TOTAL POINTS (100 points) Failure to adhere

More information

DRAFT. Amendment to Chapter 102 Taxation Article I In General, by adding a new Section titled Omitted Real Property Assessments.

DRAFT. Amendment to Chapter 102 Taxation Article I In General, by adding a new Section titled Omitted Real Property Assessments. ATTACHMENT #1 Regular LF&A Meeting of August 13, 2007 DRAFT Amendment to Chapter 102 Taxation Article I In General, by adding a new Section 102-4 titled Omitted Real Property Assessments. Sec. 102-4 Omitted

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

COMP2 (JUN15COMP201) General Certificate of Education Advanced Subsidiary Examination June 2015

COMP2 (JUN15COMP201) General Certificate of Education Advanced Subsidiary Examination June 2015 Centre Number Surname Candidate Number For Examiner s Use Other Names Candidate Signature Examiner s Initials Question Mark Computing General Certificate of Education Advanced Subsidiary Examination June

More information

Notice to Members. Branch Office Definition. Executive Summary. Questions/Further Information AUGUST 2002

Notice to Members. Branch Office Definition. Executive Summary. Questions/Further Information AUGUST 2002 Notice to Members AUGUST 2002 SUGGESTED ROUTING CRD Legal & Compliance Member Regulation Operations Senior Management REQUEST FOR COMMENT ACTION REQUESTED BY SEPTEMBER 20, 2002 Branch Office Definition

More information

Homework 2: E/R Models and More SQL (due February 17 th, 2016, 4:00pm, in class hard-copy please)

Homework 2: E/R Models and More SQL (due February 17 th, 2016, 4:00pm, in class hard-copy please) Virginia Tech. Computer Science CS 4604 Introduction to DBMS Spring 2016, Prakash Homework 2: E/R Models and More SQL (due February 17 th, 2016, 4:00pm, in class hard-copy please) Reminders: a. Out of

More information

Systems and Principles Unit Syllabus

Systems and Principles Unit Syllabus Systems and Principles Unit Syllabus Level 2 Creating an event driven computer program using Java 7540-007 www.cityandguilds.com October 2010 Version 2.0 About City & Guilds City & Guilds is the UK s leading

More information

Software Engineering Prof.N.L.Sarda IIT Bombay. Lecture-11 Data Modelling- ER diagrams, Mapping to relational model (Part -II)

Software Engineering Prof.N.L.Sarda IIT Bombay. Lecture-11 Data Modelling- ER diagrams, Mapping to relational model (Part -II) Software Engineering Prof.N.L.Sarda IIT Bombay Lecture-11 Data Modelling- ER diagrams, Mapping to relational model (Part -II) We will continue our discussion on process modeling. In the previous lecture

More information

QUESTIONS AND CONTACTS

QUESTIONS AND CONTACTS Contact: Jake Losinski, Management Analyst P.O. Box 2315 480 East Avenue North Ketchum, ID 83340 July 27, 2018 Telephone: (208) 727-5081 jlosinski@ketchumidaho.org SUBMITTAL DEADLINE The City of Ketchum,

More information

NAPIER UNIVERSITY SCHOOL OF COMPUTING

NAPIER UNIVERSITY SCHOOL OF COMPUTING NAPIER UNIVERSITY SCHOOL OF COMPUTING Level III SESSION 2000/2001 Duration: 2 hours Computer Networks and Distributed Systems MODULE NO: CO32006 (MM32021) There are SIX questions in this paper Attempt

More information

Santa Monica College. GRAPHIC DESIGN 65: Web Design I Course Syllabus

Santa Monica College. GRAPHIC DESIGN 65: Web Design I Course Syllabus GRAPHIC DESIGN 65: Web Design I Course Syllabus Instructor: Anastasia Triviza Term: Spring 2010 Section: 4266 Time and Place: Thursdays, 6:30 PM-9:35 PM, AET 105 Arrange - 1 Hour Program website: http://www.smc.edu/designtech/graphic_design/

More information

CS Database Design - Assignments #3 Due on 30 March 2015 (Monday)

CS Database Design - Assignments #3 Due on 30 March 2015 (Monday) CS422 - Database Design - Assignments #3 Due on 30 March 205 (Monday) The solutions must be hand written, no computer printout, and no photocopy.. (From CJ Date s book 4th edition, page 536) Figure represents

More information

Full file at

Full file at ch02 True/False Indicate whether the statement is true or false. 1. IP addresses have links to domain names to make it possible for users to identify and access resources on a network. 2. As a frame moves

More information

RxWorks Inc 7/28/2010

RxWorks Inc 7/28/2010 RxWorks V4.3 Release Notes RxWorks Inc 7/28/2010 V2 The most Multi-Branch friendly release to date TABLE OF CONTENTS AUTOMATED MESSAGE MANAGER (AMM)... 5 SMS DETAILS FOR MULTI-BRANCH PRACTICES... 5 AUTOMATED

More information

Systems and Principles Unit Syllabus

Systems and Principles Unit Syllabus Systems and Principles Unit Syllabus Level 3 Web development 7540-044 www.cityandguilds.com January 2011 Version 2.0 About City & Guilds City & Guilds is the UK s leading provider of vocational qualifications,

More information

Part II - B. Answer sheet and marks allocated

Part II - B. Answer sheet and marks allocated Part II - B Answer sheet and marks allocated (1) (a). i. RAM (0.5 marks) Store operating system as long as the computer is working. Temporary stores data, instructions, information and application software

More information

How to Buy A Bus Pass

How to Buy A Bus Pass How to Buy A Bus Pass How to Buy a RideTRAFFIX Bus Pass 2018 Step One: Go to the website Go to http://ridetraffix.com/buyapass.aspx Step Two: Enter Your Address Correctly Type in your Street number and

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

BCS THE CHARTERED INSTITUTE FOR IT. BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 5 Diploma in IT. March 2018 PRINCIPLES OF INTERNET TECHNOLOGIES

BCS THE CHARTERED INSTITUTE FOR IT. BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 5 Diploma in IT. March 2018 PRINCIPLES OF INTERNET TECHNOLOGIES General Comments BCS THE CHARTERED INSTITUTE FOR IT BCS HIGHER EDUCATION QUALIFICATIONS BCS Level 5 Diploma in IT March 2018 PRINCIPLES OF INTERNET TECHNOLOGIES EXAMINERS REPORT Firstly, a gentle reminder

More information

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

UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education. Paper 1 May/June hours www.xtremepapers.com UNIVERSITY OF CAMBRIDGE INTERNATIONAL EXAMINATIONS International General Certificate of Secondary Education *83455669* INFORMATION AND COMMUNICATION TECHNOLOGY 047/0 Paper May/June

More information

Revised Guidelines for B.A. Programme Semester II Paper: Database Management System (Meeting held on 15 th Jan 2015)

Revised Guidelines for B.A. Programme Semester II Paper: Database Management System (Meeting held on 15 th Jan 2015) Revised Guidelines for B.A. Programme Semester II Paper: Database Management System (Meeting held on 15 th Jan 2015) Theory Theory Periods 4 periods/ week Tutorial - 1 period / 15 days Theory Paper Marks

More information

Patient Portal User Guide The Patient s Guide to Using the Portal

Patient Portal User Guide The Patient s Guide to Using the Portal 2014 Patient Portal User Guide The Patient s Guide to Using the Portal Table of Contents: What is the Patient Portal?...3 Enrolling in the Patient Portal.......... 4-19 A. Enrollment Option #1: First-Time

More information