Posts

Showing posts from November, 2023

M S EXCEL Practical 30/11/2023

Image
 

HTML FORMS

Image

CLASS X Comment Tag

Image
1.  Comment <!-…- -> Tag This tag is used to insert comments in the source code of the Web page. Comments are not displayed in the browser’s window. All the text inserted inside this tag (<! — … — >) will be ignored by the browser that made invisible for the user. You can use comment to explain your code, it can help you, when you edit the source code later. This is especially useful, when you have a lot of codes. Syntax <! - -.... - -> EXAMPLE- <HTML> <HEAD> <TITLE> Comment </TITLE> </HEAD> <B0DY> <!- - This is a comment. - - > This is body. </BODY> </HTML> 2 What for is Mailto function - The "mailto" function is used to create email links on webpages, allowing users to click on the link and open their default email client with a new message addressed to the specified email address.

Cyber safety class 9

html practice questions 17/11/2023

Image
 

computer ethics class 8

Image
  CHAPTER 10 COMPTUER ETHICS MCQ 11. C Protecting password 22. B. software piracy 33.   B. Plagiarism 44. B. firewall 55. A. spamming B fill in the blanks 1. Computer ethics 2. Hacking means unauthorized access to someone’s computer for viewing, copying or creating data on it. 3. Emails 4. Spamming 5. Footprint c. Match the following- 1.      d. cyberbullying 2.      c. copyright 3.      e. Phishing 4.       b. hacking 5.       a. digital fooprint   SHORT QUESTION ANSWER 1.  Intellectual property rights are the rights given to a person over their creation. IPR protects an individual’s or a company’s ideas and creations, such as research work, product, art, logo, trademark, registration etc.   2.  Renting means lending or renting out software without the permission of...

TABLE - Frame Attribute 11/8/2023

  The frame Attribute This attribute specifies which part of the tables borders will be visible. Hence, the frame attribute will always be used with the border attribute. The values that can be specified for frames are as follows: void  outside borders are not shown. above  top edge of the border is shown. below  bottom edge of the border is shown. hsides  top and bottom edges of the border are shown. lhs  left edge of the border is shown. rhs  right edge of the border is shown. vsides  left and right edges of the border are shown. box  all edges are shown on all four sides (like border). border  all edges are shown on all four sides (default). o illustrate the use of frame attribute. <html> <head><title> Table </title></head> <body> Ctable border="2" frame="void"> <tr> <td> One </td> <td> Two </td> </tr> <tr> <td> Three </td> <td> ...

M S EXCEL I 11/8/2023

Image
  Question 1: Define the term workbook. Answer: A workbook is a collection of worksheets. By default, there are three worksheets in every workbook. Question 2: What is the default alignment of number, text and formula in a spreadsheet? Answer: Default alignment of text or label entry is left alignment and for numbers and formula it is right alignment. Question 3: Explain the concept of cell referencing alongwith its various types. Answer: Excel supports three types of cell referencing, which are as follows: Relative Every relative cell reference in formula automatically changes when the formula is copied down a column or across a row. As the example illustrated here shows, when the formula is entered (= B4 — C4) in Cell D4 then this formula copied in D5 then it will change into (= B5 — C5) related to cell. Absolute An absolute cell reference is fixed. Absolute references do not change if you copy a formula from one cell to another. Absolute references have dollar sign ($) like $S$9...

CYBER SAFETY 4 NOVEMBER 2023

  Cyber security Class 9 MCQ Questions With Answers Quiz (mcqmojo.com)

TABLES IN HTML

Image
  Question 1.  Which of these tags belong to table? CBSE 2016 (a) <thead>,<body>,<tr> (b) <table>,<head>,<tfoot> (c) <table>,<tr>,<td> (d) <table>,<tr>,<tt> Answer:  (c),<table>,<tr>, <td> tags are used with table. Question 2.  Which of the following tags gives a caption to the table? (a) < caption > (b) < summary > (c) < frame > (d) None of these Answer: (a) <caption> tag is used to give caption to the table. Question 3. Which of the following is used to specify the beginning of a table’s row? (a) <table> (b) <tr> (c) <row> (d) <begin> Answer: (b) <tr> tag indicates the beginning of a table’s row. Question 4.  HTML tag for row is (a) <colspan> (b) <tr> (c) <rowspan> (d) <td> Answer:   (b) HTML tag for row is <tr>. uestion 5.  Which tag is used...