Namma Kalvi.

Size: px
Start display at page:

Download "Namma Kalvi."

Transcription

1 Namma Kalvi COMPUTER APPLICATION PUBLIC EXAM ANSWER KEY PART - A I Choose the correct answer 10x1=10 1. c. warm booting 6. d. All the above 11. d..css 2. c. Giga 7. d b. F5 3. b. VGA connector 8. b. <> 13. d a. System Software 9. c. Highlight 14. c. Library Function 5. a. Title Bar 10. a. IMG 15. d. Worms PART - B II Answer the following 6x2= Computers are electronic devices that accept data as input, process it, produce output and stores it for future reference. 17. Open Source refers to a program or software in which the source code is available in the web to the general public free of cost. 18. Pre-defined functions are already defined in the JavaScript library which are also called Library functions. For example isnan(), touppercase(),etc 19. Cell pointer is a rectangle box which can be moved around the worksheet. The cell in which the cell pointer is currently located is known as Active cell. 20. Container Elements: The tags which are required opening and closing tag For example: <html> </html> Empty Elements: The tags which are required only opening tag For example: <br> 21. HTML supports three types of lists viz. numbered, unnumbered and definition. These lists are called as Ordered List, Unordered List and Definition List respectively. 22. Output 1. Keyboard 2. Monitor 3. Speaker 23. There are Popular Image Formal GIF (Graphical Interchange Format) JPEG (Joint Photographic Experts Group) PNG (Portable Network Graphics) SVG (Scalable Vector Graphics) 24. Compulsory Question Left - Ctrl + L Right - Ctrl + R Center - Ctrl + E Justified - Ctrl + J

2 PART- C III Answer the following 6x3= Add Subtract a b Mobile Operating Systems are Apple ios and Google Android. Android Android is a mobile operating system developed by Google, based on Linux and designed primarily for touch screen mobile devices such as smart phones and tablets. Apple ios ios (formerly iphone OS) is a mobile Operating System created and developed by Apple Inc 27.Different between Thunderbird and firefox Thunderbird Default/ in-built Software in Ubuntu gives the user access to such as Exchange, Gmail, Hotmail, etc. 28. There are two different Page orientations: Landscape and Portrait Landscape - The width of the document is more than the height. Portrait - The height of the document is more than the width. This is the most common and default orientation. 29. Webpage Website Consists of a Single document A collection of multiple documents displayed by a browser displayable by a browser Shares a unique domain name Has its own unique domain name Makes up a website Contains one or more webpages 30. OUTPUT: You are eligible to get Driving Licence Firefox Default/ in-built Web Browser in Ubuntu Give the user access internet to search information 31. Advantages of CSS Maintainability -CSS are also defined and stored as separate files. So, the style and appearance of a web page can be dynamically changed and maintain with less effort. Reusability - The styles defined in CSS can be reused in multiple HTML pages. Easy to understand - The tags in web pages are well organized with style specifications and therefore it is easy to understand. 32. JavaScript can be implemented using <script>... </script> tags. It can be placed anywhere within in the web page, but it is normally recommended that should be kept it within the <head> tags. The <script> tag alerts the browser program to start interpreting all the text between these tags as a script commands. 33. Compulsory Question HTML CODE: <html> <body> <marquee> Welcome to HTML </marquee> </body> </html>

3 PART D IV Answer the following 5x5= a. Basic Component of computer Explain: Input Unit Central Processing Unit o The CPU has three components which are Control unit, Arithmetic and logic unit (ALU) and Memory unit Output Unit Memory Unit DIAGRAM: b. Convert (155)10 into Binary, Octal, Hexadecimal Decimal Binary Octal Hexadecimal (155) 10 - ( ) 2 (233) 8 (9B) a. MOUSE ACTIONS Action Reaction Point to an Move the mouse pointer over the item. item Click Point to the item on the screen, press and release the left mouse button. Point to the item on the screen, press and release the right mouse button. Right click Clicking the right mouse button displays a pop up menu with various options Double-click Drag and drop Point to the item on the screen, quickly press twice the left mouse button. Point to an item then hold the left mouse button as you move the pointer and when you have reached the desired position, release the mouse button b. Five types of view in impress 1. Normal, 2. Outline, 3. Notes, 4. Handout and 5. Slide Sorter Normal view is the main view for creating individual slides. Use this view to format and design slides and to add text, graphics and animation effects.

4 Outline view shows topic titles, bulleted lists and numbered lists for each slide in outline format. Use this view to rearrange the order of slides, edit titles and headings, rearrange the order of items in a list and add new slides. Notes view lets you add notes to each slide that are not seen when the presentation is shown. Slide Sorter view shows a thumbnail of each slide in order. Use this view to rearrange the order of slides, produce a timed slide show, or add transitions between selected slides. Handout view lets you print your slides for a handout. You can choose one, two, three, four, or six slides per page from Tasks pane Layouts. Thumbnails can be re-arranged in this view by dragging and dropping them. 36. a. Explain any five Internet Applications Internet telephony Job search Online Shopping Stock market updates Travel Research Video conferencing e commerce Online payments Social Networking Voic Chatting e-banking e-learning b. Attributes of table There are: 1. Cellspacing:It is used to set the space between cells in a table. The value should be in pixels 2. Cellpadding:It is used to set the space between the contents of a cell and its border. the value should be in pixels. 3. Border: Border attribute with <table> tag is used to specify the thickness of the border lines around the table. The value of the border attribute should be a non zero value in pixels. If its value is zero, HTML displays the table without border. The default value is Zero in most the browsers. 4. Bordercolor: It is used to apply the colour to the border lines. 5. Align: It is used to set the position of the table within the browser window. Left is the default position. Right or center may be the value of align attribute. 6. BGcolor: It is used to apply background colour to the table. 7. Height and Width: These two attributes are used to specify the height and width of a table in terms of pixels or percentage. 37. a. HTML Program <html> <body> <table border=1 cellspacing=5 cellpadding=5> <tr> <th>class</th> <th>boys</th> <th>girls</th> </tr> <tr> <th>xi</th> <th>75</th> <th>80</th> </tr> <tr> <th>xii</th> <th>65</th> <th>70</th> </tr> </table> </body> </html> b. FORM TAG

