(Structured Query Language)

Size: px
Start display at page:

Download "(Structured Query Language)"

Transcription

1 KENDRIYA VIDYALAYA HALDWANI 2 ND SHIFT CLASS XII SESSION DATABASE CONCEPTS, SQL ISSUED DATE: SUBMITTED DATE: ============================================================================== 1. What is a database system? What is its need? 2. What are the various data models available for database systems? 3. What are views? Define with an example? Give two advantages of views? 4. What is data redundancy? What are the problems associated with it? 5. Differentiate between Candidate Key, Primary Key and Alternate Key in context of RDBMS. 7. What is the function of select and project operation? Give one example of each. 8. What is the output of following relational algebra queries? TABLE: ITEMS P_ID ItemName Manufacturer Price PC01 Personal Computer ABC LC05 Laptop ABC PC03 Personal Computer XYZ PC06 Personal Computer COMP LC03 Laptop PQR i) σ price>37000 (Items) ii) σ price>37000 ^ price<55500 (Items) iii) π ItemName, Price (Items) iv) π ItemName (σ price>=37000 (Items)) (Structured Query Language) 1. What are DDL and DML? Give two examples of each. 2. What do you mean by SQL? Give its two features? 3. Differentiate between SQL commands DROP TABLE and DROP VIEW. 4. Give the difference between DROP and DELETE Command of SQL with an example. 5. What do you mean by data type? Give examples of SQL data types? 6. What is the difference between char and varchar2 data types? 7. What do you mean by constraint? Give its examples. Write similarity and dissimilarity between primary key and unique constraints? 8. What are the use of check and default constraints? 9. By which keyword you can eliminate redundant data for a particular column? 10. What are the two difference between where and having clause of a select query? 11. What do you mean by dual table? What is its use? 12. What are aggregate functions? Give its example & explain anyone with an example. 13. Study the following tables FLIGHTS and FARES and write SQL commands for the questions (i) to (iv) and give outputs for SQL queries (v) to (vi). TABLE: FLIGHTS FL_NO STARTING ENDING NO_FLIGHTS NO STOPS IC301 MUMBAI DELHI 8 0 IC799 BANGALORE DELHI 2 1 MC101 INDORE MUMBAI 3 0 IC302 DELHI MUMBAI 8 0 AM812 KANPUR BANGALORE 3 1 IC899 MUMBAI KOCHI 1 4

2 AM501 DELHI TRIVANDRUM 1 5 MU499 MUMBAI MADRAS 3 3 IC701 DELHI AHMEDABAD 4 0 TABLE: FARES FL_NO AIRLINES FARE TAX% 1C701 Indian Airlines MU499 Sahara AM501 Jet Airways IC899 Indian Airlines C302 Indian Airlines C799 Indian Airlines MC101 Deccan Airlines i. Display FL_NO and NO_FLIGHTS from KANPUR to BANGALORE from the table FLIGHTS. ii. Display the contents of the table FLIGHTS in the ascending order of FL_NO. iii. Display the FL_NO and fare to be paid for the flights from DELHI to MUMBAI using the tables FLIGHTS and FARES, where the fare to be paid = FARE + FARE * TAX%/100. iv. Display the minimum fare Indian Airlines is offering from the table FARES. v. SELECT FL_NO, NO_FLIGHTS, AIRLINES from FLIGHTS, FARES where STARTING= DELHI and FLIGHTS.FL_NO=FARES.FL_NO; vi. SELECT count (distinct ENDING) from FLIGHTS; 14. Consider the following tables Item and Customer. Write SQL commands for the statements (i) to (iv) and give output for SQL queries (v) to (viii). TABLE: ITEM I_ID ItemName Manufacturer Price PC01 Personal Computer ABC LC05 Laptop ABC PC03 Personal Computer XYZ PC06 Personal Computer COMP LC03 Laptop PQR TABLE : CUSTOMER C_ID CustomerName City I_ID 01 N Roy Delhi LC03 06 H Singh Mumbai PC03 12 R Pandey Delhi PC06 15 C Sharma Delhi LC03 16 K Agarwal Bangalore PC01

3 (i) To display the details of those Customers whose City is Delhi. (ii) To display the details of Items whose Price is in the range of to (Both values included). (iii) To display the CustomerName, City from table Customer and ItemName and Price from table Item, with their corresponding matching I_ID (iv) To increase the Price of all Items by 1000 in the table Item. (v) SELECT DISTINCT City FROM Customer; (vi) SELECT ItemName, MAX(Price), Count(*) FROM Item GROUP BY ItemName; (vii) SELECT CustomerName, Manufacturer FROM Item, Customer WHERE Item.I_Id=Customer.I_Id; (viii) SELECT ItemName, Price * 100 FROM Item WHERE Manufacturer='ABC'; ================================================================= BOOLEAN ALGEBRA ================================================================== 1. State and verify Associative,Distributive, Absorption, Idempotence, Complementarity, Commutative law in Boolean Algebra algebraically. 2. State and verify De Morgan s theorem. 3. State and verify second Distributive law by algebraic method in Boolean Algebra. 4. State Involution Law and verify the same using truth table. 5. Verify the following algebraically: X.Y + X.Y = (X +Y )(X+Y) 6. Verify the following using Truth table: X+Y.Z=(X+Y).(X+Z) 7. Verify the following using Truth table: (i) X.X =0 (ii) X+1=1 8. Write the equivalent expression for the following logical circuit: 9. Express P+Q R in canonical POS form. 10. Express P + QR in canonical SOP form. 11. Draw a Logical Circuit Diagram for the following Boolean Expression: A. (B + C') 12. Draw logical circuit diagram for the following Boolean expression. F= AB + B C + C A 13. Reduce the following Boolean expression using K-Map: F(P,Q,R,S)= (l,3,5,8,11,12,15 ) 14. Reduce the following Boolean expression using K-Map: F(P, Q, R, S) = π (0,3,5,6,7, 11, 12, 15) 15. Reduce the following Boolean expression using K-Map. F(P, Q,R, S) = (0,3,5,6,7,11,12,15) 16. Convert the following Boolean expression, into its equivalent Canonical Product of Sum Form(POS) : A. B'.C + A'. B. C + A'. B. C' 17. Reduce the following Boolean expression using K - Map: F (A, B, C, D) = π (0, 1, 2, 3, 4, 5, 10, 11, 15) 18. Write the equivalent Canonical Product of Sum Expression for the following Sum of Product Expression F(X, Y, Z) = (0, 2, 4, 5)

4 19. Reduce the following Boolean expression using K-Map: F(A, B, C, D) = π (5,6,7,8,9,12,13,14,15) 20. Convert the following Boolean expression into its equivalent Canonical Sum of Product Form(SOP): (X +Y+Z ).(X +Y+Z).(X +Y +Z).(X +Y +Z ). 21. Write the equivalent canonical POS expression for the following SOP expression: F(x,y,z)=Σ(0,2,5,6). 22. Prove that XY+YZ+YZ =Y algebraically. 23. Design (A+B).(C+D) using NOR Gate. 24. State Duality principle. Give the dual of the expression: FT+T Y 25. Reduce the following Boolean expressions using K-Map: i) F(A,B,C,D)= (0,1,2,4,5,8,9,10,11) ii) F (A, B, C, D) = (0,2,3,4,6,7,8,10,12) iii) F(A,B,C,D)= π (0,1,2,4,5,6,8,10) viii) F(A,B,C,D) = π (5,6,7,8,9,12,13,14,15) 26. Write the POS form of a Boolean function F, which is represented in a truth table as follows: U V W F Write the SOP form of a Boolean function G, which is represented in a truth table as follows: P Q R G

