It Final Ans
It Final Ans
(INFORMATION TECHNOLOGY)
4. In order to extract data from table using SQL, SELECT command is used.
6. Data is a raw and unorganized fact that requires to be processed to make it meaningful.
8. In table, the rowspan attribute specifies how many rows a cell should merge/span.
-Kundan Wadekar
Q.2 State True or False:
1. RAM is a permanent memory. – False
4. DBMS stands for Data Base Manipulation System. – False (Correct: Database
Management System)
5. Each student in a class has unique registration number is one-to-one relationship. – True
9. && is the logical operator used to join two or more conditions. – True
10. Software piracy is nothing but copyright violation of original work. – True
-Kundan Wadekar
(A) Printer
(B) Screen
(C) MICR
(D) Project
(A) Microsoft
(B) Oracle
(C) Nokia
(D) IBM
(A) PAN
(B) WAN
(C) MAN
(D) LAN
4. Each row in a relational database contains unique value and it is called as ________.
(A) Data
(B) Domain
(C) Field
(D) Tuple
(A) DELETE
(B) SELECT
(C) UPDATE
(D) INSERT
-Kundan Wadekar
Answer: (A) DELETE – is used to delete record in SQL.
(A) Counter = 1
(B) Counter == 1
(C) Counter != 1
(D) Counter++
(A) alert()
(B) document.write()
(C) document.print()
(D) prompt()
(A) HREF
(B) Target
(C) SRC
(D) Attribution
-Kundan Wadekar
10. ________ attempts to block the spread of computer attacks.
(A) Copyright
(B) Firewall
(C) Fair use
(D) Chatting
(A) ALU
(B) Disk Drive
(C) I/O Devices
(D) CU
(E) CD-ROM
(A) Windows
(B) Unix
(C) DOS
(D) Tally
(E) MS-PowerPoint
(A) Record
(B) Domain
(C) Field
(D) Row
(E) Value
-Kundan Wadekar
Answer: (A) Record, (D) Row – both represent a single table entry.
(A) DCL
(B) DOL
(C) DSL
(D) DOM
(E) DDL
(A) &&
(B) ||
(C) ##
(D) <>
(E) ++
(A) Submit
(B) Get
(C) Off
(D) On
(E) Post
(A) <header>
(B) <font>
(C) <aside>
(D) <body>
(E) </bold>
-Kundan Wadekar
Answer: (A) <header>, (C) <aside> – new semantic HTML5 elements.
Answer: (A) Copied software, (D) Software without license – are pirated software.
(A) Blockchain
(B) Encryption
(C) Big Data
(D) Firewall
(E) IoT
-Kundan Wadekar
(C) Server model
(D) Hierarchical model
(E) Security model
(F) Relational model
Answer: (A) Network model, (D) Hierarchical model, (F) Relational model – are data models.
(A) <caption>
(B) <data>
(C) <record>
(D) <tr>
(E) <insert>
(F) <table>
Answer: (A) <caption>, (D) <tr>, (F) <table> – used to create HTML tables.
Column A Answer
-Kundan Wadekar
Q.8A Html:- Match Scorecard
<!DOCTYPE html>
<html>
<head>
<title>Cricket Scoreboard</title>
</head>
<body>
<table border="1" cellspacing="0" cellpadding="10">
<tr>
<td rowspan="3"><b>India<br>357/1</b></td>
<td>R Shrma 141*</td>
</tr>
<tr>
<td>D Dhawan 95</td>
</tr>
<tr>
<td>Australia<br>S Watson 5</td>
</tr>
<tr>
<td>Over 43.3</td>
<td>S Watson 5</td>
</tr>
<tr>
<td colspan="2">To win: 2 run in 6.3 over</td>
</tr>
</table>
</body>
</html>
<form>
Username:
<input type="text" id="username"><br><br>
-Kundan Wadekar
Password:
<input type="password" id="password"><br><br>
var largest;
if (num1 > num2) {
largest = num1;
} else {
largest = num2;
}
-Kundan Wadekar
<!DOCTYPE html>
<html>
<body>
<script>
function display() {
var base = document.getElementById("t1").value;
var height = document.getElementById("t2").value;
-Kundan Wadekar