0% found this document useful (0 votes)
86 views22 pages

It Practice Paper 1 To 5

The document is a practice paper for 12th Science Information Technology, consisting of various sections including fill in the blanks, true or false questions, multiple choice questions, and programming tasks. It covers topics such as CSS, SEO, JavaScript, cloud computing, and e-commerce. The paper is structured to assess students' understanding of key concepts and practical skills in information technology.

Uploaded by

durgeshgatkal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
86 views22 pages

It Practice Paper 1 To 5

The document is a practice paper for 12th Science Information Technology, consisting of various sections including fill in the blanks, true or false questions, multiple choice questions, and programming tasks. It covers topics such as CSS, SEO, JavaScript, cloud computing, and e-commerce. The paper is structured to assess students' understanding of key concepts and practical skills in information technology.

Uploaded by

durgeshgatkal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 22

12th Science – Information Technology

Practice paper -1

Q.1 Fill in the Blanks. [10 marks]


1. In CSS, _______ property is used to set position for an element.
2. <meta http-equiv="________">, page session will get expire at specified date and time.
3. Title content should be upto to ______ characters.
4. The _______ hat strategies include duplicate content.
5. The ________ even handler occurs when an element gets focus.
6. The __________ is a JavaScript based open source front end web framework
developed for single page application.
7. The __________ computing is about creating a natural, human like interaction
including using the abilities to interpret speech and respond to it.
8. 5G Technologies may use a variety of _________.
9. The _______ method in PHP is used to check whether variable has value or not.
10. E-wallet is a type of __________ account in which a user can store his/her money for
any future online transaction.

Q.2 True or False. [10 marks]


1. Preload attribute specifies if and how the author thinks the video should be loaded
when the web page loads.
2. Backlinks are links on one website that, when clicked, take the user to another site.
3. Iteration refers to the execution of statement of code for a fixed number of times or till
the condition is satisfied.
4. In Client side scripting, the script resides on client computer and that can run on the
client.
5. Private cloud is accessible to selected public rather than general public.
6. In PHP, to check data type of variable var_put() method is used.
7. You need to pay for use of PHP.
8. Associative array contains one or more arrays.
9. The G2E is the internal part of G2G sector.
10. The After sales phase consists of Invoice and Payment.

Q.3 Multiple Choice Questions (Select one correct Answer) [10 marks]
1. The _________ attribute of <input> tag specifies that an input field is read only.
a) required b) autofocus c) readonly d) disabled
2. The ID selector is written with the _________ character followed by the id name.
a) Period(.) b) asterisks(*) c) hash(#) d) copyright
3. If it is singular tag for e.g. <img> it should be self enclosed like _________.
a) <img> b) </img> c) <img/> d) </img/>
4. The _______ SEO techniques that search engines recommends as apart of good design.
a) White Hat b) Black Hat c) On-page d) Off-Page
5. The ________ method of string object removes whitespace from both sides of a string.
a) substr() b) trim() c) indexOf() d) substring()
6. The ________ property is useful for getting html element and changing its content.
a) write b)URL c) innerHTML d) writeln
7. PaaS stand for __________.
a) Platform as a Service b) Platform as a self
c) Platform as a Secure d) Platform as a Section
8. The __________ is a variable which can hold more than one value at a time.
a) Array b) Method c) Objects d) Constant
9. The ________ function joins two or more array and returns a copy of joined array.
a) add() b) concat() c) join() d) copy()
10. Warranty and After Sales steps are performed in _______ phase of Trade Cycle.
a) PreSales b) Execution c) After Sales d) Settlement