5 ===================================================== Networking Concepts ===================================================== 1. Define the term Bandwidth. Give unit of Bandwidth. 2. Define the term firewall. 3. What is the importance of URL in networking? 4. Give one suitable example of each URL and Domain Name. 5. Name two transmission media for networking. 6. Differentiate between Hackers and Crackers. 7. Explain function of Modem and Switch. 8. Write one advantage & disadvantage of BUS topology as compared to STAR topology. 9. Differentiate between Internet and Intranet. 10. Write one difference between coaxial and optical cable. 11. Define Packet Switching and message switching. 12. Name two switching techniques used to transfer data between two terminals (computers). 13. Write two application of Cyber Law. 14. Which out of the following comes under Cyber Crime? (i) Operating someone s Internet banking account, without his knowledge. (ii) Stealing a keyboard from someone s computer. (iii) Working on someone s computer with his/her permission. 15. What do you understand by the terms Cookies? 16. Which of the following unit measures the speed with which data can be transmitted from one node to another node of a network? Also, give the expansion of the suggested unit. (i) Mbps (ii) KMph (iii) MGps 17What is bleeding of signal? 18. Which of the following is not a unit for data transfer rate? (i) mbps (ii) kbps (iii) sbps (iv) gbps 19. What out of the following, will you use to have an audio- visual chat with an expert sitting in a far-away place to fix up a technical issue? (i) VoIP (ii) (iii) FTP 21. Which communication medium is to be suggested for very effective and fast communication in guided medium? 22. Which media have the ability to communicate over oceans? 23. What is the difference between microwave and radio wave transmission? 24. What is baud? 25. What do you mean by transmission media? Give one example each of guided media and unguided media? 26. What are router, gateway, bridge, switch and repeater? 27. Explain function of hub and router. 28. What is the difference between XML and HTML? 29. What is WEB2.0? 30. Differentiate between Telnet & FTP.? 31. Expand the following terminologies: CDMA, GSM, HTML, XML, SMS, MAN, WAN, LAN, FTP, WWW, URL, HTTP, PPP, SLIP, TCP/IP, WLL, RJ-45, ARPANET, ISP, DHTML, SIM, GPRS, ISDN, W3C, TDMA, FSF, OSI, GNU, FLOSS, OSS. 32. What is the purpose of using a Web Browser? Name any two commonly used Web Browser. 33. Give difference between LAN, MAN and WAN. 34. In networking, what is WAN? How is it different from LAN?

6 35. What is protocol? Which protocol is used to copy a file from/to a remotely located server? 36. What is the difference between Virus and Worms in the computers? 37. What term do we use for a software/hardware device, which is used to block unauthorized access while permitting authorized communication? This term is also used for a device or set of devices configured to permit, deny, encrypt, decrypt, or proxy all (in and out) computer traffic between different security domains based upon a set of rules and other criteria. 38. Name one server side scripting language and one client side scripting language. 39. Out of the following, identify client side scripts and server side sripts. (i) VB script (ii) Java scripts (iii) ASP (iv) JSP 40. Which of the following is not a client side script. (ii) VB script (ii) Java scripts (iii) ASP (iv) PHP 41. Knowledge Supplement Organization has set up its new center at Mangalore for its office and web based activities. It has 4 blocks of buildings as shown in the diagram below: Block A Block C Block B Block D Center to center distances between various blocks Black A to Block B 50 m Block B to Block C 150 m Block C to Block D 25 m Block A to Block D 170 m Block B to Block D 125 m Block A to Block C 90 m Number of Computers Black A 25 Block B 50 Block C 125 Block D 10 e1) Suggest a cable layout of connections between the blocks. e2) Suggest the most suitable place (i.e. block) to house the server of this organization with a suitable reason. e3) Suggest the placement of the following devices with justification (i) Repeater (ii) Hub/Switch e4) The organization is planning to link its front office situated in the city in a hilly region where cable connection is not feasible, suggest an economic way to connect it with reasonably high speed? e5) The organization is planning to connect its International Office situated in Mumbai. Which out of the following wired communication links, will you suggest for a very high speed connectivity? Telephone Analog Lines Optical Fiber Ethernet Cable

7 42. Ravya Industries has set up its new center at Kaka Nagar for its office and web based activities. The company compound has 4 buildings as shown in the diagram below: Raj Fazz Harsh Jazz Center to center distances between various buildings is as follows: Harsh to Raj 50 m Raz to Fazz 60 m Fazz to Jazz 25 m Jazz to Harsh 170 m Harsh to Fazz 125 m Raj to Jazz 90 m Number of Computers in each of the buildings is follows: Harsh 15 Raj 150 Fazz 15 Jazz Bulding 25 e1) Suggest a cable layout of connections between the buildings. e2) Suggest the most suitable place (i.e. building) to house the server of this organisation with a suitable reason. e3) Suggest the placement of the following devices with justification: (i) Internet Connecting Device/Modem (ii) Switch e4) The organisation is planning to link its sale counter situated in various parts of the same city, which type of network out of LAN, MAN or WAN will be formed? Justify your answer.

Downloaded from

Downloaded from Unit-V Network and Communication Technology Network and Communication Technology Chapter: 09 A Network is a collection of interconnected autonomous computers. A Computer which is a part of a network is

More information

KENDRIYA VIDYALAYA SANGATHAN. Regional Office Delhi Split-up Syllabus Session Subject:-Computer Science Subject Code:-083

