CS101- Introduction to Computing. Composed By Faheem Saqib. 5 Final term Papers of For more Help Rep At.

Size: px
Start display at page:

Download "CS101- Introduction to Computing. Composed By Faheem Saqib. 5 Final term Papers of For more Help Rep At."

Transcription

1 CS101- Introduction to Computing Composed By Faheem Saqib 5 Final term Papers of 2010 For more Help Rep At Faheem_saqib2003@yahoo.com Faheem.saqib2003@gmail.com Student Info MC OPKST 07 Aug 2010 FINALTERM EXAMINATION Spring 2010 CS101- Introduction to Computing (Session - 3) Ref No: Time: 90 min Marks: 58 StudentID: Center: ExamDate: Question No: 1 Analytical Engine is An electrical machine A digital machine An analog machine A special purpose machine Question No: 2 % of the users have left websites in frustration due to poor navigation

2 Question No: 3 breaks down the message to be sent over the internet into packets. FTP HTTP TCP IP Question No: 4 The first spread sheet was called as. Excel PowerPoint Word VisiCalc Question No: 5 Which is correct? onunload onunload onunload All of the above Question No: 6 Variables allow us to manipulate data through the. Actual Value Reference Length Name Question No: 7 We use to stop Break-Ins. Scanners

3 Intrusion detectors Utilities None of the given options Question No: 8 Which attribute of the IMG tag tells us about the source of the image. source path loc src Question No: 9 The developer report to in a development team. Team Lead Project Manager CEO IT Manager Question No: 10 The key responsibilities of the architect of the project is. Technology selection High-level design Makes certain that the implementation remains true to the design All of the given options Question No: 11 Using smart editors they can automatically color different parts of statements in different colors e.g. HTML tags in color. Green Grey Blue None of the given options Question No: 12 is responsible for all the essential operations like basic house keeping, task scheduling, etc. Also contains low-level HW interfaces Hardware Device Manager Kernel Device Driver Question No: 13 Randomized algorithms are often than deterministic algorithms for the same problem. Simpler and more slow

4 Simpler and more efficient Complex and more efficient Complex and more slow Question No: 14 Compound Statement after decision constructs in JavaScript is enclosed with ( ) [ ] { }; { } Question No: 15 The key property of the Array object in JavaScript is Value Length Name All of the given choices Question No: 16 Which protocol is used to send ? FTP SMTP TELNET All of the given choices Question No: 17 Following is highest level of heading tag in list given below. H3 H4 H5 H2 Question No: 18 Blue Pacific is a name of computer. Mini Desktop Micro Super Question No: 19 correctness is easier to check as compared with Syntactic, Semantic Semantically, Syntactically

5 Systematically, Semantically None of the given options Question No: 20 refers maintaining the correctness and consistency of data Security Integrity Reliability None of the given Question No: 21 Which of the following keyword is used to jump out of switch statement as soon as the match is found? Default Else Jump Break Question No: 22 How much parameters does POW () function have? Question No: 23 How many types the string methods have? Question No: 24 The output of document.write( "2" + Math.PI ) ; is None of them Question No: 25 POP, IMAP and SMTP are related to one of the following service/services? Electronic Mail

6 Instant Messaging Both a and b None of above Question No: 26 is designed for 2D-Animation. Flash Animation HTML image class Web Browser HTML 2D class Question No: 27 ( Marks: 2 ) Define the term 3D Rendering The process of converting information about 3-D objects into a bit-map that can be Displayed on a 2-D computer display Question No: 28 ( Marks: 2 ) What is an intelligent system? An intelligent system is a dynamic system that utilises computational intelligence (CI) to analyse interconnections between causes, drivers and effects, so as to model, predict and control their dynamic interactions in a holistic manner Question No: 29 ( Marks: 2 ) Define testing with respect to programming.. Question No: 30 ( Marks: 2 ) What is a compiler? Write its one benifit over interpreter. Compiler translates the program written in a HLL in one go. The translated code is then used by the up whenever the program needs to be run Interpreter translates the HLL program one statement at time. It reads a single statement, translates it into machine language and passes that machine language code to The up and then translates the next statement, and so on Question No: 31 ( Marks: 3 ) Who is a Computing Professional? Professionals involved in the development and/or maintenance of SW and/or computer HW Computer scientists, software engineers, computer engineers, and some of the telecom engineers are generally classified as computing professionals Question No: 32 ( Marks: 3 ) What are Trojan Horses? Unlike viruses, they are stand-alone programs

7 The look like what they are not They appear to be something interesting and harmless (e.g. a game) but when they are executed, destruction results Question No: 33 ( Marks: 3 ) What is ICMP? Question No: 34 ( Marks: 5 ) What is ARPANET and who developed it? Question No: 35 ( Marks: 5 ) Write down the advantages of Natural Language Processing. Question No: 36 ( Marks: 5 ) Draw hierarchy of the people in the small project? Student Info Student ID: Center: Exam Date: FINALTERM EXAMINATION Spring 2010 CS101- Introduction to Computing Ref No: Time: 90 min Marks: 58 Question No: 1 In a good presentation each slide should contain. Heading Phrases not sentences

8 Sentences not phrases Heading, sentences not phrases Question No: 2 Which one of the following is not an event handler's attribute? Function Identifier Equal sign String consisting of JavaScript statements Question No: 3 According to the heuristic, the number of defects remaining in a system after a given level of tests is proportional to. The number found on very first day. The number found during the development. The number found during the test. None of the given options. Question No: 4 Which one is the best option for designing a Medical Expert System?

9 Rule Based System Genetic Algorithm Fuzzy Logic Neural Network Question No: 5 A combination of word processing and graphic design is Corel Draw Desktop Publishing Paint WordPad Question No: 6 A microprocessor can be made more powerful by increasing its Clock frequency Word length Clock frequency and Word length None of above

10 Question No: 7 Security can also be improved through. Encryption Typing errors Transmission errors Hardware malfunctions Question No: 8 is a field that uniquely identifies each record stored in a table. Composite Key Primary key Foreign key None of the given options Question No: 9 There are types of errors

11 Question No: 10 is simply a fast port that lets you connect computer peripherals and consumer electronics to your computer without restart. Freeware Shareware Firewire Firmware Question No: 11 provides a simple, consistent way for applications to interact with the HW without having to know all the details of the HW Explorer.exe System Files Operating System Application Software Question No: 12 One can browse documents residing on a remote computer using protocol. HTTP SMTP FTP TELNET

12 Question No: 13 Which event handler executes the specified JavaScript code when a window/form element loses focus? onblur onload onunload onfocus Question No: 14 Which event handler executes the specified JavaScript code when a window/form element receives focus? onblur onload onunload onfocus Question No: 15 loop is a flow control statement that allows code to be executed repeatedly based on a given Boolean condition. For Do-While If-else While

13 Question No: 16 A B C D 4 ABC =c4=c4 Expression format in cell D4 is NOT correct. True False Question No: 17 for(var i=1; i<=2;i=i+1) { document.write( "Sorted Words:" + "<BR>" ) } Which of the following shall be the output of above code: Sorted Words: Sorted Words: Sorted Words: Sorted Words: Sorted Words: <BR> Sorted Words: <BR> Sorted Words: <BR> Sorted Words: <BR> Question No: 18

14 Data integrity, in Database management system is necessary because it: Refers to provide insecurity to the data Refers to provide security to the data Refers to maintaining the correctness of data Refers to maintaining the consistency of the data Question No: 19 Which of the following formula is used in spreadsheet for addition? C6+E6 =C6+E6 6+6=12 6+E6 Question No: 20 Which of the following keyword is used to jump out of switch statement as soon as the match is found? Default Else Jump