Q.4 Multiple Choice Questions (Select two correct Answers) [20 marks]
1. Following are the values of Display properties _______.
a) Middle b) Inline c) Block d) top e) bottom
2. Following are the values of border property
a) solid b) groove c) gentle d) strike e) underline
3. Following are the attributes of <input type="image">
a) width b) min c) length d) height e) max
4. SEO audit tool are ________ and ________.
a) SEOptimer b) SEOptimizer c) Seomator d) SEO Auditor
e) Seomatize
5. Following are the methods of String object
a) charAt() b) len() c) length() d) trim() e) blur()
6. Following properties of Number Object returns the largest minimum and maximum
value _________.
a) MIN_VALUE b) MAX_VALUE c) LOW_VALUE d) toUpperCase()
e) sqrt()
7. Examples of IaaS are _________.
a) AmaZon Web Services b) Microsoft Azure VM
c) GitHub d) Google G Suit e) SAP
8. The ________ method has limit on the amount of information to send whereas ______
method has no limit on the amount of information to send.
a) $_POST b) method c) GET d) POST e) $_GET
9. Variables are used for storing values such as _________ and __________.
a) Methods b) Numeric values
c) Character Strings d) Functions e) Loops
10. Following are the phases of Trade Cycle __________.
a) Pre-sales b) EDI c) Trade Cycle d) Execution
e) Warranty

Q.5 Multiple Choice Questions (Select three correct Answers) [6 marks]


1. Type of Selectors used in CSS are __________
a) Group b) grouping c) universal
d) block e) class f) static
2. Features of JavaScript are __________
a) Need of special software
b) It can handle date and time effectively
c) It cannot create new functions
d) It can creates new functions
e) It supports event based programming
f) It is platform dependent scripting language

Q.6 Match the columns [4 marks]


A B
a) <input type = "date"> 1. It acts as a temporary label
b) <input type = "tel"> 2. Specifies input field is disabled
c) Disabled 3. Defines a date picker
d) Placeholder 4. Defines input field that contains telephone
number

Q.7 Answer the following (any 5) [10 marks]


1. State the types of SEO.
2. Explain White Hat technique.
3. Explain advantages of IoT.
4. Write a note on 5G.
5. Explain benefits of Cloud Computing.
6. Explain G2E services.
7. Explain Digital Signature as security measure in E-Commerce.
8. Describe process of encryption.
Q.8 A. Write Program (any 1) [5 marks]
1. Write HTML code for displaying form with title “Employee Login”. It should have
provision to take employee name, data of joining, and department. Use checkboxes for
selecting departments as HR, purchase, Sales. Buttons should be provided for
submitting and clearing data.
2. Write HTML5 code with CSS as follows:
a) Create ordered list with names of tourist cities.
b) Create unordered list with tourist places of those cities.
c) Divide the list into two sections left and right by using CSS.

Q.8 B. Write Program (any 1) [5


marks]
1. Write event driven javaScript code when user clicks on button, it will display sum of
even numbers from 1 to 100.
2. Write event driven javaScript code to calculate the average of three numbers. Accept
the numbers from user.
12th Science – Information Technology
Practice Paper – 2

Q.1 Fill in the Blanks. [10 marks]


1. The ________ property is used to control the font of the text in the webpage.
2. The _________ can control the layout of multiple web pages all at once.
3. The ____________ hat strategies include duplicate content.
4. The _________ service allows you to save, organize and share bookmarks with other
users.
5. The ________ method of string object converts a string to upper case.
6. The _______ method of math object returns the highest valued number in a list of
numbers.
7. The __________ provides automated and scalable environments.
8. GitHub is an example of _______.
9. The ________ is an array of variables passed via the URL parameters.
10. The ______ is the internal part of G2G sector.

Q.2 True or False. [10 marks]


1. <input type = “week”> defines the control for entering a week only.
2. Title content should up to 80 characters.
3. Continue statement is used to skip statement block and take the control at the
beginning for next iteration.
4. confirm() method of window object displays the confirm dialog box containing
message with ok and cancel button.
5. Cloud computing solution are expensive that the actual overall infrastructure.
6. str_word_count() function counts the number of words in a string.
7. Array index always starts with zero.
8. Variables can store data of different types.
9. E-wallet is an electronic card which is used for transactions made online through a
computer or smartphone.
10. The G2G refers to the interaction between different government departments,
organization and agencies.