KENDRIYA VIDYALAYA SANGATHAN. Regional Office Delhi Split-up Syllabus Session Subject:-Computer Science Subject Code:-083 KENDRIYA VIDYALAYA SANGATHAN Regional Office Delhi Split-up Syllabus Session-2017-18 Subject:-Computer Science Subject Code:-083 COMPUTER SCIENCE (083)-Theory CLASS XII Unit wise Weightage of Marks Duration:3

More information

HOLIDAY HOME WORK COMPUTER NETWORK AND COMMUNICATION

HOLIDAY HOME WORK COMPUTER NETWORK AND COMMUNICATION HOLIDAY HOME WORK COMPUTER NETWORK AND COMMUNICATION Ques. a) What was the role of ARPANET in the Computer Network? 2 b) Which of the following units measures the speed with which data can be transmitted

More information

Computer Science 2006 (Outside Delhi)

Computer Science 2006 (Outside Delhi) Computer Science 6 (Outside Delhi) General Instructions: Q... All questions are compulsory.. Programming Language: C++ a. Name the header file to which the following belong: () i. pow( ) ii. random( )

More information

KENDRIYA VIDYALAYA SANGATHAN

KENDRIYA VIDYALAYA SANGATHAN KENDRIYA VIDYALAYA SANGATHAN JAMMU REGION Winter Stations CLASS: XII SESSION: 2016-17 SPLIT-UP SYLLABUS Computer Science MONTH PORTION TO BE COVERED THEORY PRACTICAL April May-June 2016 UNIT-1 REVIEW:

More information

4. BOOLEAN ALGEBRA 8 5. NETWORKING AND OPEN SOURCE SOFTWARE 10

4. BOOLEAN ALGEBRA 8 5. NETWORKING AND OPEN SOURCE SOFTWARE 10 SPLIT UP SYLLABUS SUBJECT : COMPUTER SCIENCE (083) SESSION:2014-15 Class XII (Theory) - C++ Duration: 3 hours Total Marks: 70 Unit No. Unit Name MARKS 1 OBJECT ORIENTED PROGRAMMING IN C++. 2. DATA STRUCTURE

More information

KENDRIYA VIDYALAYA SANGATHAN

KENDRIYA VIDYALAYA SANGATHAN KENDRIYA VIDYALAYA SANGATHAN JAMMU REGION CLASS: XII SESSION: - 17 SPLIT-UP SYLLABUS COMPUTER SCIENCE MONTH PORTION TO BE COVERED THEORY PRACTICAL April-May UNIT-1 REVIEW: C++ covered In Class - XI, Object

More information

SPLIT-UP SYLLABUS ----CHENNAI REGION COMPUTER SCIENCE (Code: 083) Class-XII Academic Session

SPLIT-UP SYLLABUS ----CHENNAI REGION COMPUTER SCIENCE (Code: 083) Class-XII Academic Session SPLIT-UP SYLLABUS ----CHENNAI REGION COMPUTER SCIENCE (Code: 083) Class-XII Academic Session 2008-09 Sr.No. Duration Number of Working Days From To Topic to be Covered Nos. of Periods required CAL/TAL

More information

Area Covered is small Area covered is large. Data transfer rate is high Data transfer rate is low

Area Covered is small Area covered is large. Data transfer rate is high Data transfer rate is low Chapter 15 Networking Concepts 1. Define networking. It is the interconnection of independent computing devices for sharing of information over shared medium. 2. What is the need for networking? / What

More information

COMMUNICATION AND NETWORK CONCEPTS

COMMUNICATION AND NETWORK CONCEPTS COMMUNICATION AND NETWORK CONCEPTS 4 Marks Questions 1. XcelenciaEdu Services Ltd. is an educational organization. It is planning to set up its India campus at Hyderabad with its head office at Delhi.

More information

COMPUTER SCIENCE (THEORY) 2016-17 Class XII (Theory) Python Duration : 3 Hours Total Marks : 70 Unit No. Unit Name Marks 1. OBJECT ORIENTED PROGRAMMING WITH PYTHON 24 2. ADVANCE PROGRAMMING WITH PYTHON

More information

DELHI PUBLIC SCHOOL BOKARO STEEL CITY ASSIGNMENT FOR THE SESSION

DELHI PUBLIC SCHOOL BOKARO STEEL CITY ASSIGNMENT FOR THE SESSION DELHI PUBLIC SCHOOL BOKARO STEEL CITY ASSIGNMENT FOR THE SESSION 2017 2018 Class: XII Subject : Computer Science Assignment No. 3 1. a) What is this pointer? Explain with example. b) Name the header file

More information

BOOLEAN ALGEBRA. 1. State & Verify Laws by using :

BOOLEAN ALGEBRA. 1. State & Verify Laws by using : BOOLEAN ALGEBRA. State & Verify Laws by using :. State and algebraically verify Absorption Laws. (2) Absorption law states that (i) X + XY = X and (ii) X(X + Y) = X (i) X + XY = X LHS = X + XY = X( + Y)

More information

KENDRIYA VIDYALAYA SANGATHAN, KOLKATA REGION SPLIT-UP SYLLABUS ( ) CLASS XII : COMPUTER SCIENCE (THEORY)

KENDRIYA VIDYALAYA SANGATHAN, KOLKATA REGION SPLIT-UP SYLLABUS ( ) CLASS XII : COMPUTER SCIENCE (THEORY) KENDRIYA VIDYALAYA SANGATHAN, KOLKATA REGION SPLIT-UP SYLLABUS (2017-) CLASS XII : COMPUTER SCIENCE (THEORY) MONTH PORTION TO BE COVERED THEORY PRACTICAL APRIL- MAY Unit 1 Object Oriented Programming in

More information

Mock Test Paper-3. Computer Science. Duration : 3hrs Max Marks : 70

Mock Test Paper-3. Computer Science. Duration : 3hrs Max Marks : 70 Mock Test Paper-3 Computer Science Mock Test Paper-3 11 Duration : 3hrs Max Marks : 70 1. (a) How does a class inforce data hiding? 2 (b) Name the header files to which the following belong- 1 (c) Rewrite

More information

UNIT-4 BOOLEAN LOGIC. NOT Operator Operates on single variable. It gives the complement value of variable.

