You are on page 1of 4

SIR C R REDDY COLLEGE FOR WOMEN, ELURU

Class : III B.Com (CA) section 2 Date : 14-03-2022


Subject : Web technologies
QUIZ

1) The latest HTML standard is


HTML 5.0
2) HTML stands for?
Hypertext Markup Language
3) HTML is a subset of
SGML
4) Which of the following tag is used to mark a beginning of paragraph?
<P>
5) Correct HTML tag for the largest heading is
<h6>
6) The attributes of <form> tag
Name, method, action
7) Web pages starts with which of the following tag?
<html>
8) How can you open a link in a new browser window?
<a href=”url” target=”_blank”>
9) The tag used to create a new list item and also include a hyperlink is
<LI>
10) Which of the tags is used to creates a number list?
<OL> and <LI>
11) What i s the correct HTML for adding a background color?
<body bgcolor = "yellow">
12) Main container for <TR>, <TD> and <TH> is
<TABLE>
13) DOM stands for
Document Object Model
14) Which tag is used to break the line?
<BR>
15) Syntax of Comment
<!-- 
16) Syntax of <font> tag
<font face=”string” size=”n” color=”string”>
17) How to create a hyperlink
<a href=”url” target=”string”>
18) How to insert an image
<img src=”url” height=m width=n>
19) Which tag is used to divide the browser screen into 2 or more parts
frames
20) Inside which HTML element do we put the JavaScript code?
<script>
21) How do you write “Hello” in alert box?
Alert(“hello”)
22) How do you create a function in javaScript?
Function fname(args)
{ code here }
23) How do you refer an external javascript file?
<script src="myScript.js"></script>
24) Extension of javascript file
js
25) Function is Used To Parse a String To Integer
parseInt()
26) How to initialize an array in JavaScript?
var emp=new Array("Jai","Vijay","Smith");
var emp=["Sonoo","Vimal","Ratan"];
27) What will be the command to print the number of characters in the string “crrcw”?
“Crrcw”.length
28) syntax to add the external stylesheet in CSS ?
<link rel="stylesheet" href="mystyle.css">
29) Which HTML tag is used to define an internal style sheet?
<style>
30) Which HTML attribute is used to define inline styles?
style
31) CSS syntax?
selector{property:value;……..}
32) How do you add a background color for all <h1> elements?
h1{background-color :red}
33) Which property is used to change the font of an element?
font-family
34) How do you select an element with id 'demo'?
#demo 
35) How do you select elements with class name 'test'?
.test 
36) How do you display hyperlinks without an underline?
a {text-decoration:none;}  
37) How to access an element in HTML DOM ?
document.getElementById()
document.getElementByName()
38) What is the event name that fires when a user changes the value of an object ?
onChange
39) How to declare a variable in Javascript
Var varname;
40) How to create a regular expression?
Var re = new RegExp(pattern);
SIR C R REDDY COLLEGE FOR WOMEN, ELURU
Class : III B.Sc (MPCS) Section 1 Date : 15-03-2022
Subject : DBMS
QUIZ
1) What is a database?
It is defined as an organized collection of data or information for easy access,
updating, and management in a computer.
2) Which type of data can be stored in the database?
Image oriented data, Text, Data in the form of audio or video
3) Example of RDBMS softwares
Oracle, MySQL,DB2, SQL Server
4) Which is known as a set of entities of the same type that share same properties,
or attributes?
Entity set
5) What is information about data called?
Information about data is known as Metadata. Metadata describes the data in
detail by providing additional information like type, length of the data, etc.
Metadata helps the user to understand the data.
6) The ability to query data, as well as insert, delete, and alter tuples, is offered by
___________ Language
DML
7)  ______________ is a set of one or more attributes taken collectively to uniquely
identify a record.
Primary key
8) Which command is used to remove a relation from an SQL?
DROP
9) Procedural language among the following is _________ (C)
A)DRC B) TRC C) Relational Alzebra D) Query Language
10) What is the function of the following command? Delete from r where P;
In the command the P gives condition to delete a particular tuple.
11) Which SQL commands are used to manipulate Oracle Structures, including
tables?
DDL
12) What happens if a piece of data is stored in two places in the db?
Storage space is wasted & Changing the data in one spot will cause data
inconsistency
13) A command that lets you change one or more fields in a record is
Modify
14) In the relational model, relationships between relations or tables are created by using
Foreign keys
15) What is a tuple?
Row of a table
16) A ________ is a stored program that is attached to a table or a view
Trigger
17) _____________ SQL virtual table that is constructed from other tables?
View
18) Which symbol denote derived attributes.
Dashed ellipse
19) Which property describes various characteristics of an entity.
Attribute
20) ----------------------------is the minimal super key.
Candidate Key
21) Foreign Key can be null. TRUE/FALSE
TRUE
22) If left out, which command would cause an infinite loop to occur in a simple loop?
EXIT
23) Name any two System defined Exceptions
NO_DATA_FOUND, DUP_VAL_ON_INDEX, TOO_MANY_ROWS, ZERO_DIVIDE
24) Difference between Char and Varchar2
The char data type is used to store the character values. It is a fixed-length data type.
maximum length of 2000 bytes
The VarChar data type is used to store the character values. It is a variable-length data
type. maximum length of 4000 bytes
25) Use of Packages
Packages let you encapsulate logically related types, variables, constants,
subprograms, cursors, and exceptions in named PL/SQL modules.
26) ________ provide a way for your program to select multiple rows of data from the
database and then process each row individually.
Cursor
27) When the pre-defined exception TOO_MANY_ROWS is raised
SELECT INTO statement returns more than one row.
28) PL/SQL Exception message consists of
Type of Exception, An Error Code, A message
29) Which type of cursor is automatically declared by Oracle every time an SQL statement is
executed?
An Implicit Cursor
30) How many nested IF clauses can be included within an IF clause?
Any number

You might also like