Q.3 Multiple Choice Questions (Select One Correct Answer) [10 marks]
1. Using _____ attribute of <audio> tag the audio will start playing as soon as it is ready.
a) autoplay b) loop c) muted d) controls
2. Absolute positioning property positions the element at the specified coordinates
relative to screen _________ corner.
a) Top-left b) Top-right c) Top-bottom d) Top-corner
3. The _________ is concern with White Hat SEO.
a) Well-labeled images b) duplicate content
c) Invisible text d) stuffed keyword
4. On-Page SEO is concerned with information that is displayed to the _______.
a) end user b) server user c) server program d) developer
5. The way in which HTML document content is accessed and modified is called as
_________.
a) Design Object Model b) Develop Object Model
c) Do Object Model d) Document Object Model
6. The_______ property of Array object reflects number of elements in array.
a) index b) length c) NaN d) Value
7. IaaS stand for __________.
a) Infrastructure as a Service b) Infrastructure as a self
c) Infrastructure as a Secure d) Infrastructure as a Section
8. The _______ arrays are the arrays with named keys.
a) Indexed b) Associative c) Dimensional d) Normal
9. The _______ arrays are arrays containing one or more arrays.
a) Multidimensional b) indexed
c) Associative d) Numbered
10. The _________ Commerce is a subset of electronic commerce that involves social
media like Facebook, Instagram and Twitter.
a) Local b) Divisional c) National d) Social

Q.4 Multiple Choice Questions (Select Two Answers) [20 marks]


1. Charset attribute of tag use _________ for Indian characters and _________ for
Chinese character.
a) UTF-8 b) Big-5 c) UTF-2 d) Big-B e) UEFT-8
2. Following are the values of type attribute of <ol> tag ________.
a) i b) 1 c) 5 d) z e) T
3. A CSS rule set contains ___________ and ____________ .
a) value b) selector c) declaration block
d) property e) attribute
4. The page content optimization can be done by using keywords in _________ and
______.
a) <front> b) <title> c) <hr> d) <meta> e) <input>
5. Following methods of Date object returns the number of milliseconds.
a) getDay() b) getDate() c) getTime() d) now() e) getMonth()
6. Following are the event handlers in JavaScript __________.
a) onsubmit b) onwrite c) onchange d) onwriteln e) status()
7. Primary service models of cloud computing are ______.
a) SaaS b) PaaS c) FaaS d) DaaS e) CaaS
8. PHP is compatible with following servers.
a) Unix b) XAMMP c) Linux d) Apache e) IIG
9. Form data can be submitted by ______ or ______ method.
a) Return b) forward c) GET d) POST e) server
10. Encryption consists of two processes ________ and ________.
a) encryption b) signature c) decryption d) digitization e) security
Q.5 Multiple Choice Questions (Select Three Correct Answers) [6 marks]
1. Select the correct style properties
a) Back-color d) align-margin
b) font-family e) font-size
c) align-ment f) background-color
2. Programming Languages for server side programming are:
a) PHP d) Python
b) Windows e) Unix
c) Linux f) Java and JSP

Q.6 Match the columns [4 marks]


A B
a) <ol> 1. Defines definitions list
b) <li> 2. To define unordered list
c) <dt> 3. Specifies definition term
d) <dl> 4. Defines ordered list
5. Specifies list items

Q.7 Answer the following (any 5) [10 marks]


1. Explain any two page content optimization points.
2. State the types of SEO.
3. Explain SaaS.
4. Explain benefits of Cloud Computing.
5. Explain PaaS
6. Explain M-Commerce.
7. Which are the 4 phases of ECommerce?
8. What is Trade cycle? What is aftersales phase of Trade cycle?
Q.8.A. Write HTML Program (any 1) [5 marks]
1. Write html program to insert inline frame on web page. Use xyz.html file as a source
for inline frame. Size of inline frame should be 100x100 pizels.
2. Write html program to display ‘Maharashtra State Board” in blue color and font size
30 pixels using internal CSS. Give background colour yellow for the web page.

Q.8.B. Write Javascript Program (any 1) [5 marks]