15 Break Question No: 21 How many types the string methods have? Question No: 22 Which Internet Service is comparatively Slow but Inexpensive and Fast. Instant Messaging Web None of the given Question No: 23 Semantic web is. The extension of web Designed for both human beings and computers The extension of web and Designed for both human beings and computers None of the given

16 Question No: 24 Coding is the responsibility of Software designer Software developer Project manager None of given Question No: 25 Run time error occurs when. The complier compiles the programs The compiler ends the execution of the program The compiler start running the program The compiler finds a semantic error Question No: 26 Heuristics are. Intelligent systems Always ends with the solution of the problem Both of the given None of the given

17 Question No: 27 ( Marks: 2 ) What are application softwares? List down the names of three application softwares. Definition: Application Software are that software then can interact directory with the user for performance of respective type of work. Following are the types of Application Softwares:- AutoCAD and Corel Draw Business Software Productivity SW Games Software Question No: 28 ( Marks: 2 ) Why Local variable is preferred over Global variable? In my point of view Global variable has some advantage with Local variables is preferred due to the following reasons:- When we declare any global variable in web page then in case of error and logic it s very difficult to see on which line this variable is used and what s his value if we have more than 2000 lines and all the functions in web page using that Global Variable so Global variables can make the logic of a Web page difficult to understand. As we know we can use Global variable everywhere so Global variables also make the reuse and maintenance of your code much more complex. Question No: 29 ( Marks: 2 ) In JavaScript, what is event handling? What are the two types of events? In java script we can capture events on do some operation on the basis of that particular event. For example we want to load some data on web page then with the help of event handling we can do this operation by using onload event. We can put Event handlers in the body of web page and also in attributes of HTML. From the attribute we can call any JavaScript function that will do his operation and come back. Now we can also interact with server side with the help of AJAX in JavaScript function.

18 In-Line Event Handling We can place event handlers in the BODY part and also in HTML attributes the event handlers attributes consist of 3 parts the event handler, equal sign and a string of JavaScript statement enclosed in quotes (single or double). And one more thing these should be put in one line without newline due to this sophisticated event handling is not possible with in-line event handling. Question No: 30 ( Marks: 2 ) What is Structured Vector Graphics? This is a plug-in that is required to view swf (flash) files in the web browser Question No: 31 ( Marks: 3 ) What kind of new jobs are created because of computing? And which old professions are being eliminated? Due to computing where people are getting benefits from automated systems on the other hand the people that are with KHATA system or Manual system and they don t know about computers are eliminated due to this reason and people take place of many people. We can see in the offices where before computer if there are four person required now only one person is required for example with the help of database we can store more than thousand of information and only one person is managing the whole data that is DBA. In the old system many people are writing the data in registers and then its also very difficult to find the specific record. Now we can see companies are hiring:- Data Entry Operators System Engineers Software Developer DBA etc. Question No: 32 ( Marks: 3 )

19 What are Logic- or Time-Bombs? It execute the payload when predetermined event occurs For example use type particular phrase and particular data is reached. Question No: 33 ( Marks: 3 ) What do you mean by FTP or File Transfer Protocol? This protocol is used to upload the files on remote computers. This is used to transfer files between computer on TCP/IP network e.g. internet and now a day s many software are available for uploading files using FTP like Mozila FTP, cute FTP etc. Question No: 34 ( Marks: 5 ) Why should we, as computing professionals, be interested in studying the social implications of our creations? If we see our life then we can judge computing technology is changing our life fast if we compare with other technology. We should highlight the mistakes and successes of the past. We should learn then and select future direction accordingly. Computers are keep becoming more and more powerful and gaining more autonomy. Powerful Global Corporation. The network Organization Question No: 35 ( Marks: 5 ) How DoS attack is a cyber crime? For what cyber crime can be used? DoS is the crime but of a new type. A new type for policing system is required to tackle such crimes. Cyber Crime can be used to Damage a home computer, Bring down the Business, Weaken the financial and defense system of country. Question No: 36 ( Marks: 5 )

20 What are the key characteristics of internet? Write the names of any five. Student Info Student ID: Center: Exam Date: FINALTERM EXAMINATION Spring 2010 CS101- Introduction to Computing Ref No: Time: 90 min Marks: 58 For Teacher's Use Only Q No Total Marks Q No Marks Q No Marks Q No Marks Q No Marks

21 Question No: 1 Analytical Engine is An electrical machine A digital machine An analog machine A special purpose machine Question No: 2 Website design should NOT be. Unified Complex Consistent Predictable Question No: 3 TCP stands for. Total communication protocol Transmission control protocol Transfer control protocol Transfer collection protocol

22 Question No: 4 A vocabulary and set of grammatical rules for instructing a computer to perform specific tasks is called Software Programming language Device driver Interpreter Question No: 5 A is a meaningful, easy-to-remember label for an IP address. TCP address Domain name Network name VoIP Question No: 6 In spreadsheets, cell address A12 means. Row A, Cloumn 12 Row 12, Cloumn A Row 2,Cloumn A1 Row A1, Cloumn 2

23 Question No: 7 According to the heuristic, the number of defects remaining in a system after a given level of tests is proportional to. The number found on very first day. The number found during the development. The number found during the test. None of the given options. Question No: 8 Which one is the best option for designing a Medical Expert System? Rule Based System Genetic Algorithm Fuzzy Logic Neural Network Question No: 9 Command that allows you to recover form mistakes is called. Clear Edit Undo

24 Break Question No: 10 The document.write( ) method expects as its argument. Integer Float String Boolean Question No: 11 We use to stop Break-Ins. Scanners Intrusion detectors Utilities None of the given options Question No: 12 The developer report to in a development team. Team Lead Project Manager CEO IT Manager

25 Question No: 13 The key responsibilities of a project manager is. Planning and tracking of the project Arranging of the appropriate resources Client relationship management All of the given options Question No: 14 The key responsibilities of the architect of the project is. Technology selection High-level design Makes certain that the implementation remains true to the design All of the given options Question No: 15 The important attribute of image tag is. src image None of the given options alt

26 Question No: 16 onabort, onerror are the of the image object. Event Handler Properties Methods None of the given options Question No: 17 Now a days, users communicate with the computer using a consistent provided by the Operating System. Command-line interface Application Interface User Interface Protocol Question No: 18 One can browse documents residing on a remote computer using protocol. HTTP SMTP FTP TELNET

27 Question No: 19 Which of the following device can be used to control network traffic? Cable Connector Hub Repeater Question No: 20 User can remotely log on to a computer and can have a control over it like a local user using TelNet Protocol TelNet Protocol and connected to the user through TCP/IP network TelNet protocol and FTP TCP/IP and FTP Question No: 21 If(studentMarks>70); ( document.write( "Grade A"); } Which of following is correct format of above code: ( If(studentMarks>70); document.write( "Grade A");

28 }; If(studentMarks<>70) ( document.write( "Grade A"); } If(studentMarks>70) { document.write( "Grade A"); } None of above options Question No: 22 Which of the following language is object based but not object oriented language. javascript visual basic C++ C# Question No: 23 asin(x) stands for Asynchronous sine Alpha Sine Automated Sine

29 ArcSine Question No: 24 The output of POW (3, 2) is Question No: 25 The Right most portion or the third portion of the URL contains. Protocol Identifier Server Name Directory Name None of the given Question No: 26 Which Image format is known as Lossless original format. JPEG GIF Bitmap