UNIT-4 BOOLEAN LOGIC. NOT Operator Operates on single variable. It gives the complement value of variable. UNIT-4 BOOLEAN LOGIC Boolean algebra is an algebra that deals with Boolean values((true and FALSE). Everyday we have to make logic decisions: Should I carry the book or not?, Should I watch TV or not?

More information

UNIT I (NETWORKING AND OPEN STANDARDS) (From this unit: 7 Questions - 10 Marks)

UNIT I (NETWORKING AND OPEN STANDARDS) (From this unit: 7 Questions - 10 Marks) UNIT I (NETWORKING AND OPEN STANDARDS) (From this unit: 7 Questions - 10 Marks) One Mark Questions 1. What is the purpose of Modem in network? 2. Write one example of IP Address. 3. Define Domain Name

More information

2 SEMESTER EXAM CLASS : 12 DECEMBER 2016 TIME : 3 Hrs MAX MARKS : 70

2 SEMESTER EXAM CLASS : 12 DECEMBER 2016 TIME : 3 Hrs MAX MARKS : 70 SEMESTER EXAM CLASS : DECEMBER 06 TIME : Hrs MAX MARKS : 70. a) A D array MAT[40][0] is stored in memory as row wise. If the address of MAT[4][8] is 9 and width (W) is bytes find the address of MAT[0][9].

More information

Sample Paper 2015 Class XII Subject COMPUTER SCIENCE. Some Important Questions Networking

Sample Paper 2015 Class XII Subject COMPUTER SCIENCE. Some Important Questions Networking Sample Paper 2015 Class XII Subject COMPUTER SCIENCE Some Important Questions Networking 1. What is circuit switching? What is packet switching? Message switching? (Hint Point Wise) Circuit Switching:

More information

Model Sample Paper 2015

Model Sample Paper 2015 Time: 3 Hours MM: 70 Model Sample Paper 2015 Class XII Computer Science (083) Instructions: (i) (ii) All questions are compulsory. Programming Language C++. 1. (a) What is the difference between Actual

More information

KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION. REVISION Examination 2013 COMPUTER SCIENCE (083) CLASS XII

KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION. REVISION Examination 2013 COMPUTER SCIENCE (083) CLASS XII KENDRIYA VIDYALAYA SANGATHAN, CHENNAI REGION REVISION Examination 01 COMPUTER SCIENCE (08) CLASS XII Time Allowed: Hours Maximum Marks: 70 Instructions: (i) All questions are compulsory. (ii) Programming

More information

ASHOK GARG MOBILE :

ASHOK GARG MOBILE : An interconnected collection of autonomous computers is called Computer Network. It means two computers are said to be interconnected if they are capable of exchanging the information. Need for Networking

More information

COMPUTER TECHNIQUE. ( Vocational Stream ) Paper : V. ( Computer Network ) ( Theory )

COMPUTER TECHNIQUE. ( Vocational Stream ) Paper : V. ( Computer Network ) ( Theory ) Total No. of Printed Pages 12 HS/XII/V/CT/Paper V/14 2 0 1 4 COMPUTER TECHNIQUE ( Vocational Stream ) Paper : V ( Computer Network ) ( Theory ) Full Marks : 100 Time : 3 hours The figures in the margin

More information

X Y Z F=X+Y+Z

X Y Z F=X+Y+Z This circuit is used to obtain the compliment of a value. If X = 0, then X = 1. The truth table for NOT gate is : X X 0 1 1 0 2. OR gate : The OR gate has two or more input signals but only one output

More information

KENDRIYA VIDYALAYA SANGATHAN BHUBANESWAR REGION SPLITUP SYLLABUS FOR COMPUTER SCIENCE CLASS XII

KENDRIYA VIDYALAYA SANGATHAN BHUBANESWAR REGION SPLITUP SYLLABUS FOR COMPUTER SCIENCE CLASS XII KENDRIYA VIDYALAYA SANGATHAN BHUBANESWAR REGION SPLITUP SYLLABUS FOR COMPUTER SCIENCE 2015-16 CLASS XII MONTH PORTION TO BE COVERED THEORY PRACTICAL April-May 2015 June-July 2015 Aug-2015 REVIEW: C++ covered

More information

CLASS XII ( ) (Theory)

CLASS XII ( ) (Theory) CLASS XII (2014-15) (Theory) Duration: 3 Hours Total Marks: 70 Unit No. Unit Name PERIODS MARKS (Theory + Practical) Th Pr Tot 1. Programming with Python 50 40 90 41 2. Object Oriented Programming with

More information

UNIT 5 : COMMUNICATION AND NETWORK CONCEPTS Network The collection of interconnected computers is called a computer network. Two computers are said to be interconnected if they are capable of sharing and

More information

Navpreet Singh INTRODUCTION TO COMPUTER NETWORKS. Computer Centre Indian Institute of Technology Kanpur Kanpur INDIA

Navpreet Singh INTRODUCTION TO COMPUTER NETWORKS. Computer Centre Indian Institute of Technology Kanpur Kanpur INDIA INTRODUCTION TO COMPUTER NETWORKS Navpreet Singh Computer Centre Indian Institute of Technology Kanpur Kanpur INDIA (Ph : 2597371, Email : navi@iitk.ac.in) About Myself About Myself I am Network Manager

More information

CLASS XII INFORMATICS PRACTICES ACADEMIC SESSION FORTNIGHTLY BREAKUP OF SYLLABUS. Main Topic Sub Topics Pds Total Pds

CLASS XII INFORMATICS PRACTICES ACADEMIC SESSION FORTNIGHTLY BREAKUP OF SYLLABUS. Main Topic Sub Topics Pds Total Pds S. No Fortnight 1 19 th March 28 March (Block Teaching) Total no of days CLASS XII INFORMATICS PRACTICES ACADEMIC SESSION 2018-2019 FORTNIGHTLY BREAKUP OF SYLLABUS Main Topic Sub Topics Pds Total Pds 8

More information

COMMUNICATION. Exchange of ideas, messages, or information between two communicating parties. SIMPLEX HALF DUPLEX FULL DUPLEX

COMMUNICATION. Exchange of ideas, messages, or information between two communicating parties. SIMPLEX HALF DUPLEX FULL DUPLEX COMMUNICATION Exchange of ideas, messages, or information between two communicating parties. SIMPLEX HALF DUPLEX FULL DUPLEX SIMPLEX In simplex transmission, communication can take place in only one direction.

More information

Introduction to Computer Networks INTRODUCTION TO COMPUTER NETWORKS

Introduction to Computer Networks INTRODUCTION TO COMPUTER NETWORKS INTRODUCTION TO COMPUTER NETWORKS Computer Networks Computer network connects two or more autonomous computers. The computers can be geographically located anywhere. LAN, MAN & WAN Network in small geographical

More information

KENDRIYA VIDYALAYA SANGATHAN DEHRADUN REGION 1 st Pre-Board Examination, Class XII Computer Science(083) Time: 3 Hours Max.

