Posts

Showing posts from August, 2023

Practical File Guidelines for CLASS X (2023-24)

Image
Practical File Guidelines for CLASS X (2023-24) Ø       Index Ø       Certificate Ø       Acknowledgement Ø       HTML PROGRMS Ø       HTML I  06 programs with output Ø       HTML II & CSS 09  programs with outputs (At least 10 programs) Write the following programs with outputs:- 1.Design a page having suitable background color and text color with title “My First Web Page” using all the attributes of the Font tag.  2. Create a HTML document giving details of your [Name, Age], [Address, Phone] and [Register Number, Class] aligned in proper order using alignment attributes of Paragraph tag.  3. Write HTML code to design a page containing some text in a paragraph by giving suitable heading style. 4. Create a web page, showing an ordered list of all subjects of courseware of class 10 with subject code. 5 Write HTML cod...

COMPUTER SYSTEM CLASS IX LESSON 1

  1. The physical components of the computer system are called............... Ans- Hardware 2. The programs or instructions that tell the computer what to do, are known as............ Ans- Software 3. This part sends signals to other parts of the computer to tell them what to do. Ans- CPU 4. Data are raw facts from which information is derived. 5. Supercomputer is the most powerful computer. 6. Computers have ZERO IQ 7. The CPU is also called the microprocessor or simply the processor. 8. CRAY X-MP-14, CDC-205, ETA GF-10, FUJITSU VP-400, PARAM, PACE, NEC SX-2 are the              examples of Supercomputer. 9. Minicomputers are also called Mid-range servers.  Eg PDP-11, VAX, 7500 MAGNUM etc. 10. Big interconnected computers housed at scientific lab to carry out scientific research. ANS- Mainframe computer

m s word class ix

  1. What is a Word processor? Name some popular word processors. Answer:  A word processor is an application software used to create, edit, format and print any type of document like a report, letter, notice, circular, schedule, poster, resume, memo or agenda etc. Some word processing software are: OpenOffice Writer, Microsoft Word, Libre Office Writer, Google Docs etc. 2. What is the use of find and replace feature in MS Word? Answer:  Find and replace feature is used to find any word or sentence in the document. Replace feature is used to replace any word or sentence in the document. 3. Name the types of objects that can be inserted in a MS Word document. Answer:  We can insert pictures, clipart images, shapes, symbols, special characters and tables etc. 4. What are the shortcut keys for copying and pasting objects? Answer:  Shortcut key for copy: Ctrl+C Shortcut for Paste: Ctrl+V 5. Write the shortcut keys to select a word, a sentence, a paragraph and whole ...

Lists in HTML CLASS X

Image
  Lists in HTML Lists are an important part of a document. Whether it is a word document or pdf document or web document. It adds functionality to understand the contents clearly. In your textbook you have seen the list of questions, points are listed in numbers or symbols!   This information makes your text and document contents more attractive and readable. Types of Lists in HTML HTML support three types of lists basically. They are: Ordered (Numbered) Lists –  A list with numbers.  Unordered (Bulleted) Lists –  A list with symbols or bullets Description (Definition) Lists  – A list to write definitions or terminologies Ordered (Numbered) Lists To generate order lists in HTML following tags are used: OL:  The ordered lists always starts with <ol> and ends with </ol>.  LI:  LI tag specifies list items and written between <ol> and </ol>. For a number of the list items, the same number of <li> tags are required.