1. Write an event driven JavaScript code to print division of 2 numbers. Accept inputs
from user.
2. Write an event driven JavaScript code to print multiplication of 2 numbers. Accept
inputs from user.
12th Science – Information Technology
Practice paper – 3
Q.1 Fill in the Blanks. [10 marks]
1. <input type = "_______"> defines a field for entering a URL.
2. The ________ attribute specifies extra information about clickable area.
3. SEO ______ are the important words and phrases related to the developed website
content.
4. The _______ SEO is concerned with website-website relationship.
5. The _________ method of date object returns the hour.
6. The ________ is a JavaScript based framework for building interactive user interface.
7. Artificial Intelligence helps to ________ human errors.
8. In ________ all the services and supporting infrastructure are shared across multiple
users.
9. An ________ stores multiple values in single variable.
10. The ______ consists of many services exchange between business sectors and
government.

Q.2 True or False. [10 marks]


1. <input type = "URL"> defines a field for entering a URL.
2. SEO stands for Search Engine Optical.
3. Events are the actions done by the user or an application that occurs on the web page.
4. alert() method of window object displays the alert box containing message with ok
button.
5. In Private cloud all the services and supporting infrastructure is shared among across
the multiple users.
6. You need to pay for use of PHP.
7. For each loop works only on arrays.
8. substr_count() function counts the number of times a substring occurs in a string.
9. Decryption converts Cipher text into plain text.
10. Execution phase consists of two steps like search and negotiate.
Q.3 Multiple Choice Questions (Select one correct Answer) [10 marks]
1. The ________ frames are often used in online advertising.
a) Inline b) Internal c) External d) Embedded
2. The __________ CSS is used to apply CSS on single line or element.
a) Internal b) External c) Embedded d) Inline
3. Title contents should be up to ____ characters.
a) 60 b) 65 c) 50 d) 70
4. SEO stands for ___________.
a) Search Engine Optimizing b) Search Engine Option
c) Search Engine Organizing d) Search Engine Optimization
5. JavaScript has a built-in multiway decision statement known as ______
a) Condition b) Switch c) Break d) Continue
6. The _______ object is used to store or manipulate text.
a) Math b) Date c) Number d) String
7. Chatbot is an example of _____________.
a) Digital Assistance b) Neural network
c) Fifth Generation d) 5G
8. PHP stores all ______ variables in an array called $GLOBALS[index].
a) local b) global c) static d) within
9. The _________ is a symbol or name that stands for a value.
a) Method b) condition c) variable d) value
10. The _________ is a type of electronic card which is used for transactions made online
through a computer or a smartphone.
a) E-Wallets b) E-book c) E-Pocket d) E-Draw

Q.4 Multiple Choice Questions (Select Two Correct Answers) [20 marks]
1. Following are the values of type attribute are <ol> tag ________.
a) i b) 1 c) 5 d) z e) T
2. Default range of range control is _______ to _______.
a) 0 b)100 c) 120 d) 200 e) 10
3. Examples of nested list are _______.
a) double list b) single level list
c) multi level list d) grouping list e) order level list
4. The page content optimization can be done by using keywords in _________ and
______
a) <font> b) <title> c) <hr> d) <meta> e) <input>
5. Following are the properties of Array object in JavaScript __________
a) index b) isFixed c) concat d) length e) lastindex
6. Following properties of Number Object returns the largest minimum and maximum
value ______
a) MIN_VALUE b) MAX_VALUE
c) LOW_VALUE d) toUpperCase() e) sqrt()
7. Examples of SaaS are ______
a) GitHub b) GCE c) Dropbox d) AWS
e) Microsoft Azure VM
8. PHP runs on following platforms.
a) Linux b) Excel c) Word d) Windows
e) PowerPoint
9. Following are the data types used in PHP ______.
a) Boolean b) text c) Number d) Array e) Memo
10. The execution phase consists of __________and ________.
a) Order b) Delivery c) PreSales d) Execution
e) Negotiate

Q.5 Multiple Choice Questions (Select three correct Answers) [6 marks]


1. Following are the types of CSS _________.
a) Inline b) Internal c) Object d) External
e) Multiple f) Multilevel
2. Features of PHP are ________.
a) Difficult b) Simple c) Error creating d) Platform Independent
e) Error Reporting f) Platform Dependent
Q.6 Match the columns [4 marks]
A B
a) M-Commerce 1. Form of Ecommerce that involves social media
b) Social Commerce 2. Electronic interchange of business information
c) EDI 3. Buying and selling of goods and services through smart
phone
d) Trade Cycle 4. Presales & Execution