KENDRIYA VIDYALAYA SANGATHAN DEHRADUN REGION 1 st Pre-Board Examination, Class XII Computer Science(083) Time: 3 Hours Max. KENDRIYA VIDYALAYA SANGATHAN DEHRADUN REGION st Pre-Board Examination, 05-6 Class XII Computer Science(08) Time: Hours Max. Marks: 70 (Marking Scheme) Q.No Answer Marks ) a. Post increment operator is

More information

Computer Science, Class XII ( ) Chapter No.14 (Networking Concepts)

Computer Science, Class XII ( ) Chapter No.14 (Networking Concepts) Chapter No.14 (Networking Concepts) Network The collection of interconnected computers is called a computer network. Two computers are said to be interconnected if they are capable of sharing and exchanging

More information

Brief Summary of the Chapter: CHAPTER 1 NETWORKING AND OPEN STANDARDS In this chapter we are going to study about computer Networks, associated terminology and related concept along with network devices.

More information

Networking interview questions

Networking interview questions Networking interview questions What is LAN? LAN is a computer network that spans a relatively small area. Most LANs are confined to a single building or group of buildings. However, one LAN can be connected

More information

KENDRIYA VIDYALAYA SANGATHAN BHUBANESWAR REGION SECOND PREBOARD EXAMINATION FOR CLASS XII SUBJECT: COMPUTER SCIENCE

KENDRIYA VIDYALAYA SANGATHAN BHUBANESWAR REGION SECOND PREBOARD EXAMINATION FOR CLASS XII SUBJECT: COMPUTER SCIENCE KENDRIYA VIDYALAYA SANGATHAN BHUBANESWAR REGION SECOND PREBOARD EXAMINATION 2014-15 FOR CLASS XII SUBJECT: COMPUTER SCIENCE SET-I F.M. 70 General Instructions: Programming Language C++ All Questions are

More information

SAMPLE PAPER. Class: XII SUBJECT COMPUTER SCIENCE. Time: 3 Hours MM: 70

SAMPLE PAPER. Class: XII SUBJECT COMPUTER SCIENCE. Time: 3 Hours MM: 70 SAMPLE PAPER Class - XII SUBJECT COMPUTER SCIENCE Subject: Computer Sc. Class: XII Time: 3 Hours MM: 70 1. (a) Differentiate between a global variable and a local variable. (b) Name the Header file(s)

More information

COMPUTER NETWORKING. Terminology of Network:

COMPUTER NETWORKING. Terminology of Network: COMPUTER NETWORKING Network: A computer network is a collection of interconnected computers. Two computers are said to be interconnected if they are capable of sharing hardware, software and exchanging

More information

Unit-IV Boolean Algebra

Unit-IV Boolean Algebra Unit-IV Boolean Algebra Boolean Algebra Chapter: 08 Truth table: Truth table is a table, which represents all the possible values of logical variables/statements along with all the possible results of

More information

ii) Do the following conversions: output is. (a) (101.10) 10 = (?) 2 i) Define X-NOR gate. (b) (10101) 2 = (?) Gray (2) /030832/31034

ii) Do the following conversions: output is. (a) (101.10) 10 = (?) 2 i) Define X-NOR gate. (b) (10101) 2 = (?) Gray (2) /030832/31034 No. of Printed Pages : 4 Roll No.... rd 3 Sem. / ECE Subject : Digital Electronics - I SECTION-A Note: Very Short Answer type questions. Attempt any 15 parts. (15x2=30) Q.1 a) Define analog signal. b)

More information

ก ก Information Technology II

ก ก Information Technology II ก ก 202103 Information Technology II ก ก ก ก ก (LAN), ก LAN, ก ก (LAN) ก ก ก LAN ก LAN ก LAN Topology Bus LAN Star LAN Ring LAN Wireless LAN Wireless LAN Wireless ก (LAN) ก ก ก LAN ก LAN WAN ก Random Access

More information

Chapter 15 Networks. Chapter Goals. Networking. Chapter Goals. Networking. Networking. Computer network. Node (host) Any device on a network

Chapter 15 Networks. Chapter Goals. Networking. Chapter Goals. Networking. Networking. Computer network. Node (host) Any device on a network Chapter Goals Chapter 15 Networks Describe the core issues related to computer networks List various types of networks and their characteristics Explain various topologies of local-area networks Explain

More information

Chapter 9 Introduction to Networks

Chapter 9 Introduction to Networks Chapter 9 Introduction to Networks 9.1 Uses of a network Networks are used in many situations. We can see networks in places like offices, airports and factories. In fact we use networks in many situations

More information

Strictly Based on the Latest Syllabus issued by CBSE Board for 2015 Examination QUESTION BANK. Chapter-Wise Solutions.

Strictly Based on the Latest Syllabus issued by CBSE Board for 2015 Examination QUESTION BANK. Chapter-Wise Solutions. Strictly Based on the Latest Syllabus issued by CBSE Board for 2015 Examination QUESTION BANK Chapter-Wise Solutions Computer Science Published by : OSWAAL BOOKS Oswaal House 1/11, Sahitya Kunj, M.G. Road,

More information

Networks. Computer Technology

Networks. Computer Technology Networks Computer Technology Network Two or more computers and other devices (printers or scanners) that are connected, for the purpose of sharing data and programs Advantages of Networks Communication

More information

Router Router Microprocessor controlled traffic direction home router DSL modem Computer Enterprise routers Core routers

Router Router Microprocessor controlled traffic direction home router DSL modem Computer Enterprise routers Core routers Router Router is a Microprocessor controlled device that forwards data packets across the computer network. It is used to connect two or more data lines from different net works. The function of the router

More information

SYLLABUS. Departmental Syllabus

SYLLABUS. Departmental Syllabus SYLLABUS DATE OF LAST REVIEW: 02/2013 CIP CODE: 11.0801 SEMESTER: COURSE TITLE: Networking I COURSE NUMBER: CIST- 0117 CREDIT HOURS: 3 INSTRUCTOR: OFFICE LOCATION: OFFICE HOURS: TELEPHONE: EMAIL: PREREQUISITE(S):

More information

INFORMATICS PRACTICES

INFORMATICS PRACTICES Series OSR/C Code No. 90 Roll No. Candidates must write the Code on the title page of the answer-book. Please check that this question paper contains 8 printed pages. Code number given on the right hand

More information

COMPUTER SCIENCE (THEORY) Class XII (Theory) - Python

COMPUTER SCIENCE (THEORY) Class XII (Theory) - Python StudyCBSENotes.com 1 COMPUTER SCIENCE (THEORY) Class XII (Theory) - Python Duration: 3 Hours Total Marks: 70 Unit No. Unit Name Marks 1 Object Oriented Programming with Python 24 2 Advances Programming

More information

Experiment 3: Logic Simplification