30 Vector Question No: 27 ( Marks: 2 ) What is a function? Give one example. Answer: Function is a reusable code (group of statement) that is executed when the function is called. It is also known as sub-program. Function is normally defined in the head section of the code. Question No: 28 ( Marks: 2 ) What is an intelligent system? Answer: Intelligent systems are the programs developed to perform complicated jobs that reflect human brain and thoughts. If the algorithms are too much complex or can not be solved instantly then we can use such systems. Therefore the well intelligent system not only performs well but it has the capability to rectify any errors by himself if it occurs within his domain. The examples of intelligent systems are Robotics, Business Intelligence etc. Question No: 29 ( Marks: 2 ) What is meant by semantic error? Answer: It is an error which a developer encounters when a statement is executed but it was not intended by him (the developer). Such errors are very difficult to locate during testing. Mostly these occur during abnormal circumstances. It may be referred as the logical error.

31 Question No: 30 ( Marks: 2 ) What is best algorithm? Answer: Greedy algorithm is the best algorithm as it is n algorithm that always takes the best immediate, or local solution while finding an answer. Question No: 31 ( Marks: 3 ) How can we include images in a web page using HTML and Java script? Answer: Images can be included in HTML by employing <IMG> tag, below is the format of <IMG> <IMG src=url, alt=text height=pixels width=pixels align="bottom middle top"> Question No: 32 ( Marks: 3 ) What are the Sub categories of Artificial Intelligence? Briefly explain any two. Answer: 1. Robotics These are the machines which are computer programmed and perform work which was previously done by humans. They can be found in the manufacturing industry, the military, space exploration and medical applications. 2. Expert Systems These systems are designed to replace an expert. The medical expert system is an example of such system which can replace a Doctor/medical expert. Question No: 33 ( Marks: 3 ) What are the steps of working of TCP and IP protocols in internet transmission?

32 Answer: TCP divide messages in to many packets (capsulation) and sent these messages over the internet and IP route these messages on the internet to the correct destination and upon reaching the messages on its destination the messages are encapsulated. Question No: 34 ( Marks: 5 ) What is ARPANET and who developed it? Answer: ARPANET stands for Advanced Research Projects. The initial purpose was to communicate with and share computer resources among mainly scientific users at the connected institutions. In the beginning it was connected four universities and enabled scientists to share resources. It was headed by Dr. J.C.R. Licklider. Question No: 35 ( Marks: 5 ) Define professional ethics and its benefits with an example? Question No: 36 ( Marks: 5 ) Write JavaScript code for the following: Make a function comparewithten(value) Compare the function argument with 10 and display a message whether the value is less than, equal to or greater than 10. Final TERM EXAMINATION Spring 2010 CS101- Introduction to Computing (Session - 2) Note: MCQs in Blue are the sure answers and Yellow highlighted are Quarantined Question No: 1 breaks down the message to be sent over the internet into packets.

33 FTP HTTP TCP (page.no.317) IP Question No: 2 A protocol used for receiving messages is called. URL Telnet POP3 (page.no.213) SMTP Question No: 3 Aliasing problem can be managed by the size of pixels. Reducing (page.no.236) Increasing Gaining Modifying Question No: 4 Variables allow us to manipulate data through the. Actual Value Reference (page.no.143) Length Name Question No: 5 The reserved word allows a determined action to be taken if the first condition is false. For While Else Switch Question No: 6 ERP is a type of. Entertainment software

34 Productivity software Business software Scientific software Question No: 7 What is/are the use/uses of Word processor? To write a letter To write Research paper or report To create address labels All of the given Question No: 8 Command that allows you to recover form mistakes is called. Clear Edit Undo Break Question No: 9 Automatic machines performing various tasks that were previously done by humans, are called. Robotics (page.no.244) Computers Decision Making Systems Autonomous Web Agents Question No: 10 The is connected to all other modules of the microprocessor. Control unit Memory unit Floating Point unit Arithmetic and Logic unit Question No: 11 Database consisting of two or more related tables, is called. Flat file database Object oriented database Tabular storage database

35 Relational database (page.no.263) Question No: 12 can be used for entering, editing, or viewing data, one record at a time. Queries Forms (page.no.263) Reports None of the given option Question No: 13 Distance learning has got a boost due to the. Easy communication Online interactive contents Flexibility All of the given options Question No: 14 DBMS supports data in terabytes. Personal Desktop Enterprise Single-user Question No: 15 After the DoS attack in year 2000, Yahoo servers were recovered in. 1 hour 2 hours 3 hours 4 hours Question No: 16 When web server is busy it gives the following message to the user : Time out Waiting Server busy None of the given options Question No: 17 To stop industrial espionage, we use. Private network Encryption

36 Network sniffer All of the given options (page.no.277) Question No: 18 based communication allows business entities to coordinate the activities of their globally spread units with greater accuracy. Intranet Internet Home LAN Question No: 19 onabort, onerror are the of the image object. Event Handler (page.no.286) Properties Methods None of the given options Question No: 20 Processed data is called. Information Data Entity Attribute Question No: 21 is a client program that uses HTTP to make requests to Web servers throughout the internet on behalf of the user. Web Application Web Browser (page.no.18) Internet Application

37 HTML Question No: 22 consists of cells arranged in rows & columns Spreadsheets Software Word processor Presentation Software Microsoft Paint Software Question No: 23 Flow control constructs in JavaScript includes: If-Else Loops and If -Else Switch and If-Else All of the given choices Question No: 24 Which is NOT true for JavaScript variable name? Student Roll_no_1111 For _schedule Question No: 25 In JavaScript, second element of an array has the index: JavaScript Array Basics 5 May In this tutorial you learn what a JavaScript array is,... The first element hasan index of 0, the second element has an index of 1, Cached - Similar - Question No: 26 Which protocol is used to control other computer from our own computer? FTP NNTP TELNET (page.no.211) None of the given choices Question No: 27 occurs when a function calls itself. Recursion

38 Call by value Call by reference Parsing Recursion - Wikipedia, the free encyclopedia The function calls itself recursively on a smaller version of the input (n - 1) and multiplies the result of the recursive call by n, until reaching the... en.wikipedia.org/wiki/recursion - Cached - Similar - Question No: 28 Which function returns a randomly selected floating point number between 0 and 1? floor(x) ceil(x) random() round(x) Question No: 29 Using Java Script you can write a character at random location on screen By applying randomch() method With the help of String object With the help of random character property There is no built in approach in Java Script Question No: 30 The most used form tag is the <input> tag. True False Question No: 31 ( Marks: 1 ) What are the elements of website design? Any one Question No: 32 ( Marks: 1 ) What kind of information can be stored in a database? Question No: 33 ( Marks: 2 ) What is meant by universal access of internet services? Question No: 34 ( Marks: 2 ) What is the database? Question No: 35 ( Marks: 3 ) The event handler attribute consists of three parts. Write about each of them.

39 Question No: 36 ( Marks: 3 ) What is difference between Design and System Architecture? Question No: 37 ( Marks: 3 ) What are Trojan Horses? Question No: 38 ( Marks: 5 ) Differentiate between For and While loop by writing the syntax of both loops. Question No: 39 ( Marks: 5 ) Suppose we have a big project. Draw hierarchy of the people involved in the project? Question No: 40 ( Marks: 10 ) Write down output for the following JavaScript code. a) <script type="text/javascript"> document.write(math.sqrt(25)); // output? </script> b) <script type="text/javascript"> document.write(math.pow(5, 3)); // output? </script> c) <script type="text/javascript"> document.write(math.min(5, 3)); // output? </script> d) <script type="text/javascript"> document.write(math.max(5, 3)); // output? </script> e) <script type="text/javascript"> document.write(math.floor(9.87)); // output?