Q.7 Answer the following (any 5) [10 marks]


1. Explain how you could optimize image.
2. Explain White Hat technique.
3. Explain IaaS.
4. What is AI?
5. Explain advantages of IoT.
6. Explain Digital Signature as security measure in E-Commerce.
7. Explain Encryption as a security measure in E-Commerce.
8. Write any 4 advantages of E-Governance.

Q.8. A. Write HTML Program (any 1) [5 marks]


1. Write a program using html with following CSS specifications
a) The page should contain heading as XII IT in blue color.
b) Create Unordered list of topics in IT.
c) Change the font to Comic Sans.
2. Write Program using HTML with following CSS specifications:
a) The background color of the company name should be in yellow.
b) The text color of the company name should be red.
c) The heading should be large with font "Times New Roman".
d) The description of the company should be displayed in orange color in a paragraph.

Q.8. B. Write Javascript Program (any 1) [5 marks]


1. Write JavaScript code to print square of a accepted number.
2. Write JavaScript code to print multiplication of 2 numbers.
12th Science - Information Technology
Practice Paper – 4

Q.1 Fill in the Blanks. [10 marks]


1. The _______ positioning property sets an element in a specific location and it is not
affected by the flow of the page.
2. The __________ will not be displayed on the web page.
3. One of the optimization factor to improve image is by using _____ attribute.
4. SEO social bookmarking is very useful for ________ SEO optimization.
5. The _________ method of array object joins two or more arrays and returns a copy of
the joined arrays.
6. The _________ method of string object returns the character at the specified position.
7. The _________ imitate the brain array of interconnected neurons.
8. The _______ enables organization to focus on development without having a worry
about underlying infrastructure.
9. The ______ object helps to connect PHP code with any database server.
10. EDI is _________ exchange of information.

Q.2 True or False. [10 marks]


1. Image maps are of four types.
2. Well-labeled images are part of White Hat strategies.
3. For loop combines initializing, condition and loop iteration in single statement.
4. PHP, ASP.net, etc. are server side scripting languages.
5. In SaaS, a service provider delivers software and application through the internet.
6. strpos() function returns part of a string.
7. To check data type of variable var_put() method is used.
8. PHP is case sensitive only at the time of variable declaration.
9. C2C type of E-commerce deals with Business and Customer.
10. Encryption includes passwords, payment information and other personal information
that should be considered private.
Q.3 Multiple Choice Questions (Select One Correct Answer) [10 marks]
1. AAC stands for _______.
a) Auto Audio coding b) Arrange Audio Coding
c) Advanced Audio Coding d) Advanced Arrange Coding
2. The ___________ keeps the element float on right side of the container.
a) float: right b) float:left c) float:none d) float:top
3. SEO stands for ___________.
a) Search Engine Optimizing b) Search Engine Option
c) Search Engine Organizing d) Search Engine Optimization
4. The __________ is used to analyze the website health.
a) SEO Audit b) SEM c) SMO d) Index
5. To create an array in JavaScript the correct method is ___________.
a) var a = new[“one”, “two”, “three”];
b) var d = new(“one”, “two”, “three”);
c) var arr = ["One", "Two", "Three"];
d) var d = ((“One”), (“Two”), (“Three”));
6. The _________ method set the minutes of a date object.
a) setMinutes() b) getDay() c) now() d) setHours()
7. IaaS stand for __________.
a) Infrastructure as a Service b) Infrastructure as a self
c) Infrastructure as a Secure d) Infrastructure as a Section
8. The _______ function converts the first character of each word in a string to upper
case.
a) substr() b) strtolower() c) trim() d) ucwords()
9. The form data is sent with the _______ method.
a) HTTP POST b) FTP POST c) STP POST d) SMPT POST
10. License renewals and paying tax can be done through _________ type of E-
Governance.
a) G2E b) G2G c) G2C d) G2B
Q.4 Multiple Choice Questions (Select Two Correct Answers) [20 marks]
1. List item starts with <li> tag in ____________ and __________ tags.
a) <dd> b) <dt> c) <ol> d) <ul> e) <dl>
2. Common audio formats are ______________.
a) .acc b) .mp3 c) .mp4 d) .webm e) .mkv
3. Following are the values of http-equiv attribute of tag.
a) month b) refresh c) images d) expires e) week
4. Other factors to rank the website higher are ________ and _________.
a) Desktop friendly b) Speed of the website
c) Creating robots.txt d) No backlinks e) No external links
5. The built-in Math object includes mathematical ___________ and _________.
a) constant b) function c) objects d) values e) numbers
6. Following methods are used to create Array variable in JavaScript
a) var a = "One, two", b) var a["One","Two","Three"];
c) array a = ("One", "two"), d) var a = new Array("One","Two","Three");
e) var a = ["One","Two","Three"];
7. Examples of SaaS are __________.
a) GitHub b) GCE c) Dropbox d) AWS
e) Microsoft Azure VM
8. Form data can be submitted by ______ or ______ method.
a) Return b) forward c) GET d) POST e) server
9. Comments are of _______ and _____ type.
a) single line b) no line c) two line d) multiline e) paragraph
10. The settlement phase consists of _______ and __________.
a) Payment b) Delivery c) Pre-Sales d) Execution e) Invoice