5 The <form> tag is used to create a form. An HTML from starts with <form> and ends with </form> tag. Forms contain many types of form elements, such as text boxes, radio buttons, check boxes, buttons and drop-down lists. Two Attribute are METHOD AND ACTION Method: The method attribute of the form tag is used to identify how the form element names and values will be sent to the server. The get method will append the names of the form elements and their values to the URL. The post method will send the names and values of the form elements as packets. Action: The action attribute identifies the server side program or script that will process the form. The action will be the name of a Common Gateway Interface (CGI) program written in programming languages like Perl, JavaScript, etc 38. a. Switch Statement JavaScripts offers the switch statement as an alternate to using if...else structure. The switch statement is especially useful when testing all the possible results of an expression. The syntax of a switch structure as the following: switch(expression) { case label1: statements1; break; case label2: statements2; break; case labeln; statements - N; break; default: statements; } Suitable Example b. Predefined functions Function Description Example Result touppercase() given string into uppercase x= java x.touppercase(); JAVA tolowercase() length parseint() parsefloat() given string into lowercase Used to find length of the given string the given float value into an integer the given string into a integer x= JAVA x.tolowercase(); x= JAVA x.length(); java 4 parseint(34.234); 34 parseint( ) ; 34.23

TAMILNADU PLUS ONE COMPUTER APPLICATIONS PUBLIC EXAM ANSWER KEY MARCH 2019 PART - I PART - II

TAMILNADU PLUS ONE COMPUTER APPLICATIONS PUBLIC EXAM ANSWER KEY MARCH 2019 PART - I PART - II et et TAMILNADU PLUS ONE COMPUTER APPLICATIONS PUBLIC EXAM ANSWER KEY MARCH 2019 1. C et et 2. C 3. B et et 4. A 5. A 6. D et et 7. D 8. B et et 9. C 10. A 11. D et et 12. B 13. A et et 14. C 15. D et

More information

Padasalai.net- Higher Secondary first Year. Quarterly exam answer key-2018 Max Marks : 70

Padasalai.net- Higher Secondary first Year. Quarterly exam answer key-2018 Max Marks : 70 i.ne ww.pai.n STD: 11 i.n i.ne i.n i.ne i.n i.ne Pai.net- Higher Secondary first Year COMPUTER Applications Time : 2.30 Hrs Quarterly exam answer key-2018 Max Marks : 70 N.Gunasekaran MCA., B.Ed PG Asst

More information

CHRIST THE KING BOYS MATRICULATION HR. SEC. SCHOOL, KUMBAKONAM

CHRIST THE KING BOYS MATRICULATION HR. SEC. SCHOOL, KUMBAKONAM 11 TH STANDARD NEW SYLLABUS SUBJECT: COMPUTER APPLICATION LIST OF 2 MARKS & 3 MARKS QUESTIONS UNIT I FUNDAMENTALS OF COMPUTER AND WORKING WITH TYPICAL OPERATING SYSTEMS (WINDOWS & LINUX) Q.NO. 1 QUESTION

More information

1/6/ :28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014

1/6/ :28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014 1/6/2019 12:28 AM Approved New Course (First Version) CS 50A Course Outline as of Fall 2014 CATALOG INFORMATION Dept and Nbr: CS 50A Title: WEB DEVELOPMENT 1 Full Title: Web Development 1 Last Reviewed:

More information

Creating Web Pages with SeaMonkey Composer

Creating Web Pages with SeaMonkey Composer 1 of 26 6/13/2011 11:26 PM Creating Web Pages with SeaMonkey Composer SeaMonkey Composer lets you create your own web pages and publish them on the web. You don't have to know HTML to use Composer; it

More information

INFS 2150 / 7150 Intro to Web Development / HTML Programming

INFS 2150 / 7150 Intro to Web Development / HTML Programming XP INFS 2150 / 7150 Intro to Web Development / HTML Programming Working with Graphics in a Web Page 1 Objectives Learn about different image formats Control the placement and appearance of images on a

More information

ClipArt and Image Files

ClipArt and Image Files ClipArt and Image Files Chapter 4 Adding pictures and graphics to our document not only breaks the monotony of text it can help convey the message quickly. Objectives In this section you will learn how

More information

epromo Guidelines DUE DATES NOT ALLOWED PLAIN TEXT VERSION

epromo Guidelines DUE DATES NOT ALLOWED PLAIN TEXT VERSION epromo Guidelines HTML Maximum width 700px (length = N/A) Image resolution should be 72dpi Maximum total file size, including all images = 200KB Only use inline CSS, no stylesheets Use tables, rather than