40 </script> Question No: 41 ( Marks: 10 ) Is tabular data storage better than flat file data storage? Justify your answer. Student Info StudentID: Center: ExamDate: FINALTERM EXAMINATION Fall 2010 CS101- Introduction to Computing (Session - 2) MC OPKST 2/25/ :00:00 AM Ref No: Time: 120 min Marks: 75 Question No: 1 The memory size of the Altair 8800 was 128 bytes 128 Kilo bytes 256 Kilo bytes 256 bytes Question No: 2 A named collection of properties (data, state) and methods (instruction, behavior) is called. Array Function Variable Object Question No: 3 JavaScript Variables are. Dynamically Typed Statically Typed Strong Typed None of the given options Question No: 4 Serial arrangement in which things follow logical order or a recurrent pattern, such as statements executing one by one, is called. Loop Sequence Condition

41 Array Question No: 5 Rule of thumb learned through trial and error is called. Design Heuristic Plan Aim Question No: 6 According to heuristic, if you can t explain it in minutes, either you don t understand it or it does not work Question No: 7 To store rounded number of 8.6 in a variable called "r_number", we write. r_numbers=maths.rounds(8.6) r_number=math.rounds(8.6) r_number=math.round(8.6) r_number=maths.round(8.6) Question No: 8 Using only HTML we can create Dynamic web pages Static web pages Both Static and Dynamic pages None of these Question No: 9 function returns the largest integer that is less than or equal to x. round(x) floor ceil abs(x) Question No: 10 ( Marks: 1 ) - Please choose one

42 Due to working at home, contact with the colleagues is, which may result in quality of work Reduced, Poorer Reduced, Better Increased, Poorer Increased, Better Question No: 11 The distance among families is because of spending more time on internet. Increased Expanded Contracted Decreased Question No: 12 When web server is busy it gives the following message to the user : Time out Waiting Server busy None of the given options Question No: 13 is designed for detecting viruses and inoculating. Antivirus Utility Trojan None of the given choices Question No: 14 The is becoming the preferred organizational structure for more and more organizations with the passage of time. Tree structured organizational model Network paradigm Hierarchical structure None of the given options Question No: 15 Planning and tracking of the project is the responsibility of the. Project Manager Architect Developer Chief Executive Officer Question No: 16 The responsibilities of the Team Lead includes. Planning and tracking of the project

43 Detailed design Professional development of team members All of the given options Question No: 17 team is responsible for a project after the specification s stage till the very end. Executive Architect Development HR Question No: 18 There are types of errors Question No: 19 are the computers that perform at or near the currently highest operational rate for computers. Minicomputers Microcomputers Supercomputers Personal Computers Question No: 20 Which one of these is NOT an example of storage devices? Tape RAM Floppy DVD Question No: 21 Forms can be submitted by using different methods Question No: 22 Which is NOT true for JavaScript variable name? Student Roll_no_1111 For

44 _schedule Question No: 23 One can browse documents residing on a remote computer using protocol. HTTP SMTP FTP TELNET Question No: 24 Which one is the example of spreadsheet software? MS Word MS PowerPoint MS Excel MS Access Question No: 25 User can remotely log on to a computer and can have a control over it like a local user using TelNet Protocol TelNet Protocol and connected to the user through TCP/IP network TelNet protocol and FTP TCP/IP and FTP Question No: 26 Hardware malfunctions is related to Data updates Data integrity Data security Data accessibility Question No: 27 PowerBuilder falls in the category of. Assembly Languages 4-th Generation Languages Machine Languages High-Level Languages Question No: 28 Backbone is also called as. vbns BNS vhbns

45 HBNS Question No: 29 Global variables can make the logic of a web page. Difficult to understand Easier to understand and maintain Difficult to reuse and maintain Difficult to understand, reuse and maintain Question No: 30 In JavaScript: In order to display the text on browser Grade A, which of following statement is True. documentwrite( "Grade A") document.write( "Grade A"); document.write( "Grade && A"); document.write( "Grade && A"); Question No: 31 ( Marks: 1 ) What is bandwidth? Bandwidth is a capacity of communication channel of carrying data. Question No: 32 ( Marks: 1 ) What is My Personal Agent? A computer programe that work automatically and have voice interface Question No: 33 ( Marks: 2 ) For what purposes FTP is used in networks? To download or upload files / data to a remote computer Question No: 34 ( Marks: 2 ) How can you define a readable program? A program that is easy to read & understand also easy to maintain and enhance. Question No: 35 ( Marks: 3 ) What is the preferred organizational structure for the organization? The Network Organization: It is becoming the preferred organizational structure. Question No: 36 ( Marks: 3 ) How can you define a consistent web design? Why is it needed? A consistent web design is Easy understandable, not with heavy graphics, easy navigation. It is needed because most of the website views leave the site because of poor navigation and not easy to understand, text and design is not clear etc. Question No: 37 ( Marks: 3 ) Elaborate Vector or Object oriented graphics with atleast one example.

46 Vector treats everything that is drawn as object, they are resolution in dependent and relatively small file size. For example swg, svg, wmf. Question No: 38 ( Marks: 5 ) What are the advantages of multimedia presentations? Write any five. Multimedia presentation is a great tool for effective communication: Advantages: 1. Easy to make last minute change 2. More attractive 3. Can include animation, videos etc. 4. Better presentation easy to understandable for participants comparing to manual presentation. 5. Undo feature Question No: 39 ( Marks: 5 ) Can a human doctor be replaced by an Expert System? Give reasons to support your answer. Expert System is a computer system which simulates the knowledge and expertise of a human expert. Yes, a human doctor can be replaced by an Expert System. Following are the reasons to support my answer: 1. A large database of knowledge can be added to and kept up to date, it can store more knowledge than a person. 2. The Expert System cannot FORGET or get facts wrong. 3. It survives forever. There is no loss of knowledge as there is when a doctor retires. 4. The Expert System can access specialist knowledge that a doctor may not have. Question No: 40 ( Marks: 10 ) Explain the following issues of Data Management? (3+4+3) 1. Data entry 2. Data updates 3. Data security DATA ENTRY: There is new data entered every day. New customers are added every day.

47 Some of the data entry requires the manual entry into computer system New data entry needs to be entered correctly DATA UPDATES: Old titles must be removed regularly Data changes every time Prices change Transportation / shipping cost changes Customer personal data changes Schemes changing, new offers Every new entry needs to be entered correctly DATA SECURITY: All data in the system is very critical to its operation, the security of the customer s personal data is most important. Most of the hackers are always trying for that type of information specially Credit Card Numbers. This problem can be managed by using proper security arrangements and mechanisms that provides access to only authorized entities. System Security can be improved through, encryption, firewalls and updated Antivirus Softwares Question No: 41 ( Marks: 10 ) Write a note on the followings a. Image Preloading process b. Animated Gifs IMAGE PRELOADING PROCESS: The primary use of image preloading process is to download the image into the cache before it is actually needed to display. PROCESS: 1. An example of the image object is shaped using the NEW keyword 2. The src property of this instance is set equal to the filename of the image to be pre-loaded 3. This step starts the down-loading of the image into the cache without actually displaying 4. When a pre-loaded image is required to be displayed, the src property of the displayed image is set to the src property of pre fetched image ANIMATE GIFS:

48 We can save 16 gif images of the previous example in a single file in the form of an animated gif, and then used it in a regular <IMG> tag to display a moving image. However, JavaScript provide better control over the sequencing and the gap between the individual images.

CS101 Introduction to Computing Midterm Solved Papers Spring 2012 by