Experiment 3: Logic Simplification Module: Logic Design Name:... University no:.. Group no:. Lab Partner Name: Mr. Mohamed El-Saied Experiment : Logic Simplification Objective: How to implement and verify the operation of the logical functions

More information

KENDRIYA VDYALAYA SANGATHAN ERNAKULAM REGION MODEL PAPER - SET-I SUB: INFORMATICS PRACTICES CLASS: XII Time: 3 Hrs Max.Mark: 70

KENDRIYA VDYALAYA SANGATHAN ERNAKULAM REGION MODEL PAPER - SET-I SUB: INFORMATICS PRACTICES CLASS: XII Time: 3 Hrs Max.Mark: 70 KENDRIYA VDYALAYA SANGATHAN ERNAKULAM REGION MODEL PAPER - SET-I SUB: INFORMATICS PRACTICES CLASS: XII Time: 3 Hrs Max.Mark: 70 1. a) Mr. Ramesh is working in an Global Organisation. He wants to login

More information

UNIT 1: OBJECT ORIENTED PROGRAMMING IN C++

UNIT 1: OBJECT ORIENTED PROGRAMMING IN C++ Class XII (Theory) Duration: 3 hours Total Marks: 70 Unit No. Unit Name Periods Marks Th P Tot Th P Total 1. OBJECT ORIENTED PROGRAMMING 50 35 85 30 16 46 IN C++ 2. DATA STRUCTURE 30 20 50 14 10 24 3.

More information

Chapter 2 Boolean algebra and Logic Gates

Chapter 2 Boolean algebra and Logic Gates Chapter 2 Boolean algebra and Logic Gates 2. Introduction In working with logic relations in digital form, we need a set of rules for symbolic manipulation which will enable us to simplify complex expressions

More information

Computer Networks. Computer Networks. Telecommunication Links. CMPUT101 Introduction to Computing - Spring Chapter 12: Computer Networks 1

Computer Networks. Computer Networks. Telecommunication Links. CMPUT101 Introduction to Computing - Spring Chapter 12: Computer Networks 1 Computer Networks Chapter 12 Topics: Communication links LAN / WAN Internet / WWW CMPUT101 Introduction to Computing (c) Yngvi Bjornsson 1 Computer Networks A computer network is a set of independent computer

More information

networks List various types of networks and their

networks List various types of networks and their Chapter 15 Networks Chapter Goals Describe the core issues related to computer networks List various types of networks and their characteristics Explain various topologies of local-area networks Explain

More information

and Networks Data Communications Second Edition Tata McGraw Hill Education Private Limited Managing Director SoftExcel Services Limited, Mumbai

and Networks Data Communications Second Edition Tata McGraw Hill Education Private Limited Managing Director SoftExcel Services Limited, Mumbai Data Communications and Networks Second Edition ACHYUT S GODBOLE Managing Director SoftExcel Services Limited, Mumbai ATUL KAHATE Senior Consultant Oracle Financial Services Software Limited, Pune Tata

More information

SUB: INFORMATICS PRACTICES CLASS: XII ANSWER KEY SET-2. Time: 3 Hrs Max.Mark: 70 1.

SUB: INFORMATICS PRACTICES CLASS: XII ANSWER KEY SET-2. Time: 3 Hrs Max.Mark: 70 1. SAMPLE PAPER 2014-15 SUB: INFORMATICS PRACTICES CLASS: XII ANSWER KEY SET-2 Time: 3 Hrs Max.Mark: 70 1. [A] TELNET [B] Router [C] (1) BUS topology (2) Ring / Circular topology [D] Devanagiri,Tamil,Malayalam,Gujatrati,telugu,assamese

More information

Binary logic. Dr.Abu-Arqoub

Binary logic. Dr.Abu-Arqoub Binary logic Binary logic deals with variables like (a, b, c,, x, y) that take on two discrete values (, ) and with operations that assume logic meaning ( AND, OR, NOT) Truth table is a table of all possible

More information

Chapter 4: Networking and the Internet. Network Classifications. Network topologies. Network topologies (continued) Connecting Networks.

Chapter 4: Networking and the Internet. Network Classifications. Network topologies. Network topologies (continued) Connecting Networks. Chapter 4: Networking and the 4.1 Network Fundamentals 4.2 The 4.3 The World Wide Web 4.4 Protocols 4.5 Security Network Classifications Scope Local area network (LAN) Metropolitan area (MAN) Wide area

More information

SRM ARTS AND SCIENCE COLLEGE SRM NAGAR, KATTANKULATHUR

SRM ARTS AND SCIENCE COLLEGE SRM NAGAR, KATTANKULATHUR SRM ARTS AND SCIENCE COLLEGE SRM NAGAR, KATTANKULATHUR 603203 DEPARTMENT OF COMPUTER SCIENCE & APPLICATIONS QUESTION BANK (2017-2018) Course / Branch : BCA Semester /Year : EVEN / III Subject Name : Data

More information

Introduction to Information Technology Turban, Rainer and Potter John Wiley & Sons, Inc. Copyright 2005

Introduction to Information Technology Turban, Rainer and Potter John Wiley & Sons, Inc. Copyright 2005 Introduction to Information Technology Turban, Rainer and Potter John Wiley & Sons, Inc. Copyright 2005 Network and Telecommunications Basics Chapter Outline The telecommunications system Network services

More information

INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION INFORMATICS PRACTICES WORKSHEET 15 TH CHAPTER DATABASE TRANSACTION IMPORTANT QUESTION

INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION INFORMATICS PRACTICES WORKSHEET 15 TH CHAPTER DATABASE TRANSACTION IMPORTANT QUESTION INTERNATIONAL INDIAN SCHOOL, RIYADH XI XII BOYS SECTION INFORMATICS PRACTICES WORKSHEET 15 TH CHAPTER DATABASE TRANSACTION Grade- XII IMPORTANT QUESTION 1. What is the benefit of Transaction? 2. What are

More information

Computer Networks. Cables Radio signals (wireless/wifi) Telephone lines Satellite links (Long distance)

Computer Networks. Cables Radio signals (wireless/wifi) Telephone lines Satellite links (Long distance) COMPUTER NETWORKS Computer Networks A network is two or more computers connected together to allow them to share information and resources. Network connections are created by Cables Radio signals (wireless/wifi)

More information

COMMUNICATION AND NETWORK CONCEPTS TYPE A: VERY SHORT ANSWER QUESTION

COMMUNICATION AND NETWORK CONCEPTS TYPE A: VERY SHORT ANSWER QUESTION COMMUNICATION AND NETWORK CONCEPTS TYPE A: VERY SHORT ANSWER QUESTION 1. 2. 3. 4. 5. 6. 7. 8. 9. 10. Define a network. What is its need? A network is an interconnected collection of autonomous computer