More information

COMPUTER APPLICATIONS 10. HTML - Structural Tags SECTION-B

COMPUTER APPLICATIONS 10. HTML - Structural Tags SECTION-B COMPUTER APPLICATIONS 10. HTML - Structural Tags SECTION-B Answer to the following questions (2 Marks): 1 Sandhiya is creating a webpage. She is entering HTML code on her computer. In between, she keeps

More information

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets

Dreamweaver Basics. Planning your website Organize site structure Plan site design & navigation Gather your assets Dreamweaver Basics Planning your website Organize site structure Plan site design & navigation Gather your assets Creating your website Dreamweaver workspace Define a site Create a web page Linking Manually

More information

DHEERAN VIDHYAALAYAA MATRIC HR. SEC. SCHOOL

DHEERAN VIDHYAALAYAA MATRIC HR. SEC. SCHOOL DHEERAN VIDHYAALAYAA MATRIC HR. SEC. SCHOOL Kaligoundanpalayam, Thalaiyur, sankari- salem- 637103 Half Yearly Common Examination- 2018 Std: 11 12.12.2018 Subject: Computer Application Answer key Marks:70

More information

Computer Applications Final Exam Study Guide

Computer Applications Final Exam Study Guide Name: Computer Applications Final Exam Study Guide Microsoft Word 1. To use -and-, position the pointer on top of the selected text, and then drag the selected text to the new location. 2. The Clipboard

More information

Welcome. Web Authoring: HTML - Advanced Topics & Photo Optimisation (Level 3) Richard Hey & Barny Baggs

Welcome. Web Authoring: HTML - Advanced Topics & Photo Optimisation (Level 3) Richard Hey & Barny Baggs Welcome Web Authoring: HTML - Advanced Topics & Photo Optimisation (Level 3) Richard Hey & Barny Baggs Health and Safety Course Information General Information Objectives To understand the need for photo

More information

Unit 8. Lesson 8.1. Microsoft FrontPage. Introduction. Microsoft FrontPage-1. Microsoft FrontPage

Unit 8. Lesson 8.1. Microsoft FrontPage. Introduction. Microsoft FrontPage-1. Microsoft FrontPage Microsoft FrontPage Unit 8 Microsoft FrontPage Introduction Lesson 8.1 Microsoft FrontPage-1 A number of Software Packages are available in market for creating a website. Among popular software s are Dreamweaver,

More information

Padasalai.Net - Public Exam th Computer Technology

Padasalai.Net - Public Exam th Computer Technology et et et et et et et et et et et et et et et et et Padasalai.Net - Public Exam 2019 11 th Computer Technology PART-I 1. d transistors 2. a D 3. b pentium IV 4. b. compiler management 5. c.thumder bird

More information

PowerPoint Multiple OUTPUT types Paper Onscreen Web presentation 6 x 6 rule 6 points 6 words

PowerPoint Multiple OUTPUT types Paper Onscreen Web presentation 6 x 6 rule 6 points 6 words PowerPoint 1 PowerPoint Multiple OUTPUT types: Paper Onscreen Web presentation 6 x 6 rule no more than 6 points per slide No more than 6 words per point Placeholder area of a slide reserved for text or

More information

introduction to XHTML

introduction to XHTML introduction to XHTML XHTML stands for Extensible HyperText Markup Language and is based on HTML 4.0, incorporating XML. Due to this fusion the mark up language will remain compatible with existing browsers

More information

Page Content. Inserting Text To add text to your document, you can type the text directly or use Cut or Copy and Paste or Paste Special.

Page Content. Inserting Text To add text to your document, you can type the text directly or use Cut or Copy and Paste or Paste Special. This section describes how to add content to your pages including text, Microsoft Office documents, images, Flash, and other media content. Inserting Text To add text to your document, you can type the

More information

PowerPoint 2010 Level 1 Computer Training Solutions Student Guide Version Revision Date Course Length

PowerPoint 2010 Level 1 Computer Training Solutions Student Guide Version Revision Date Course Length Level 1 Computer Training Solutions Version 1.2 Revision Date Course Length 2012-Feb-16 6 hours Table of Contents Quick Reference... 3 Frequently Used Commands... 3 Manitoba ehealth Learning Management

More information

NEW WEBMASTER HTML & CSS FOR BEGINNERS COURSE SYNOPSIS

NEW WEBMASTER HTML & CSS FOR BEGINNERS COURSE SYNOPSIS NEW WEBMASTER HTML & CSS FOR BEGINNERS COURSE SYNOPSIS LESSON 1 GETTING STARTED Before We Get Started; Pre requisites; The Notepad++ Text Editor; Download Chrome, Firefox, Opera, & Safari Browsers; The

More information

Tables *Note: Nothing in Volcano!*

Tables *Note: Nothing in Volcano!* Tables *Note: Nothing in Volcano!* 016 1 Learning Objectives After this lesson you will be able to Design a web page table with rows and columns of text in a grid display Write the HTML for integrated

More information

How to lay out a web page with CSS

How to lay out a web page with CSS Activity 2.6 guide How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS4 to create a simple page layout. However, a more powerful technique is to use Cascading Style

More information

Microsoft Powerpoint 2007

Microsoft Powerpoint 2007 Microsoft Powerpoint 2007 Getting started Select the Start button towards the bottom left of the screen. Select each of the following: Programs; Microsoft Office > Microsoft Powerpoint 2007. Within a few

More information