CS101 Introduction to Computing Midterm Solved Papers Spring 2012 by CS101 Introduction to Computing Midterm Solved Papers Spring 2012 by www.virtualians.pk Question No: 1 ( Marks: 1 ) consists of cells arranged in rows & columns Spreadsheets Software Word processor Presentation

More information

CS101-Introduction to Computing Prepared by Ali Hassan

CS101-Introduction to Computing Prepared by Ali Hassan FINALTERM EXAMINATION Spring 2009 CS101- Introduction to Computing (Session - 4) Note:- MCQs in Blue are sure answers and yellow highlighted are Quarantined M a r k s: 75 Time: 120 min Question No: 1 (

More information

FINAL TERM PAPER 1. EXAMINATION Spring 2010 CS101- Introduction to Computing. Amel..

FINAL TERM PAPER 1. EXAMINATION Spring 2010 CS101- Introduction to Computing. Amel.. Amel.. PAPER 1 FINAL TERM EXAMINATION Spring 2010 CS101- Introduction to Computing Question No: 1 ( Marks: 1 ) - Please choose one Analytical Engine is ------------------ An electrical machine A digital

More information

CS101 Finalterm Long Questions Solved. Question No: 31 (Marks: 1) What is heuristic? Heuristic is a procedure that usually, but not always, works or

CS101 Finalterm Long Questions Solved. Question No: 31 (Marks: 1) What is heuristic? Heuristic is a procedure that usually, but not always, works or CS101 Finalterm Long Questions Solved. Question No: 31 (Marks: 1) What is heuristic? Heuristic is a procedure that usually, but not always, works or that gives nearly the right answer. Question No: 32

More information

An algorithm that always takes the best immediate or local solution while finding an answer is called.

An algorithm that always takes the best immediate or local solution while finding an answer is called. An algorithm that always takes the best immediate or local solution while finding an answer is called. Deterministic Algorithm Non deterministic Algorithm Greedy Algorithm Randomized Algorithm Which of

More information

CS101 Solved Subjective Questions from Old papers By

CS101 Solved Subjective Questions from Old papers By CS101 Solved Subjective Questions from Old papers By http://vustudents.ning.com Question No: 31 (Marks: 1) What is heuristic? Heuristic is a procedure that usually, but not always, works or that gives

More information

CS101- Introduction to Computing. Composed By Faheem Saqib. Solved Subjective Final term Papers. For more Help Rep At.

CS101- Introduction to Computing. Composed By Faheem Saqib. Solved Subjective Final term Papers. For more Help Rep At. CS101- Introduction to Computing Composed By Faheem Saqib Solved Subjective Final term Papers For more Help Rep At Faheem_saqib2003@yahoo.com Faheem.saqib2003@gmail.com 0334-6034849 1. Write a note on

More information

CS101 Solved MCQS.

CS101 Solved MCQS. Question # 1 of 10 ( Start time: 05:12:59 PM ) Total Marks: 1 Global variables are: Visible everywhere on the web page Visible only in the block in which they are declared Visible only in the main code

More information

FOR MORE PAPERS LOGON TO

FOR MORE PAPERS LOGON TO CS101 - Introduction to Computing Question No: 1 ( Marks: 1 ) - Please choose one Browser is a used for browsing. Tool Component Device None of the given choices Question No: 2 ( Marks: 1 ) - Please choose

More information

CS101 Solved MCQs For Final Term Exam

CS101 Solved MCQs For Final Term Exam Question # 1 of 10 ( Start time: 05:12:59 PM ) Total Marks: 1 Global variables are: Visible everywhere on the web page Visible only in the block in which they are declared Visible only in the main code

More information

Project 2: After Image

Project 2: After Image Project 2: After Image FIT100 Winter 2007 Have you ever stared at an image and noticed that when it disappeared, a shadow of the image was still briefly visible. This is called an after image, and we experiment

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

Mid Term Papers. Fall 2009 (Session 03) CS101. (Group is not responsible for any solved content)

Mid Term Papers. Fall 2009 (Session 03) CS101. (Group is not responsible for any solved content) Fall 2009 (Session 03) CS101 (Group is not responsible for any solved content) Subscribe to VU SMS Alert Service To Join Simply send following detail to bilal.zaheem@gmail.com Full Name Master Program

More information

Ursuline College Accelerated Program

Ursuline College Accelerated Program Ursuline College Accelerated Program CRITICAL INFORMATION! DO NOT SKIP THIS LINK BELOW... BEFORE PROCEEDING TO READ THE UCAP MODULE, YOU ARE EXPECTED TO READ AND ADHERE TO ALL UCAP POLICY INFORMATION CONTAINED

More information

CIW 1D CIW Foundations Exam v5.

CIW 1D CIW Foundations Exam v5. CIW 1D0-510 CIW Foundations Exam v5 TYPE: DEMO http://www.examskey.com/1d0-510.html Examskey CIW 1D0-510 exam demo product is here for you to test the quality of the product. This CIW 1D0-510 demo also

More information

CONCEPTS OF MANAGEMENT COMPUTING

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

More information

Pace University. Fundamental Concepts of CS121 1

Pace University. Fundamental Concepts of CS121 1 Pace University Fundamental Concepts of CS121 1 Dr. Lixin Tao http://csis.pace.edu/~lixin Computer Science Department Pace University October 12, 2005 This document complements my tutorial Introduction

More information

(Refer Slide Time: 01:41) (Refer Slide Time: 01:42)

(Refer Slide Time: 01:41) (Refer Slide Time: 01:42) Internet Technology Prof. Indranil Sengupta Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture No #14 HTML -Part II We continue with our discussion on html.

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

Downloaded From :

Downloaded From : 04-012-2011 Test V Computer Knowledge 201. The operation of combining two cells into a single cell in Excel is referred to as (1) Join Cells (2) Merge Cells (3) Merge Table (4) Join Table 202. Which of

More information

Solved by sam pari. MIDTERM EXAMINATION Spring 2010 CS101- Introduction to Computing Ref No: Time: 60 min Marks: 38. Student Info Student ID:

Solved by sam pari. MIDTERM EXAMINATION Spring 2010 CS101- Introduction to Computing Ref No: Time: 60 min Marks: 38. Student Info Student ID: Student Info Student ID: Center: Exam Date: Solved by sam pari MIDTERM EXAMINATION Spring 2010 CS101- Introduction to Computing Ref No: 1340580 Time: 60 min Marks: 38 For Teacher's Use Only Q No. 1 2 3

More information

Come & Join Us at VUSTUDENTS.net

Come & Join Us at VUSTUDENTS.net Come & Join Us at VUSTUDENTS.net For Assignment Solution, GDB, Online Quizzes, Helping Study material, Past Solved Papers, Solved MCQs, Current Papers, E-Books & more. Go to http://www.vustudents.net and

More information

3. WWW and HTTP. Fig.3.1 Architecture of WWW

3. WWW and HTTP. Fig.3.1 Architecture of WWW 3. WWW and HTTP The World Wide Web (WWW) is a repository of information linked together from points all over the world. The WWW has a unique combination of flexibility, portability, and user-friendly features

More information

IT430- E-COMMERCE Solved MCQ(S) From Midterm Papers (1 TO 22 Lectures) BY Arslan Arshad

IT430- E-COMMERCE Solved MCQ(S) From Midterm Papers (1 TO 22 Lectures) BY Arslan Arshad IT430- E-COMMERCE Solved MCQ(S) From Midterm Papers (1 TO 22 Lectures) BY Arslan Arshad OCT 21,2016 BS110401050 BS110401050@vu.edu.pk Arslan.arshad01@gmail.com AKMP01 IT430 - E-COMMERCE Midterm Papers

More information

Vanavani Mat. Hr. Sec. School. Subject : Computer Science Std: XI. Quarterly Exam Key

Vanavani Mat. Hr. Sec. School. Subject : Computer Science Std: XI. Quarterly Exam Key Vanavani Mat. Hr. Sec. School Subject : Computer Science Std: XI Quarterly Exam Key Part I (15 X 1 = 15) 1. d 2. A 3. C 4. D 5. D 6. c 7. B 8. A 9. D 10. B 11. d 12. C 13. D 14. A 15. A Part B -Any Six

More information

WEB TECHNOLOGIES CHAPTER 1

WEB TECHNOLOGIES CHAPTER 1 WEB TECHNOLOGIES CHAPTER 1 WEB ESSENTIALS: CLIENTS, SERVERS, AND COMMUNICATION Modified by Ahmed Sallam Based on original slides by Jeffrey C. Jackson THE INTERNET Technical origin: ARPANET (late 1960

More information

('cre Learning that works for Utah STRANDS AND STANDARDS WEB DEVELOPMENT 1

('cre Learning that works for Utah STRANDS AND STANDARDS WEB DEVELOPMENT 1 STRANDS AND STANDARDS Course Description Web Development is a course designed to guide students in a project-based environment, in the development of up-to-date concepts and skills that are used in the

More information

CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0

CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0 WEB TECHNOLOGIES A COMPUTER SCIENCE PERSPECTIVE CHAPTER 2 MARKUP LANGUAGES: XHTML 1.0 Modified by Ahmed Sallam Based on original slides by Jeffrey C. Jackson reserved. 0-13-185603-0 HTML HELLO WORLD! Document

More information

CSC 170 Fall 2017 Dr. R. M. Siegfried. Study Guide for Final Exam

CSC 170 Fall 2017 Dr. R. M. Siegfried. Study Guide for Final Exam CSC 170 Fall 2017 Dr. R. M. Siegfried Study Guide for Final Exam Definitions to know: Lecture #1 1. Data 2. Digitization 3. Bit 4. Byte 5. Binary Numbers 6. How Are Characters Stored? a. ASCII b. Unicode

More information

CLIENT SERVER ARCHITECTURE:

CLIENT SERVER ARCHITECTURE: CLIENT SERVER ARCHITECTURE: Client-Server architecture is an architectural deployment style that describe the separation of functionality into layers with each segment being a tier that can be located

More information

CMSC 332 Computer Networking Web and FTP

CMSC 332 Computer Networking Web and FTP CMSC 332 Computer Networking Web and FTP Professor Szajda CMSC 332: Computer Networks Project The first project has been posted on the website. Check the web page for the link! Due 2/2! Enter strings into

More information

AQU Information Systems Fundamentals Spring 2012 Pg. 9.1

AQU Information Systems Fundamentals Spring 2012 Pg. 9.1 AQU Information Systems Fundamentals Spring 2012 Pg. 9.1 c h a p t e r 9 THE INTERNET & THE NEW INFORMATION TECHNOLOGY INFRASTRUCTURE 9.1 LEARNING OBJECTIVES Describe features of infrastructure & connectivity

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

PLEASE READ CAREFULLY BEFORE YOU START

PLEASE READ CAREFULLY BEFORE YOU START Page 1 of 11 MIDTERM EXAMINATION #1 OCT. 13, 2011 COMPUTER NETWORKS : 03-60-367-01 U N I V E R S I T Y O F W I N D S O R S C H O O L O F C O M P U T E R S C I E N C E Fall 2011-75 minutes This examination

More information

CS 3360 Design and Implementation of Programming Languages. Exam 1

CS 3360 Design and Implementation of Programming Languages. Exam 1 1 Spring 2016 (Monday, March 21) Name: CS 3360 Design and Implementation of Programming Languages Exam 1 This test has 18 questions and pages numbered 1 through 6. Reminders This test is closed-notes and

More information

Objectives. Introduction to HTML. Objectives. Objectives

Objectives. Introduction to HTML. Objectives. Objectives Objectives Introduction to HTML Developing a Basic Web Page Review the history of the Web, the Internet, and HTML. Describe different HTML standards and specifications. Learn about the basic syntax of

More information

RPS Technology Standards Grades 9 through 12 Technology Standards and Expectations

RPS Technology Standards Grades 9 through 12 Technology Standards and Expectations RPS Technology Standards Grades 9 through 12 Technology Standards and Expectations Throughout high school, as students take courses to prepare themselves for college and the working world, they should

More information

Computing 1: Computer Systems

Computing 1: Computer Systems U1 U2 U3 1 2 3 Computing 1: Computer Systems G: I know how to create strong passwords G: I know how to stay safe online and how to alert an adult if I am worried about anything G: I can list a range of

More information

FBCA-03 April Introduction to Internet and HTML Scripting (New Course)

FBCA-03 April Introduction to Internet and HTML Scripting (New Course) Seat No. : FBCA-03 April-2007 105-Introduction to Internet and HTML Scripting (New Course) Time : 3 Hours] [Max. Marks : 70 Instructions : (1) Figures to the right indicate marks allotted to that questions.

More information

Application Software

Application Software Midterm This Saturday 8:45 10:00 am Venue: Sports Complex Please reach exam venue 15 mins in advance One class in the next week will be cancelled Please bring soft lead pencils, a good eraser and sharpener

More information

IT430 E-COMMERCE SHORT NOTES COMPOSED BY VUZS TEAM MEHREEN HUMAYUN LECTURE1-22

IT430 E-COMMERCE SHORT NOTES COMPOSED BY VUZS TEAM MEHREEN HUMAYUN   LECTURE1-22 IT430 E-COMMERCE SHORT NOTES COMPOSED BY VUZS TEAM MEHREEN HUMAYUN WWW.VUZS.NET LECTURE1-22 Question No: 01 ( Marks: 2 ) What does this mean? Padding-right Padding-right: adds space

More information

PLEASE READ CAREFULLY BEFORE YOU START

PLEASE READ CAREFULLY BEFORE YOU START Page 1 of 11 MIDTERM EXAMINATION #1 OCT. 16, 2013 COMPUTER NETWORKS : 03-60-367-01 U N I V E R S I T Y O F W I N D S O R S C H O O L O F C O M P U T E R S C I E N C E Fall 2013-75 minutes This examination

More information

KENDRIYA VIDYALAYA CHENANI (J & K)

KENDRIYA VIDYALAYA CHENANI (J & K) KENDRIYA VIDYALAYA CHENANI (J K) SESSION: 2017-18 SPLIT-UP OF COMPUTER EDUCATION Class : III INTRODUCTION ABOUT COMPUTERS What is Computer? April Introduction about main parts of computer 1. Advantages

More information

Windows 2000 Professional

Windows 2000 Professional The American University in Cairo Academic Computing Services Windows 2000 Professional prepared by Soumaia Ahmed Al Ayyat 4 August 2003 Table of Contents Starting Up the Computer Windows Environment Start

More information

ICT & Computing Progress Grid

ICT & Computing Progress Grid ICT & Computing Progress Grid Pupil Progress ion 9 Select, Algorithms justify and apply appropriate techniques and principles to develop data structures and algorithms for the solution of problems Programming

More information

COMPUTER SOFTWARE RAYMOND ROSE

COMPUTER SOFTWARE RAYMOND ROSE COMPUTER SOFTWARE RAYMOND ROSE LEARNING OUTCOMES 2 WHAT IS SOFTWARE? Software - is a collection of computer programs and related data that provides the instructions for telling a computer what to do and

More information

Question No: 1 ( Marks: 1 ) - Please choose one One difference LISP and PROLOG is. AI Puzzle Game All f the given

Question No: 1 ( Marks: 1 ) - Please choose one One difference LISP and PROLOG is. AI Puzzle Game All f the given MUHAMMAD FAISAL MIT 4 th Semester Al-Barq Campus (VGJW01) Gujranwala faisalgrw123@gmail.com MEGA File Solved MCQ s For Final TERM EXAMS CS508- Modern Programming Languages Question No: 1 ( Marks: 1 ) -

More information

E-Commerce. Infrastructure I: Computer Networks

E-Commerce. Infrastructure I: Computer Networks E-Commerce Infrastructure I: Computer Networks Almost all computers today are networked or part of a distributed system. I will provide an overview of networking and a basic description of network technology.

More information

SCP SC Network Defense and Countermeasures (NDC) Exam.

SCP SC Network Defense and Countermeasures (NDC) Exam. SCP SC0-402 Network Defense and Countermeasures (NDC) Exam TYPE: DEMO http://www.examskey.com/sc0-402.html Examskey SCP SC0-402 exam demo product is here for you to test the quality of the product. This

More information

(Refer Slide Time: 01:40)

(Refer Slide Time: 01:40) Internet Technology Prof. Indranil Sengupta Department of Computer Science and Engineering Indian Institute of Technology, Kharagpur Lecture No #25 Javascript Part I Today will be talking about a language

More information

CGS 3066: Spring 2015 JavaScript Reference

CGS 3066: Spring 2015 JavaScript Reference CGS 3066: Spring 2015 JavaScript Reference Can also be used as a study guide. Only covers topics discussed in class. 1 Introduction JavaScript is a scripting language produced by Netscape for use within

More information

Review of Previous Lecture

Review of Previous Lecture Review of Previous Lecture Network access and physical media Internet structure and ISPs Delay & loss in packet-switched networks Protocol layers, service models Some slides are in courtesy of J. Kurose

More information

CS 3360 Design and Implementation of Programming Languages. Exam 1

CS 3360 Design and Implementation of Programming Languages. Exam 1 1 Spring 2017 (Thursday, March 9) Name: CS 3360 Design and Implementation of Programming Languages Exam 1 This test has 8 questions and pages numbered 1 through 7. Reminders This test is closed-notes and

More information

5/19/2015. Objectives. JavaScript, Sixth Edition. Introduction to the World Wide Web (cont d.) Introduction to the World Wide Web

5/19/2015. Objectives. JavaScript, Sixth Edition. Introduction to the World Wide Web (cont d.) Introduction to the World Wide Web Objectives JavaScript, Sixth Edition Chapter 1 Introduction to JavaScript When you complete this chapter, you will be able to: Explain the history of the World Wide Web Describe the difference between

More information

COURSE OUTLINE COMPUTER SCIENCE GENERAL YEAR 12: 2019 UNIT 3 AND UNIT 4

COURSE OUTLINE COMPUTER SCIENCE GENERAL YEAR 12: 2019 UNIT 3 AND UNIT 4 This course will run the two units, 3 and 4, concurrently. The student Semester 1 grade will therefore be an estimate. Term Knowledge Skills Assessment 1 1 Introduction introduction to the course assessment

More information

6 Computer Networks 6.1. Foundations of Computer Science Cengage Learning

6 Computer Networks 6.1. Foundations of Computer Science Cengage Learning 6 Computer Networks 6.1 Foundations of Computer Science Cengage Learning Objectives After studying this chapter, the student should be able to: 6.2 Describe network criteria, physical structures and categories

More information

Cs101 Objective all past papers

Cs101 Objective all past papers Briefing CS101 Collection 1: Total Papers..06, different sessions. 2: Years..2011,2010,2009 & 2008 3: Only Solved 4: Subjective & Objective. 5: With Reference. Cs101 Objective all past papers CS101- Introduction

More information

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

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

More information

M3-R3: INTERNET AND WEB DESIGN

M3-R3: INTERNET AND WEB DESIGN M3-R3: INTERNET 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 TEAR-OFF ANSWER

More information

(5) Affiliation (10) XML (15) Web Augmentation (20) Gateways. (4) Kernel (9) ES test (14) SSL. (1) Portal (6) EDI (11) Web Directories (16) W3C

(5) Affiliation (10) XML (15) Web Augmentation (20) Gateways. (4) Kernel (9) ES test (14) SSL. (1) Portal (6) EDI (11) Web Directories (16) W3C PART 1: MULTIPLE CHOICE QUESTIONS (15 MARKS) This part consists of 15 multiple choice questions. On the answer sheet, fill you answer for each question. 1. At its early days was called Gateway, nowadays

More information

Objectives. Connecting with Computer Science 2

Objectives. Connecting with Computer Science 2 Objectives Learn what the Internet really is Become familiar with the architecture of the Internet Become familiar with Internet-related protocols Understand how the TCP/IP protocols relate to the Internet

More information

Total Mark out of 35

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

More information

Textbook Charles Petzold, Programming Windows, 5th edition, Microsoft Press. References - other textbooks or materials none

Textbook Charles Petzold, Programming Windows, 5th edition, Microsoft Press. References - other textbooks or materials none CS351 Systems Programming Last Updated - 03/01/02 Course Manager Dr. Phil Dickens, Assistant Professor 3 credit hours; required for CS & CPE; 100 min. lecture & 100 min. lab each week Current Catalog Description

More information

Computing Science: National 5 and Higher skills, knowledge and understanding

Computing Science: National 5 and Higher skills, knowledge and understanding Software design and development Development methodologies Analysis Design Describe and implement the phases of an iterative development process: analysis, design, implementation, testing, documentation,

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

Chapter Twelve. Systems Design and Development

Chapter Twelve. Systems Design and Development Chapter Twelve Systems Design and Development After reading this chapter, you should be able to: Describe the process of designing, programming, and debugging a computer program Explain why there are many

More information

TOPIC 2 INTRODUCTION TO JAVA AND DR JAVA

TOPIC 2 INTRODUCTION TO JAVA AND DR JAVA 1 TOPIC 2 INTRODUCTION TO JAVA AND DR JAVA Notes adapted from Introduction to Computing and Programming with Java: A Multimedia Approach by M. Guzdial and B. Ericson, and instructor materials prepared

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

MODULE: NETWORKS MODULE CODE: CAN1102C. Duration: 2 Hours 15 Mins. Instructions to Candidates:

MODULE: NETWORKS MODULE CODE: CAN1102C. Duration: 2 Hours 15 Mins. Instructions to Candidates: BSc.(Hons) Computer Science with Network Security BEng (Hons) Telecommunications Cohort: BCNS/17B/FT Examinations for 2017-2018 / Semester 2 Resit Examinations for BCNS/15A/FT, BTEL/15B/FT & BTEL/16B/FT

More information

Data Communication & Computer Networks MCQ S

Data Communication & Computer Networks MCQ S Data Communication & Computer Networks MCQ S 1. The translates internet domain and host names to IP address. a) domain name system b) routing information protocol c) network time protocol d) internet relay