More information

Typical Network Uses

Typical Network Uses Computer Networks Introduction The next Great Revolution - Computer Networks- computers connected together for exchanging information Our information-oriented society - applications in education, commerce,

More information

Objectives. Learn how computers are connected. Become familiar with different types of transmission media

Objectives. Learn how computers are connected. Become familiar with different types of transmission media Objectives Learn how computers are connected Become familiar with different types of transmission media Learn the differences between guided and unguided media Learn how protocols enable networking 2 Objectives

More information

M2-R4: INTERNET TECHNOLOGY AND WEB DESIGN

M2-R4: INTERNET TECHNOLOGY AND WEB DESIGN M2-R4: INTERNET TECHNOLOGY AND WEB DESIGN 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

More information

Syllabus for Computer Science General Part I

Syllabus for Computer Science General Part I Distribution of Questions: Part I Q1. (Compulsory: 20 marks). Any ten questions to be answered out of fifteen questions, each carrying two marks (Group A 3 questions, Group B, Group C and Group D 4 questions

More information

QUESTION BANK FOR TEST

QUESTION BANK FOR TEST CSCI 2121 Computer Organization and Assembly Language PRACTICE QUESTION BANK FOR TEST 1 Note: This represents a sample set. Please study all the topics from the lecture notes. Question 1. Multiple Choice

More information

THE INDIAN COMMUNITY SCHOOL, KUWAIT

THE INDIAN COMMUNITY SCHOOL, KUWAIT THE INDIAN COMMUNITY SCHOOL, KUWAIT SERIES : I SE / 2016-2017 CODE : N 065 MAX. MARKS : 70 TIME ALLOWED : 3 HOURS NO. OF PAGES : 6 INFORMATICS PRACTICES ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

More information

GREENFIELDS PUBLIC SCHOOL HOLIDAY HOMEWORK- COMPUTER SCIENCE SESSION CLASS - XII STRUCTURED QUERY LANGUAGE

GREENFIELDS PUBLIC SCHOOL HOLIDAY HOMEWORK- COMPUTER SCIENCE SESSION CLASS - XII STRUCTURED QUERY LANGUAGE GREENFIELDS PUBLIC SCHOOL HOLIDAY HOMEWORK- COMPUTER SCIENCE SESSION 2017-18 CLASS - XII STRUCTURED QUERY LANGUAGE 1. Write SQL Command for (a) to (d) and output of (g) TABLE : GRADUATE SNO NAME STIPEND

More information

Computer Networks. Week 04 Media and Devices. College of Information Science and Engineering Ritsumeikan University

Computer Networks. Week 04 Media and Devices. College of Information Science and Engineering Ritsumeikan University Computer Networks Week 04 Media and Devices College of Information Science and Engineering Ritsumeikan University Network Media and Devices l When you build a network, the network hardware may be used

More information

void Add() { cin >> trainnumber; gets(trainname); } void display() { cout<<trainnumber <<":"<<TrainName<<end;

void Add() { cin >> trainnumber; gets(trainname); } void display() { cout<<trainnumber <<:<<TrainName<<end; . T SHREE MAHAPRABHU PUBLIC SCHOOL & COLLEGE QUESTION BANK FOR BOARD EXAMINATION 016-17 SUBJECT COMPUTER SCIENCE (Code: 083) Q1. Answer the following questions: a) Name the header file(s) that shall be

More information

(c)rewrite the following program after removing the syntactical error(s),if any.under line each correction. [2] def main1(emp): print emp[name]

(c)rewrite the following program after removing the syntactical error(s),if any.under line each correction. [2] def main1(emp): print emp[name] Sample paper 3 Name: Class: XII M.M:7 Max. Time: 3 hr Sub:Computer Science (83) No. of pages: 8 Instructions:. Attempt all the questions neatly. 2. Marks are indicated against each question. Q-. [] (a)

More information

Prepared by Agha Mohammad Haidari Network Manager ICT Directorate Ministry of Communication & IT

Prepared by Agha Mohammad Haidari Network Manager ICT Directorate Ministry of Communication & IT Network Basics Prepared by Agha Mohammad Haidari Network Manager ICT Directorate Ministry of Communication & IT E-mail :Agha.m@mcit.gov.af Cell:0700148122 After this lesson,you will be able to : Define

More information

Data Communication. Introduction of Communication. Data Communication. Elements of Data Communication (Communication Model)

Data Communication. Introduction of Communication. Data Communication. Elements of Data Communication (Communication Model) Data Communication Introduction of Communication The need to communicate is part of man s inherent being. Since the beginning of time the human race has communicated using different techniques and methods.

More information

LANs do not normally operate in isolation. They are connected to one another or to the Internet. To connect LANs, connecting devices are needed.

LANs do not normally operate in isolation. They are connected to one another or to the Internet. To connect LANs, connecting devices are needed. LAN interconnecting devices INTRODUCTION LANs do not normally operate in isolation. They are connected to one another or to the Internet. To connect LANs, connecting devices are needed. Connecting devices

More information

Discovering Computers Chapter 9 Communications and Networks

Discovering Computers Chapter 9 Communications and Networks Discovering Computers 2009 Chapter 9 Communications and Networks Chapter 9 Objectives Discuss the components required for successful communications Identify various sending and receiving devices Describe

More information

Series SHC COMPUTER SCIENCE. Code No. 91. Roll No.

Series SHC COMPUTER SCIENCE. Code No. 91. Roll No. Roll No. Series SHC Code No. Please check that this question paper contains 11 printed pages. Code number given on the right hand side of the question paper should be written on the title page of the answer-book

More information

Review: Networking Fall Final

Review: Networking Fall Final Review: Networking Fall Final Question 1 of 43 You have implemented a network where each device provides shared files with all other devices on the network. What type of network do you have? Peer to peer

More information

Lecture #25: Networks and Communications. Communication and Networks. What will we learn?

Lecture #25: Networks and Communications. Communication and Networks. What will we learn? Lecture #25: Networks and Communications Communication and Networks What will we learn? How a communications system works What a network is What networks used for What network operating systems do What

More information

Computer Networks and Internet

Computer Networks and Internet Computer Networks and Internet Objectives Computer Networks Internet 2 Computer Networks Introducing Computer Networks A computer network consists of two or more computers linked together to exchange data

More information

Summer Holiday Home Work Informatics Practices Class 12 th

Summer Holiday Home Work Informatics Practices Class 12 th Summer Holiday Home Work Informatics Practices Class 12 th COMUTER NETWORKING Very Short Answer Questions 1. Define a network. 2. Write two advantages of networks. 3. Write two disadvantages of networks.

More information

Internet. Class-In charge: S.Sasirekha

Internet. Class-In charge: S.Sasirekha Internet Class-In charge: S.Sasirekha COMPUTER NETWORK A computer network is a collection of two or more computers, which are connected together to share information and resources. Network Operating Systems

More information

Informatics Practices, Class XII ( ) (Summer Vacation-2015) (Holiday H.W) Java Concepts & Programming, MySQL

Informatics Practices, Class XII ( ) (Summer Vacation-2015) (Holiday H.W) Java Concepts & Programming, MySQL (Summer Vacation-2015) (Holiday H.W) Java Concepts & Programming, MySQL 1. How is ordinary compilation process different from Java compilation? 2. Differentiate between a component and a container. 3.

More information

INTRODUCTION TO ICT.

INTRODUCTION TO ICT. INTRODUCTION TO ICT. (Introducing Basic Network Concepts) Lecture # 24-25 By: M.Nadeem Akhtar. Department of CS & IT. URL: https://sites.google.com/site/nadeemcsuoliict/home/lectures 1 INTRODUCTION TO

More information

Contents. Introduction to Networking. Preface...i. Introduction... xix

Contents. Introduction to Networking. Preface...i. Introduction... xix Contents Introduction to Networking Introduction to Networking Preface...i Key Topics...i Course Objectives...ii Pedagogical Features...ii Learning Objectives, Unit Summaries, Discussion Questions, and

More information

Computer Science[083]

Computer Science[083] Computer Science[083] All questions compulsory Programming language C++ Maximum Marks 100 Time Allotted 3 Hours Question I [a] Differentiate between call by value & call by reference with suitable examples

More information

Downloaded from

Downloaded from D.A.V. PUBLIC SCHOOL, NEW PANVEL Plot No. 267, 268, Sector-10, New Panvel, Navi Mumbai-410206 (Maharashtra). Phone 022-27468211, 27482276, Telefax- 27451793 Email- davschoolnp@vsnl.net, www.davpanvel.net

More information

Networking. Networking and Communication Trends Convergence (Accessibility) Speed Stability Simplicity* Embeddedness

Networking. Networking and Communication Trends Convergence (Accessibility) Speed Stability Simplicity* Embeddedness Networking and Communication Trends Convergence (Accessibility) Speed Stability Simplicity* Embeddedness What is a Computer Network General definition Related hardware Network Interface Card Network Operating

More information

Identify the features of network and client operating systems (Windows, NetWare, Linux, Mac OS)

Identify the features of network and client operating systems (Windows, NetWare, Linux, Mac OS) Course Outline Network+ Duration: 5 days (30 hours) Learning Objectives: Install and configure a network card Define the concepts of network layers Understand and implement the TCP/IP protocol Install

More information

1. a) Find the correct identifiers out of the following, which can be 2 used for naming Variable, Constants or Functions in a C++ program:

1. a) Find the correct identifiers out of the following, which can be 2 used for naming Variable, Constants or Functions in a C++ program: SECOND PREBOARD EXAMINATION (2017 18) CLASS: XII Subject: COMPUTER SCIENCE Date: 24.1.2018 Time Allowed: 3 Hours Maximum Marks: 70 General instructions: (1) All questions are compulsory. (2) Marks are