HTML5. HTML5 Introduction. Form Input Types. Semantic Elements. Form Attributes. Form Elements. Month Number Range Search Tel Url Time Week

HTML5. HTML5 Introduction. Form Input Types. Semantic Elements. Form Attributes. Form Elements. Month Number Range Search Tel Url Time Week WEB DESIGNING HTML HTML - Introduction HTML - Elements HTML - Tags HTML - Text HTML - Formatting HTML - Pre HTML - Attributes HTML - Font HTML - Text Links HTML - Comments HTML - Lists HTML - Images HTML

More information

PowerPoint Tutorial 2: Adding and Modifying Text and Graphic Objects 2013

PowerPoint Tutorial 2: Adding and Modifying Text and Graphic Objects 2013 PowerPoint Tutorial 2: Adding and Modifying Text and Graphic Objects Microsoft Office 2013 2013 Objectives Insert a graphic from a file Insert, resize, and reposition clip art Modify the color and shape

More information

C omputer D riving L icence

C omputer D riving L icence E uropean C omputer D riving L icence E C D L S y l l a b u s 5. 0 Module 6 Presentation ECDL Syllabus 5 Courseware Module 6 Contents USING THE APPLICATION... 1 OPENING & CLOSING MS POWERPOINT & PRESENTATIONS...

More information

B.Sc. VI SEM (CS+BIO)

B.Sc. VI SEM (CS+BIO) Unit I Creating presentation using Slide master and Template in various Themes & Variants. If you want your presentation to contain more than one theme (layouts that contain backgrounds, colors, fonts,

More information

Glossary Unit 1: Hardware and Software

Glossary Unit 1: Hardware and Software Glossary Unit 1: Hardware and Software 1. 2. Application software computer software created to allow the user to perform specific a job or task Examples: Word processing, Spreadsheets, Database, and Graphics

More information

Introduction to HTML. SSE 3200 Web-based Services. Michigan Technological University Nilufer Onder

Introduction to HTML. SSE 3200 Web-based Services. Michigan Technological University Nilufer Onder Introduction to HTML SSE 3200 Web-based Services Michigan Technological University Nilufer Onder What is HTML? Acronym for: HyperText Markup Language HyperText refers to text that can initiate jumps to

More information

IT1304 PC Applications Multiple Choice Question Paper

IT1304 PC Applications Multiple Choice Question Paper UNIVERSITY OF COLOMBO, SRI LANKA UNIVERSITY OF COLOMBO SCHOOL OF COMPUTING DEGREE OF BACHELOR OF INFORMATION TECHNOLOGY (EXTERNAL) Academic Year 2011/2012 1 st Year Examination Semester 1 IT1304 PC Applications

More information

Introduction to the Internet and World Wide Web p. 1 The Evolution of the Internet p. 2 The Internet, Intranets, and Extranets p. 3 The Evolution of

Introduction to the Internet and World Wide Web p. 1 The Evolution of the Internet p. 2 The Internet, Intranets, and Extranets p. 3 The Evolution of Introduction to the Internet and World Wide Web p. 1 The Evolution of the Internet p. 2 The Internet, Intranets, and Extranets p. 3 The Evolution of the World Wide Web p. 3 Internet Standards and Coordination

More information

PowerPoint Chapter 1 Creating and Editing a Presentation with Pictures

PowerPoint Chapter 1 Creating and Editing a Presentation with Pictures PowerPoint Chapter 1 Creating and Editing a Presentation with Pictures MULTIPLE CHOICE 1. A PowerPoint can help you deliver a dynamic, professional-looking message to an audience. a. calendar c. presentation

More information

Creating Forms. Starting the Page. another way of applying a template to a page.

Creating Forms. Starting the Page. another way of applying a template to a page. Creating Forms Chapter 9 Forms allow information to be obtained from users of a web site. The ability for someone to purchase items over the internet or receive information from internet users has become

More information

Session 3.1 Objectives Review the history and concepts of CSS Explore inline styles, embedded styles, and external style sheets Understand style

Session 3.1 Objectives Review the history and concepts of CSS Explore inline styles, embedded styles, and external style sheets Understand style Session 3.1 Objectives Review the history and concepts of CSS Explore inline styles, embedded styles, and external style sheets Understand style precedence and style inheritance Understand the CSS use

More information

PowerPoint 2016 Building a Presentation

PowerPoint 2016 Building a Presentation PowerPoint 2016 Building a Presentation What is PowerPoint? PowerPoint is presentation software that helps users quickly and efficiently create dynamic, professional-looking presentations through the use

More information

Introducing Impress. the Presentation Manager from OpenOffice.org. Introducing Impress. Presented by Charlie Mead

Introducing Impress. the Presentation Manager from OpenOffice.org. Introducing Impress. Presented by Charlie Mead the Presentation Manager from OpenOffice.org Presented by Charlie Mead What is Impress? Part of the OpenOffice application suite Backed by Sun Microsystems Use it to build presentations, slide shows and

More information

MONTHLY SYLLABUS SESSION CLASS XII SUBJECT : TYPOGRAPHY & COMPUTER APPLICATION (607) THEORY : 50 / PRACTICAL : 50

MONTHLY SYLLABUS SESSION CLASS XII SUBJECT : TYPOGRAPHY & COMPUTER APPLICATION (607) THEORY : 50 / PRACTICAL : 50 MONTHLY SYLLABUS SESSION-2016-17 CLASS XII SUBJECT : TYPOGRAPHY & COMPUTER APPLICATION (607) THEORY : 50 / : 50 MONTH CONTENTS April 2016 Part-I Typography Different styles of letters-indented. Semi Indented

More information

Tutorial 5 Working with Tables and Columns. HTML and CSS 6 TH EDITION

Tutorial 5 Working with Tables and Columns. HTML and CSS 6 TH EDITION Tutorial 5 Working with Tables and Columns HTML and CSS 6 TH EDITION Objectives Explore the structure of a Web table Create headings and cells in a table Create cells that span multiple rows and columns

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

STATE COUNCIL OF EDUCATIONAL RESEARCH AND TRAINING TNCF DRAFT SYLLABUS. Operating Systems.

STATE COUNCIL OF EDUCATIONAL RESEARCH AND TRAINING TNCF DRAFT SYLLABUS.  Operating Systems. STATE COUNCIL OF EDUCATIONAL RESEARCH AND TRAINING TNCF 2017 - DRAFT SYLLABUS Subject :Computer Technology (Vocational and Science) Class : XI UNIT I TOPIC FUNDAMENTALS OF COMPUTERS CONTENT Introduction

More information

Year 8 Computing Science End of Term 3 Revision Guide

Year 8 Computing Science End of Term 3 Revision Guide Year 8 Computing Science End of Term 3 Revision Guide Student Name: 1 Hardware: any physical component of a computer system. Input Device: a device to send instructions to be processed by the computer

More information

Dreamweaver CS6. Level 3. Topics Working with Text, List, and tables Working with Images

Dreamweaver CS6. Level 3. Topics Working with Text, List, and tables Working with Images Level 3 Topics Working with Text, List, and tables Working with Images Changing the Copy/ Paste Prefences in Dreamweaver You can set special paste preferences as default options when using Edit > Paste

More information

Using Adobe Contribute 4 A guide for new website authors

Using Adobe Contribute 4 A guide for new website authors Using Adobe Contribute 4 A guide for new website authors Adobe Contribute allows you to easily update websites without any knowledge of HTML. This handout will provide an introduction to Adobe Contribute

More information

POWERPOINT BASICS: MICROSOFT OFFICE 2010

POWERPOINT BASICS: MICROSOFT OFFICE 2010 POWERPOINT BASICS: MICROSOFT OFFICE 2010 GETTING STARTED PAGE 02 Prerequisites What You Will Learn USING MICROSOFT POWERPOINT PAGE 03 Microsoft PowerPoint Components SIMPLE TASKS IN MICROSOFT POWERPOINT

More information

Microsoft Office Training Skills 2010

Microsoft Office Training Skills 2010 Microsoft Office Training Skills 2010 Lesson 5 Working with pages, Tables, Shapes and Securing Documents Adding Page color Add color to the background of one or several pages in the document. 1. Click

More information

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) Learning Objectives (2 of 2) Horizontal Rule Element