More information

Network Applications Principles of Network Applications

Network Applications Principles of Network Applications Network Applications Principles of Network Applications A Network application is an application running on one host and provides communication to another application running on a different host. At the

More information

E-companion. Quiz for IT-knowledge

E-companion. Quiz for IT-knowledge E-companion Quiz for IT-knowledge 1. The is used in combination with other keys to perform shortcuts and special tasks. A) Control (Ctrl) key B) Function key C) Toggle key D) Windows key 2. is the place

More information

Web Engineering (CC 552)

Web Engineering (CC 552) Web Engineering (CC 552) Introduction Dr. Mohamed Magdy mohamedmagdy@gmail.com Room 405 (CCIT) Course Goals n A general understanding of the fundamentals of the Internet programming n Knowledge and experience

More information

Chapter 7: The Internet

Chapter 7: The Internet CSE1520.03 Glade Manual Chapter 7: The Internet Objectives This chapter introduces you to creating a web page that can be viewed on the Internet using a web browser such Firefox, Safari, Chrome or Internet

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

Ministry of National Policies and Economic Affairs National Youth Corps. Curriculum of the Information Technology

Ministry of National Policies and Economic Affairs National Youth Corps. Curriculum of the Information Technology Ministry of National Policies and Economic Affairs National Youth Corps Curriculum of the Information Technology Content 1 Introduction to computer 2 2 Number systems 3 3 Operating Systems 6 4 Word Processing

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