Q.5. Multiple Choice Questions (Select three correct Answers) [6 marks]


1. Valid values of shape attribute of <area> tag are __________.
a) rectangle d) rect b) circle e) poly
c) polygon f) triangle
2. PHP runs on following platforms.
a) Systems d) Excel b) Words e) Unix
c) Linux f) Windows
Q.6 Match the columns [4 marks]
A B
a) Credit cards 1. Money sent from one bank to another
b) Mobile payments 2. Type of prepaid account in which user can store money
c) Bank Transfer 3. Cards used by customers to pay online
d) E-Wallets 4. Forms of E-Commerce
Offers quick solution for customers to purchase on e-
5.
commerce websites.
Q.7 Answer the following (any 5) [10 marks]
1. Define SEO.
2. Explain Keyword Search.
3. Explain Neural Networks.
4. What is Cloud Computing?
5. Explain SaaS.
6. Explain Encryption as a security measure in ECommerce.
7. What are the disadvantages of E-Commerce (any 4)?
8. What is E-governance.
Q.8.A. Write HTML Program (any 1) [5 marks]
1. Design a personal information form in html that accept Name, age, address, current
status as Working or Non-Working and Educational Qualification. Buttons should be
provided for clearing and submitting data.
2. Write html program to display Web designing in italic format and having underline
using internal CSS. Add any two sentences about web designing in green color.
Q.8.B. Write Javascript Program (any 1) [5 marks]
1. Write an event driven JavaScript program to swap user entered two numbers.
2. Write an event driven JavaScript program to print area of triangle. Accept inputs from
user.
12th Science – Information Technology
Practice Paper - 5

Q.1 Fill in the Blanks. [10 marks]


1. Using _______ attribute of <audio> tag, audio will start playing as soon as it is ready.
2. External Style Sheet uses ____________ tag on every page.
3. Title content should be upto to ______ characters.
4. The _______ deals with enhancing the websites ranking, using interactive
communities.
5. The ________ method of math object returns the lowest valued number in a list of
numbers.
6. The _________ method of window object removes focus from the current window.
7. GitHub is an example of _______.
8. AI stands for _____________.
9. The ________ are specified after the function name, inside the parentheses.
10. The ______ consists of many services exchange between business sectors and
government.

Q.2 True or False. [10 marks]