8/19/2018. Web Development & Design Foundations with HTML5. Learning Objectives (1 of 2) Learning Objectives (2 of 2) Horizontal Rule Element Web Development & Design Foundations with HTML5 Ninth Edition Chapter 4 Visual Elements and Graphics Learning Objectives (1 of 2) 4.1 Create and format lines and borders on web pages 4.2 Apply the image

More information

European Computer Driving Licence

European Computer Driving Licence European Computer Driving Licence E C D L S y l l a b u s 5. 0 Module 6 Presentation Contents GRAPHICAL OBJECTS... 1 INSERTING DRAWN OBJECTS... 1 ADDING TEXT TO A DRAWN OBJECT... 2 FORMATTING DRAWN OBJECTS...

More information

Dreamweaver MX Overview. Maintaining a Web Site

Dreamweaver MX Overview. Maintaining a Web Site Dreamweaver MX Overview Maintaining a Web Site... 1 The Process... 1 Filenames... 1 Starting Dreamweaver... 2 Uploading and Downloading Files... 6 Check In and Check Out Files... 6 Editing Pages in Dreamweaver...

More information

Impress Guide. Chapter 1 Introducing Impress

Impress Guide. Chapter 1 Introducing Impress Impress Guide Chapter 1 Introducing Impress Copyright This document is Copyright 2005 2009 by its contributors as listed in the section titled Authors. You may distribute it and/or modify it under the

More information

DIPLOMA IN COMPUTER APPLICATION. SEMISTER-1 Sl. No Subject Theory Practical Credits Weeks 1 Computer Fundamentals MS Office