(Refer Slide Time 3:31)

(Refer Slide Time 3:31) Digital Circuits and Systems Prof. S. Srinivasan Department of Electrical Engineering Indian Institute of Technology Madras Lecture - 5 Logic Simplification In the last lecture we talked about logic functions

More information

ADOBE DREAMWEAVER CS4 BASICS

ADOBE DREAMWEAVER CS4 BASICS ADOBE DREAMWEAVER CS4 BASICS Dreamweaver CS4 2 This tutorial focuses on the basic steps involved in creating an attractive, functional website. In using this tutorial you will learn to design a site layout,

More information

Meltem Özturan misprivate.boun.edu.tr/ozturan/mis515

Meltem Özturan misprivate.boun.edu.tr/ozturan/mis515 Meltem Özturan misprivate.boun.edu.tr/ozturan/mis515 1 2 1 Selecting the Best Alternative Major Activities in the Analysis Phase Gather information Define system requirements Prototype for feasibility

More information

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

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

More information

UNIT I. A protocol is a precise set of rules defining how components communicate, the format of addresses, how data is split into packets

UNIT I. A protocol is a precise set of rules defining how components communicate, the format of addresses, how data is split into packets UNIT I Web Essentials: Clients, Servers, and Communication. The Internet- Basic Internet Protocols -The World Wide Web-HTTP request message-response message- Web Clients Web Servers-Case Study. Markup