1. Text, radio, checkbox, etc. are the controls used to collect user inputs.
2. Backlinks are website links that are stored for future references.
3. In Client side scripting, the script resides on client computer and that can run on the
client.
4. For loop combines initializing, condition and loop iteration in single statement.
5. Cloud computing solutions are more portable.
6. Cookies store visited page on browser to optimize search.
7. PHP runs on client side.
8. A variable name can contain only alphanumeric characters and underscores.
9. Encryption is of two types Symmetric and Asymmetric.
10. Reviewing salary payment records, applying for leave is the example of G2C.
Q.3 Multiple Choice Questions (Select one correct Answer) [10 marks]
1. The class name should not start with a _______.
a) textalign b) character c) number d) special symbol
2. Absolute positioning property positions the element at the specified coordinates
relative to screen _____ corner.
a) Top-left b) Top-right c) Top-bottom d) Top-corner
3. SEM stands for ______________.
a) Search Engine Marketing b) Search Engine Manager
c) Search Engine Organizing d) Search Engine Optimization
4. The ________ SEO is concerned with information that is displayed to the end user.
a) On-page b) Off-Page c) White Hat d) Black Hat
5. The ________ property of Number object returns the minimum value.
a) MAX_VALUE b) NaN
c) MIN_VALUE d) Fixed
6. The _____ are the actions done by users or an application that occurs on the webpage.
a) Events b) Methods c) Object d) Functions
7. The __________ imitates the brains array of interconnected neurons.
a) Machine learning b) Neural network
c) Deep learning d) Computer vision
8. The _________ arrays are arrays containing one or more arrays.
a) Multidimensional b) indexed
c) Associative d) Numbered
9. The _______ function converts the string to lowercase.
a) substr() b) strtolower() c) trim() d) ucwords()
10. Online auction is example of _______ model.
a) C2B b) B2C c) B2B d) C2C

Q.4 Multiple Choice Questions (Select Two Correct Answers) [20 marks]
1. Auto complete attribute of <input> tag has ________ and ______ values.
a) on b) off c) start d) stop e) begin
2. To set the width and height of video following attributes of <video> tag are used:
a) top b) bottom c) width d) height e) middle
3. List item starts with <li> tag in _______ and _______ tags.
a) <dd> b) <dt> c) <ol> d) <ul> d) <dl>
4. Social Media Optimization deals with enhancing the websites ranking using ________
and _______.
a) Blogs b) E-commerce website
c) Facebook d) Wikipedia e) Banking
5. Following are the methods of Array object in JavaScript __________.
a) index b) length c) forEach() d) isArray() e) isNumber()
6. There are two types of Scripting _______.
a) Server side b) My side c) Browser side d) Client side
e) Media side
7. Primary service models of cloud computing are ______.
a) SaaS b) PaaS c) FaaS d) DaaS e) CaaS
8. A variable starts with the _____ sign followed by _____ of the variable.
a) $ b) # c) name d) value e) =
9. Control structures in PHP are ________.
a) for b) if statement c) for each d) if else statement
e) loop
10. Following are forms of E-Commerce.-
a) EDI b) E-Governance c) M-Governance d) M-Commerce
e) Social Commerce

Q.5 Multiple Choice Questions (Select Three Correct Answers) [6 marks]


1. Following are the valid CSS properties _____.
a) mg-color d) background-image
b) bg-color e) background-color
c) color f) fg-color
2. Methods of Document Object Model are __________.
a) write() d) head
b) getElementById() e) SRC
c) URL f) writeln()
Q.6 Match the columns [4 marks]
A B
a) Universal Selector 1. It indicates the HTML element you want to style
b) Selector 2. specifies regular expression to check input values
c) Pattern 3. Defines a week control
d) <input type=“range”> 4. Defines a range control
5. Used as wild character
Q.7 Answer the Following (any 5) [10 marks]
1. Explain White Hat technique.
2. Define SEO
3. What is Machine Learning and Deep Learning?
4. List the models of Cloud Computing.
5. Explain IaaS.
6. Explain E-wallets in short.
7. What is E-Governance.
8. Which are the 4 phases of E-Commerce?
Q.8.A. Write HTML Program (any 1) [5 marks]
1. Write html code to display a text “World is Beautiful” having font size 35, spacing
between the letters using CSS.
2. Write html program to create a form to accept students roll no (in number format),
Unit test marks (maximum 25 marks), Terminal exam marks (maximum 50 marks).
Include the name of the Subject teacher. Display Submit and Reset buttons.
Q.8.B. Write Javascript Program (any 1) [5 marks]
1. Write JavaScript code to accept a number and display the cube of a given number
when mouse is placed over button.
2. Write JavaScript code to print square of accepted number.

You might also like