DIPLOMA IN COMPUTER APPLICATION. SEMISTER-1 Sl. No Subject Theory Practical Credits Weeks 1 Computer Fundamentals MS Office DIPLOMA IN COMPUTER APPLICATION SEMISTER-1 Sl. No Subject Theory Practical Credits Weeks 1 Computer Fundamentals 50 50 2 3 2 MS Office 50 50 4 5 (Word,Excel,Powerpoint,MsVisio 3 HTML, CSS, JavaScript 50

More information

You can also search online templates which can be picked based on background themes or based on content needs. Page eleven will explain more.

You can also search online templates which can be picked based on background themes or based on content needs. Page eleven will explain more. Microsoft PowerPoint 2016 Part 1: The Basics Opening PowerPoint Double click on the PowerPoint icon on the desktop. When you first open PowerPoint you will see a list of new presentation themes. You can

More information

CS 350 COMPUTER/HUMAN INTERACTION. Lecture 6

CS 350 COMPUTER/HUMAN INTERACTION. Lecture 6 CS 350 COMPUTER/HUMAN INTERACTION Lecture 6 Setting up PPP webpage Log into lab Linux client or into csserver directly Webspace (www_home) should be set up Change directory for CS 350 assignments cp r

More information

Independence Community College Independence, Kansas

Independence Community College Independence, Kansas Independence Community College Independence, Kansas C O N T E N T S Unit 1: Creating, Modifying, and Enhancing FrontPage Webs and Pages 1 Chapter 1 Investigating FrontPage 2002 3 Exploring World Wide Web

More information

APPENDIX THE TOOLBAR. File Functions

APPENDIX THE TOOLBAR. File Functions APPENDIX THE TOOLBAR Within the WYSIWYG editor, there are a variety of functions available to the user to properly update the page. Below is a list of all the functions available. Keep in mind that the

More information

Exam : 1D Title : CIW Foundations. Version : DEMO

Exam : 1D Title : CIW Foundations. Version : DEMO Exam : 1D0-410 Title : CIW Foundations Version : DEMO 1. In an HTML 4.0-compliant browser, how is a radio button field displayed within a form? A. A radio button is displayed as a small box. B. A radio

More information

Chapter 12 Creating Web Pages

Chapter 12 Creating Web Pages Getting Started Guide Chapter 12 Creating Web Pages Saving Documents as HTML Files Copyright This document is Copyright 2017 by the LibreOffice Documentation Team. Contributors are listed below. You may

More information

Dreamweaver Basics Outline

Dreamweaver Basics Outline Dreamweaver Basics Outline The Interface Toolbar Status Bar Property Inspector Insert Toolbar Right Palette Modify Page Properties File Structure Define Site Building Our Webpage Working with Tables Working

More information

How to lay out a web page with CSS

How to lay out a web page with CSS How to lay out a web page with CSS A CSS page layout uses the Cascading Style Sheets format, rather than traditional HTML tables or frames, to organize the content on a web page. The basic building block

More information

ICT IGCSE Practical Revision Presentation Web Authoring

ICT IGCSE Practical Revision Presentation Web Authoring 21.1 Web Development Layers 21.2 Create a Web Page Chapter 21: 21.3 Use Stylesheets 21.4 Test and Publish a Website Web Development Layers Presentation Layer Content layer: Behaviour layer Chapter 21:

More information

CSS MOCK TEST CSS MOCK TEST III

CSS MOCK TEST CSS MOCK TEST III http://www.tutorialspoint.com CSS MOCK TEST Copyright tutorialspoint.com This section presents you various set of Mock Tests related to CSS. You can download these sample mock tests at your local machine

More information

Microsoft Office. Microsoft Office

Microsoft Office. Microsoft Office is an office suite of interrelated desktop applications, servers and services for the Microsoft Windows. It is a horizontal market software that is used in a wide range of industries. was introduced by

More information

HTML TAG SUMMARY HTML REFERENCE 18 TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES MOST TAGS

HTML TAG SUMMARY HTML REFERENCE 18 TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES TAG/ATTRIBUTE DESCRIPTION PAGE REFERENCES MOST TAGS MOST TAGS CLASS Divides tags into groups for applying styles 202 ID Identifies a specific tag 201 STYLE Applies a style locally 200 TITLE Adds tool tips to elements 181 Identifies the HTML version

More information

Lesson 9. XII COMPUTER SCIENCE D. AGILAN. M.Sc., M.Ed., M.Phil., Page 1

Lesson 9.   XII COMPUTER SCIENCE D. AGILAN. M.Sc., M.Ed., M.Phil., Page 1 Lesson 9 STAR OFFICE PRESENTATION 1. Which key is used to create a new presentation using a template? a. Shift+ Alt+ N b. Shift+ Ctrl+ N c. Ctrl+ Alt+ N d. shift+ Tab 2. Which of the following view allows

More information

WebsiteBuilder. Manual

WebsiteBuilder. Manual WebsiteBuilder Manual August 2016, Copyright Webland AG 2016 Table of Contents Introduction Getting Familiar With WebsiteBuilder Creating and Editing Websites Editing Websites Structure: Pages and Navigation

More information

European Computer Driving Licence

European Computer Driving Licence European Computer Driving Licence E C D L S y l l a b u s 5. 0 Module 6 Presentation ECDL Syllabus 5 Courseware Module 6 Contents USING THE APPLICATION... 1 OPENING & CLOSING MS POWERPOINT & PRESENTATIONS...

More information

Chapter 9 Getting Started with Impress:

Chapter 9 Getting Started with Impress: Getting Started Guide Chapter 9 Getting Started with Impress: OpenOffice.org's Presentations OpenOffice.org Copyright This document is Copyright 2005 by its contributors as listed in the section titled

More information

Getting started with PowerPoint 2010

Getting started with PowerPoint 2010 To start PowerPoint, select Start/All Programs/Microsoft Office/Microsoft PowerPoint 2010. PowerPoint opens to a new presentation. A presentation consists of one or more slides. The window has three parts,

More information

CSC Web Programming. Introduction to HTML

CSC Web Programming. Introduction to HTML CSC 242 - Web Programming Introduction to HTML Semantic Markup The purpose of HTML is to add meaning and structure to the content HTML is not intended for presentation, that is the job of CSS When marking

More information

Contact at Once Widget..5. Contact Us Widget...5 Contact Info Widget. 6 Dealership Contacts Widget. 6

Contact at Once Widget..5. Contact Us Widget...5 Contact Info Widget. 6 Dealership Contacts Widget. 6 Table of Contents Flexible Design Overview. 3 Selecting the Flex Design. 3 Widget Overview. 4 Configuring Widgets..5 Contact at Once Widget..5 Contact Us Widget...5 Contact Info Widget. 6 Dealership Contacts

More information

1) Introduction to HTML