More information

GCSE Computer Science for OCR Overview Scheme of Work

GCSE Computer Science for OCR Overview Scheme of Work GCSE Computer Science for OCR Overview Scheme of Work The following assumes a two-year model. During the course, the final challenges can be used for practice in computational thinking, algorithm design

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

Computer Networks. Wenzhong Li. Nanjing University

Computer Networks. Wenzhong Li. Nanjing University Computer Networks Wenzhong Li Nanjing University 1 Chapter 8. Internet Applications Internet Applications Overview Domain Name Service (DNS) Electronic Mail File Transfer Protocol (FTP) WWW and HTTP Content

More information

Mail & Deploy Reference Manual. Version 2.0.5

Mail & Deploy Reference Manual. Version 2.0.5 Mail & Deploy Reference Manual Version 2.0.5 Introduction TABLE OF CONTENTS Introduction... 4 General Introduction... 5 Architecture... 6 Server... 6 Repository... 6 Client... 6 Contact Us... 7 Server...

More information

Contents. Slide Set 1. About these slides. Outline of Slide Set 1. Typographical conventions: Italics. Typographical conventions. About these slides

Contents. Slide Set 1. About these slides. Outline of Slide Set 1. Typographical conventions: Italics. Typographical conventions. About these slides Slide Set 1 for ENCM 369 Winter 2014 Lecture Section 01 Steve Norman, PhD, PEng Electrical & Computer Engineering Schulich School of Engineering University of Calgary Winter Term, 2014 ENCM 369 W14 Section

More information

ACE Chapter 4 review. Name: Class: Date: True/False Indicate whether the statement is true or false.

ACE Chapter 4 review. Name: Class: Date: True/False Indicate whether the statement is true or false. Name: Class: Date: ACE Chapter 4 review True/False Indicate whether the statement is true or false. 1. Today s Internet joins together networks of over 300 million computers, or Internet hosts, to create

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

By the end of this section of the practical, the students should be able to:

By the end of this section of the practical, the students should be able to: By the end of this section of the practical, the students should be able to: Write JavaScript to generate HTML Create simple scripts which include input and output statements, arithmetic, relational and

More information

1D CIW: Web Design Specialist. Course Outline. CIW: Web Design Specialist Apr 2018

1D CIW: Web Design Specialist. Course Outline. CIW: Web Design Specialist Apr 2018 Course Outline CIW: Web Design Specialist 22 Apr 2018 Contents 1. Course Objective 2. Pre-Assessment 3. Exercises, Quizzes, Flashcards & Glossary Number of Questions 4. Expert Instructor-Led Training 5.

More information

User Manual. Version 3.1. Copyright 2000 Academia Software Solutions All Rights Reserved

User Manual. Version 3.1. Copyright 2000 Academia Software Solutions All Rights Reserved The GR System User Manual Version 3.1 Copyright 2000 Academia Software Solutions All Rights Reserved All contents of this manual are copyrighted by Academia Software Solutions. The information contained

More information

PLEASE READ CAREFULLY BEFORE YOU START

PLEASE READ CAREFULLY BEFORE YOU START Page 1 of 20 MIDTERM EXAMINATION #1 - B COMPUTER NETWORKS : 03-60-367-01 U N I V E R S I T Y O F W I N D S O R S C H O O L O F C O M P U T E R S C I E N C E Fall 2008-75 minutes This examination document

More information

PLEASE READ CAREFULLY BEFORE YOU START

PLEASE READ CAREFULLY BEFORE YOU START Page 1 of 20 MIDTERM EXAMINATION #1 - A COMPUTER NETWORKS : 03-60-367-01 U N I V E R S I T Y O F W I N D S O R S C H O O L O F C O M P U T E R S C I E N C E Fall 2008-75 minutes This examination document

More information

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next.

GoLive will first ask you if your new site will be for one individual or a work group; select for a Single User, and click Next. Getting Started From the Start menu, located the Adobe folder which should contain the Adobe GoLive 6.0 folder. Inside this folder, click Adobe GoLive 6.0. GoLive will open to its initial project selection

More information

HIGER SECONDARY FIRST YEAR COMPUTER SCIENCE

HIGER SECONDARY FIRST YEAR COMPUTER SCIENCE HIGER SECONDARY FIRST YEAR COMPUTER SCIENCE VOLUME I Chapter 1 : Introduction to computers and Number Systems 1.1 Introduction to Computers 1.1.1 History of Computers 1.1.2 Data, Information and program

More information

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved.

Configuring the Oracle Network Environment. Copyright 2009, Oracle. All rights reserved. Configuring the Oracle Network Environment Objectives After completing this lesson, you should be able to: Use Enterprise Manager to: Create additional listeners Create Oracle Net Service aliases Configure

More information

National 5 Computing Science Software Design & Development

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

More information

Software Development & Education Center PHP 5

Software Development & Education Center PHP 5 Software Development & Education Center PHP 5 (CORE) Detailed Curriculum Core PHP Introduction Classes & Objects Object based & Object Oriented Programming Three Tier Architecture HTML & significance of

More information

Madhya Pradesh Bhoj (Open) University, Bhopal DIPLOMA IN COMPUTER APPLICATION (DCA)

Madhya Pradesh Bhoj (Open) University, Bhopal DIPLOMA IN COMPUTER APPLICATION (DCA) Subject: Fundamentals of computers and information technology Maximum Marks: 30 1.What is computer? Write the different types of compute according to size and working process. What is history of computer?

More information