More information

CHEME OF EXAMINATION FOR B.Sc. (COMPUTER SCIENCE) SEMESTER SYSTEM (Regular Course) w.e.f Scheme for B.Sc.-III.

CHEME OF EXAMINATION FOR B.Sc. (COMPUTER SCIENCE) SEMESTER SYSTEM (Regular Course) w.e.f Scheme for B.Sc.-III. CHEME OF EXAMINATION FOR B.Sc. (COMPUTER SCIENCE) SEMESTER SYSTEM (Regular Course) w.e.f. 2015-16 Scheme for B.Sc.-III Semester-V Sr. No. Paper Internal Assessment External Marks Exam Duration 1 Paper-I

More information

Data Communications. Course Design Data Communications. Pre/Post Test (80 Questions/80 Points) Upon Request None No No No

Data Communications. Course Design Data Communications. Pre/Post Test (80 Questions/80 Points) Upon Request None No No No Data Communications Course Design 2005-2006 Course Information Organization Division EASTERN ARIZONA COLLEGE Business Course Number CMP 205 Title Credits 3 Developed by Lecture/Lab Ratio Transfer Status

More information

VISUAL SUMMARY COMMUNICATION CHANNELS COMMUNICATIONS. Communications and Networks

VISUAL SUMMARY COMMUNICATION CHANNELS COMMUNICATIONS. Communications and Networks Rev.Confirming Pages VISUAL SUMMARY Communications and Networks COMMUNICATIONS COMMUNICATION CHANNELS Communications is the process of sharing data, programs, and information between two or more computers.

More information

We are going to see a basic definition of the devices you can find in a corporate wired network, so you can understand basic IT engineering jargon.

We are going to see a basic definition of the devices you can find in a corporate wired network, so you can understand basic IT engineering jargon. Computer network devices, also known as communication devices, are the backbone of a data communication network. In this category we can find routers, switches, hubs, LAN cards, gateways, modems, hardware

More information

Communications and Networks

Communications and Networks Information Technology Skills (DUT 122) CHAPTER 6: Communications and Networks Miss Wan Nor Ashiqin Wan Ali School of Human Development and Technocommunication Objectives Overview Discuss the purpose of

More information

Definitions. 03 Logic networks Boolean algebra. Boolean set: B 0,

Definitions. 03 Logic networks Boolean algebra. Boolean set: B 0, 3. Boolean algebra 3 Logic networks 3. Boolean algebra Definitions Boolean functions Properties Canonical forms Synthesis and minimization alessandro bogliolo isti information science and technology institute

More information

MULTIMEDIA AND WEB TECHNOLOGY

MULTIMEDIA AND WEB TECHNOLOGY Series OSR/C Code No. 89 Roll No. Candidates must write the Code on the title page of the answer-book. Please check that this question paper contains 10 printed pages. Code number given on the right hand

More information

Chapter Topics. The History of the Internet. Chapter 7: Computer Networks, the Internet, and the World Wide Web

Chapter Topics. The History of the Internet. Chapter 7: Computer Networks, the Internet, and the World Wide Web Chapter Topics Chapter 7: Computer Networks, the Internet, and the World Wide Web CS10051: Intro. to Computer Science Kent State University History of the Internet History of the World Wide Web Internet

More information