1) Introduction to HTML 1) Introduction to HTML a) Two ways to Create a webpage (Hyper- Text Document): i) WYSIWYG: What You See Is What You Get: Drag- n- Drop tools like Microsoft Word and Adobe Dreamweaver i) Markup Language:

More information

Introduction to Microsoft Office PowerPoint 2010

Introduction to Microsoft Office PowerPoint 2010 Introduction to Microsoft Office PowerPoint 2010 TABLE OF CONTENTS Open PowerPoint 2010... 1 About the Editing Screen... 1 Create a Title Slide... 6 Save Your Presentation... 6 Create a New Slide... 7

More information

Preface 3. Typographical Conventions... 3 Feedback Introduction 5. Getting Familiar With Web Presence Builder... 6

Preface 3. Typographical Conventions... 3 Feedback Introduction 5. Getting Familiar With Web Presence Builder... 6 Parallels Panel Contents Preface 3 Typographical Conventions... 3 Feedback... 4 Introduction 5 Getting Familiar With Web Presence Builder... 6 Creating and Editing Websites 8 Importing Sites from SiteBuilder

More information

PowerPoint 2003: Basic Instructor s Edition

PowerPoint 2003: Basic Instructor s Edition PowerPoint 2003: Basic Instructor s Edition ILT Series COPYRIGHT Axzo Press. All rights reserved. No part of this work may be reproduced, transcribed, or used in any form or by any means graphic, electronic,

More information

HTML. LBSC 690: Jordan Boyd-Graber. October 1, LBSC 690: Jordan Boyd-Graber () HTML October 1, / 29

HTML. LBSC 690: Jordan Boyd-Graber. October 1, LBSC 690: Jordan Boyd-Graber () HTML October 1, / 29 HTML LBSC 690: Jordan Boyd-Graber October 1, 2012 LBSC 690: Jordan Boyd-Graber () HTML October 1, 2012 1 / 29 Goals Review Assignment 1 Assignment 2 and Midterm Hands on HTML LBSC 690: Jordan Boyd-Graber

More information

Adobe Dreamweaver CS5/6: Learning the Tools

Adobe Dreamweaver CS5/6: Learning the Tools Adobe Dreamweaver CS5/6: Learning the Tools Dreamweaver is an HTML (Hypertext Markup Language) editor, authoring tool, and Web site management tool. Dreamweaver is a WYSIWYG (what you see is what you get)

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

PowerPoint Spring 2002

PowerPoint Spring 2002 PowerPoint 2000 Spring 2002 Table of Contents I. INTRODUCTION... 1 II. GETTING STARTED... 1 A. Opening PowerPoint... 1 B. The Mouse Pointer... 1 C. Working with Text... 2 1. Windows Control Buttons...

More information

STD: XII VOLUME - I MARKS: 150

STD: XII VOLUME - I MARKS: 150 STD: XII VOLUME - I MARKS: 150 SUB: COMPUTER SCIENCE TIME: 3 HRS I. Choose the correct answer: 75 X 1 = 75 1. Which key is used to copy the selected text in the document? a) Ctrl + X b) Ctrl + V c) Ctrl

More information

Html basics Course Outline

Html basics Course Outline Html basics Course Outline Description Learn the essential skills you will need to create your web pages with HTML. Topics include: adding text any hyperlinks, images and backgrounds, lists, tables, and

More information

Chapter 4 A Hypertext Markup Language Primer

Chapter 4 A Hypertext Markup Language Primer Chapter 4 A Hypertext Markup Language Primer XHTML Mark Up with Tags Extensible Hypertext Markup Language Format Word/abbreviation in < > PAIR Singleton (not surround text) />

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

INFS 2150 / 7150 Intro to Web Development / HTML Programming

INFS 2150 / 7150 Intro to Web Development / HTML Programming XP Objectives INFS 2150 / 7150 Intro to Web Development / HTML Programming Designing a Web Page with Tables Create a text table Create a table using the , , and tags Create table headers

More information

Introduction to Microsoft Excel 2010

Introduction to Microsoft Excel 2010 Introduction to Microsoft Excel 2010 THE BASICS PAGE 02! What is Microsoft Excel?! Important Microsoft Excel Terms! Opening Microsoft Excel 2010! The Title Bar! Page View, Zoom, and Sheets MENUS...PAGE

More information

Creating Web Pages with HTML-Level III Tutorials HTML 6.01

Creating Web Pages with HTML-Level III Tutorials HTML 6.01 Creating Web Pages with HTML-Levell Tutorials HTML 1.01 Tutorial 1 Developing a Basic Web Page Create a Web Page for Stephen DuM's Chemistry Classes Tutorial 2 Adding Hypertext Links to a Web Page Developing

More information

Impress Guide Chapter 1 Introducing Impress

Impress Guide Chapter 1 Introducing Impress Impress Guide Chapter 1 Introducing Impress This PDF is designed to be read onscreen, two pages at a time. If you want to print a copy, your PDF viewer should have an option for printing two pages on one

More information

UNIT 3 SECTION 1 Answer the following questions Q.1: What is an editor? editor editor Q.2: What do you understand by a web browser?

UNIT 3 SECTION 1 Answer the following questions Q.1: What is an editor? editor editor Q.2: What do you understand by a web browser? UNIT 3 SECTION 1 Answer the following questions Q.1: What is an editor? A 1: A text editor is a program that helps you write plain text (without any formatting) and save it to a file. A good example is

More information

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1

Make a Website. A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Make a Website A complex guide to building a website through continuing the fundamentals of HTML & CSS. Created by Michael Parekh 1 Overview Course outcome: You'll build four simple websites using web

More information

Microsoft PowerPoint 2007 Beginning

Microsoft PowerPoint 2007 Beginning Microsoft PowerPoint 2007 Beginning Educational Technology Center PowerPoint Presentations on the Web... 2 Starting PowerPoint... 2 Opening a Presentation... 2 Microsoft Office Button... 3 Quick Access

More information

Reference Services Division Presents. Microsoft Word 2

Reference Services Division Presents. Microsoft Word 2 Reference Services Division Presents Microsoft Word 2 This handout covers the latest Microsoft Word 2010. This handout includes instructions for the tasks we will be covering in class. Basic Tasks Review

More information

PowerPoint X. 1. The Project Gallery window with the PowerPoint presentation icon already selected. 2. Click on OK.

PowerPoint X. 1. The Project Gallery window with the PowerPoint presentation icon already selected. 2. Click on OK. PowerPoint X Launching PowerPointX 1. Start PowerPointX by clicking on the PowerPoint icon in the dock or finding it in the hard drive in the Applications folder under Microsoft PowerPoint. PowerPoint

More information

HTML and CSS COURSE SYLLABUS

HTML and CSS COURSE SYLLABUS HTML and CSS COURSE SYLLABUS Overview: HTML and CSS go hand in hand for developing flexible, attractively and user friendly websites. HTML (Hyper Text Markup Language) is used to show content on the page

More information

Learning Microsoft PowerPoint Contents. Chapter 1: Getting Started With PowerPoint

Learning Microsoft PowerPoint Contents. Chapter 1: Getting Started With PowerPoint Contents Chapter 1: Getting Started With PowerPoint Starting a Presentation...1-1 The PowerPoint Screen Sections...1-2 The Backstage View... 1-2 The Quick Access Toolbar... 1-3 The Ribbon... 1-4 Zoom Controls...1-6

More information

COMSC-030 Web Site Development- Part 1. Part-Time Instructor: Joenil Mistal

COMSC-030 Web Site Development- Part 1. Part-Time Instructor: Joenil Mistal COMSC-030 Web Site Development- Part 1 Part-Time Instructor: Joenil Mistal Chapter 9 9 Working with Tables Are you looking for a method to organize data on a page? Need a way to control our page layout?

More information

CSE 3. Marking Up with HTML. Comics Updates Shortcut(s)/Tip(s) of the Day Google Earth/Google Maps ssh Anti-Spyware

CSE 3. Marking Up with HTML. Comics Updates Shortcut(s)/Tip(s) of the Day Google Earth/Google Maps ssh Anti-Spyware CSE 3 Comics Updates Shortcut(s)/Tip(s) of the Day Google Earth/Google Maps ssh Anti-Spyware 1-1 4-1 Chapter 4: Marking Up With HTML: A Hypertext Markup Language Primer Fluency with Information Technology

More information

How to lay out a web page with CSS

How to lay out a web page with CSS How to lay out a web page with CSS You can use table design features in Adobe Dreamweaver CS3 to create a simple page layout. However, a more powerful technique is to use Cascading Style Sheets (CSS).

More information

GRADE- IX COMPUTERS CLASS WORK

GRADE- IX COMPUTERS CLASS WORK 2018-19 GRADE- IX COMPUTERS CLASS WORK MR. YOUSUF VALI SRI CHAITANYA TECHNO SCHOOL JUBILEEHILLS SRI CHAITANYA TECHNO SCHOOL JUBILEEHILLS GRADE-IX CHAPTER-1 1. COMPUTER ETHICS, CRIME & SECURITY I.BLANKS:

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

ICT IGCSE Practical Revision Presentation Web Authoring

ICT IGCSE Practical Revision Presentation Web Authoring 21.1 Web Development Layers 21.2 Create a Web Page Chapter 21: 21.3 Use Stylesheets 21.4 Test and Publish a Website Web Development Layers Presentation Layer Content layer: Behaviour layer Chapter 21:

More information

Exercise 1: Basic HTML and JavaScript

Exercise 1: Basic HTML and JavaScript Exercise 1: Basic HTML and JavaScript Question 1: Table Create HTML markup that produces the table as shown in Figure 1. Figure 1 Question 2: Spacing Spacing can be added using CellSpacing and CellPadding

More information

1. The basic building block of an HTML document is called a(n) a. tag. b. element. c. attribute. d. container. Answer: b Page 5

1. The basic building block of an HTML document is called a(n) a. tag. b. element. c. attribute. d. container. Answer: b Page 5 Name Date Final Exam Prep Questions Worksheet #1 1. The basic building block of an HTML document is called a(n) a. tag. b. element. c. attribute. d. container. Answer: b Page 5 2. Which of the following

More information