SlideShare a Scribd company logo
Class 9
5 marks:
1. List out the rules for naming a variable.
2. Tabulate Arithmetic, comparison and logical operators in JavaScript.
3. Explain Conditional operator with an example.
4. Explain prompt dialog box in JavaScript with and example program.
5. Explain Switch statement in JavaScript.
2 marks:
1. What is JavaScript ?
2. Write a short note on JavaScript syntax.
3. What is the use of the alert statement in JavaScript ?
4. What do you mean by reserved words ?
5. What are the three data types in JavaScript ?
6. How do you declare a variable ?
7. What is the use of document.write statement ?
8. Tabulate the increment and decrement operators ?
9. Differentiate between simple and compound statements ?
10. How will you declare variables sub1,sub2 and sub3 in JavaScript ?
11. Name the different forms of if statement .
12. Name the three logical operators .
13. Write the statements equivalent to A = A + 1 and A = A – 1 ?
14. Write the shortcut form of the following : a) A = A + 15 b) B = B + 1
15. Define Concatenation.
16. What is the use of if statement in JavaScript ?
3 marks:
1. What are the types of comments in JavaScript ? Explain.
2. State the three data types used in Javascript.
3. Write a note on declaring a variable.
4. State the priority order of arithmetic operators.
5. Write JavaScript code for the following output:
Roll No.: 453
Name of student : Monica Kaur
Passed : true
6. What is the general format of if . . . else . . . if statement ?
7. What is the general format of switch statement ?
8. Write the following if . . . else statement using the conditional operator.
if(x==100)
a=”x is 100”
else
a=”x is not 100”
9. Evaluate the following arithmetic expression, assuming b=4 and c=4
a=b*3/4+c/4+8-b+5/8
Lab Activities
Exercise 1:
Write a JavaScript code to input your name, residential address, and telephone number and display
them on separate lines.
Exercise 2:
Write a JavaScript code to input your name and age. If name is ‘Bosco’ and age is ‘14’, then display the
statement ‘Bosco is 14 years old’ as output.
Exercise 3:
Write a JavaScript code to display the message ‘Eligible for voting’ in a message box, if the following
conditions are true:
 The age should be >=18
 The nationality should be Indian
Exercise 4:
Write a JavaScript code to accept a number from the user and print in Words.
Exercise 5:
Write a JavaScript code to input the purchase amount and calculate the discount and net amount based
on the following criteria:
Net Amount = Purchase Amount – Discount
Make use of the if . . . else statement.
5 marks:
1. Explain for loop in JavaScript.
2. Explain while loop in JavaScript.
3. Explain do … while loop in JavaScript.
2 marks:
1. Define loop.
2. Write the general format of for loop.
3. What is the use of continue statement ?
4. What is the output of the following code.
var num=1
while(num<=10)
{
document.write(num+ “<br>”)
num++
}
5. Name the two entry-controlled loops.
6. Differentiate between break and continue statements.
Purchase Amount Discount
<=5000 2%
>5000 and <=10000 5%
>10000 8%
3 marks:
1. What are the three types of loops available in JavaScript ?
2. Write the general format of the while loop.
3. Write the general format of do . . . while loop.
4. State the working of the for loop?
5. Write the following code using for loop.
var i=10;
while(i>=1)
{
document.writeln(i);
i=i-1;
}
6. What will be the output of the following code ?
var i=1;S=0;
while(i<=10)
{
S=S+i;
i=i+2;
}
document.write(“Sum = “ +S);
Also, write how many times the loop will be executed.
7. Write the following code using do . . . while loop:
for(var i=1;i<=100;i=i+2)
document.write(i+ “<br>”)
8. What are the three statements comprising the loop ?
Lab Activities
Exercise 1:
Write a JavaScript code to accept a number from the user and display its factorial using any looping
statement. If the user enters a negative number, the loop should terminate and print a message ‘Please
enter a Positive Number’.
Exercise 2:
Write a JavaScript code to display even numbers from 1 to 100 using any looping statement.
Exercise 3:
Write a JavaScript code to find the sum of numbers between 1 to 20 when incremented by 3.
(1 + 4 + 7 + 10 + 13 + 16 + 19). Use while loop for doing this.
Exercise 4:
Write a JavaScript code to print all the odd numbers from 15 backwards to 3.
Exercise 5:
Write a JavaScript code to print tables of numbers from 1 to 10.
Editing and Formatting in a Word Processor
2 marks:
1. Define Word Processor.
2. How do you invoke Word 2013 ?
3. Define Editing in MS Word.
4. Define formatting.
5. What is a font ?
6. What is character formatting ?
7. What does highlighting mean ?
8. Define Alignment.
9. Write a note on Margin.
10. Differentiate between Line spacing and paragraph spacing.
11. Differentiate between vertical and horizontal alignment.
12. What is the use of the format painter option ?
13. Ravish is typing his chemistry project in Word. In his project he needs to type the formula CO2.
However, when he types, the formula appears as CO2. Which formatting feature will help him see
the number 2 in the desired format ?
14. Yatin was typing an application in Word 2013. By mistake, he deleted the last sentence. Which
option can he use to reverse the last action ? Which tool bar has this option ?
3 marks:
1. How do you select text using the mouse.
2. List out the steps to copy (or move) and paste text.
3. What is the use of text effects button ?
4. List out the steps to highlight text.
5. List down the steps to remove highlight color.
6. How do you change the alignment of the text ?
7. Differentiate between Undo and Redo commands.
8. Write a short note on inserting and overtyping text.
9. How do you change the alignment of the text ?
10. Write a note on margins.
11. List out the steps to insert a page break.
12. Where is the ribbon placed ? What is displayed on the ribbon ?
13. Define Orientation. Mention its types.
14. List out the steps to set line spacing.
15. What is the procedure of using format painter option ?
More features of a Word Processor
2 marks:
1. What is the use of Spelling & Grammar tool ?
2. What do you mean by Thesaurus ?
3. Differentiate between find and replace feature ?
4. Define tables.
5. Define WordArt.
6. What is text wrapping ?
7. Differentiate between Header and Footer.
8. Write a note on Footnotes and Endnotes.
9. What is the use of Track changes feature ?
10. What do you mean by data source ?
11. How can you change the color of the page ?
12. Define Watermark.
13. How do you select an entire row in a table ?
3 marks:
1. List out the steps to create a bulleted list.
2. List down the points to remove the bullets.
3. Write the procedure to insert a table using the Insert Table option.
4. How do you draw a custom table ?
5. How do you merge cells in a table ?
6. How do you split cells in a table ?
7. Write a note on symbols.
8. What are the option available in change case feature ?
9. How do you crop an image ?
10. What are the three important options in the Adjust group ?
11. How do you apply page borders in MS Word ?
12. List out the steps to insert a comment.
13. Write a note on bullet.
14. What are the steps involved in Mail Merge ?
15. How do you change the row height and column width of a table ?

More Related Content

Similar to Class9 js word_quar2018

Term 3 class8_2019-2020
Term 3 class8_2019-2020Term 3 class8_2019-2020
Term 3 class8_2019-2020
Andrew Raj
 
Class7 term3 2019-2020
Class7 term3 2019-2020Class7 term3 2019-2020
Class7 term3 2019-2020
Andrew Raj
 
Computer Science - Class7 term-1 (2019_20)
Computer Science - Class7 term-1 (2019_20)Computer Science - Class7 term-1 (2019_20)
Computer Science - Class7 term-1 (2019_20)
Andrew Raj
 
Axapta interview questions
Axapta interview questionsAxapta interview questions
Axapta interview questions
KD420
 
C question-bank-ebook
C question-bank-ebookC question-bank-ebook
C question-bank-ebooketrams1
 
Top C Language Interview Questions and Answer
Top C Language Interview Questions and AnswerTop C Language Interview Questions and Answer
Top C Language Interview Questions and Answer
Vineet Kumar Saini
 
C question-answer-bank
C question-answer-bankC question-answer-bank
C question-answer-bank
REHAN KHAN
 
All worksheet
All worksheetAll worksheet
All worksheet
Namrata Mehta
 
Cis 1403 lab1- the process of programming
Cis 1403 lab1- the process of programmingCis 1403 lab1- the process of programming
Cis 1403 lab1- the process of programming
Hamad Odhabi
 
Ict question
Ict questionIct question
Ict question
imrul Kayes jony
 
M150 A Fall2010 T01
M150 A Fall2010 T01M150 A Fall2010 T01
M150 A Fall2010 T01
abdalodainat
 
Beginner C++ easy slide and simple definition with questions
Beginner C++ easy slide and simple definition with questions Beginner C++ easy slide and simple definition with questions
Beginner C++ easy slide and simple definition with questions
khawajasharif
 
INTRODUCTION TO CODING-CLASS VI LEVEL-DESCRIPTION ABOUT SYNTAX LANGUAGE
INTRODUCTION TO CODING-CLASS VI LEVEL-DESCRIPTION ABOUT SYNTAX LANGUAGEINTRODUCTION TO CODING-CLASS VI LEVEL-DESCRIPTION ABOUT SYNTAX LANGUAGE
INTRODUCTION TO CODING-CLASS VI LEVEL-DESCRIPTION ABOUT SYNTAX LANGUAGE
RathnaM16
 
classVI_Coding_Teacher_Presentation.pptx
classVI_Coding_Teacher_Presentation.pptxclassVI_Coding_Teacher_Presentation.pptx
classVI_Coding_Teacher_Presentation.pptx
MaaReddySanjiv
 
classVI_Coding_Teacher_Presentation.pptx
classVI_Coding_Teacher_Presentation.pptxclassVI_Coding_Teacher_Presentation.pptx
classVI_Coding_Teacher_Presentation.pptx
ssusere336f4
 
Interview questions_mod.pdf
Interview questions_mod.pdfInterview questions_mod.pdf
Interview questions_mod.pdf
Rajb54
 
Interview questions
Interview questionsInterview questions
Interview questions
tushar patel patel
 
Interview questions
Interview questionsInterview questions
Interview questions
maverick2203
 
Assignments 150507052746-lva1-app6891
Assignments 150507052746-lva1-app6891Assignments 150507052746-lva1-app6891
Assignments 150507052746-lva1-app6891
Mohit Saini
 

Similar to Class9 js word_quar2018 (20)

Term 3 class8_2019-2020
Term 3 class8_2019-2020Term 3 class8_2019-2020
Term 3 class8_2019-2020
 
Class7 term3 2019-2020
Class7 term3 2019-2020Class7 term3 2019-2020
Class7 term3 2019-2020
 
Computer Science - Class7 term-1 (2019_20)
Computer Science - Class7 term-1 (2019_20)Computer Science - Class7 term-1 (2019_20)
Computer Science - Class7 term-1 (2019_20)
 
Axapta interview questions
Axapta interview questionsAxapta interview questions
Axapta interview questions
 
C question-bank-ebook
C question-bank-ebookC question-bank-ebook
C question-bank-ebook
 
Top C Language Interview Questions and Answer
Top C Language Interview Questions and AnswerTop C Language Interview Questions and Answer
Top C Language Interview Questions and Answer
 
C question-answer-bank
C question-answer-bankC question-answer-bank
C question-answer-bank
 
All worksheet
All worksheetAll worksheet
All worksheet
 
Cis 1403 lab1- the process of programming
Cis 1403 lab1- the process of programmingCis 1403 lab1- the process of programming
Cis 1403 lab1- the process of programming
 
Ict question
Ict questionIct question
Ict question
 
M150 A Fall2010 T01
M150 A Fall2010 T01M150 A Fall2010 T01
M150 A Fall2010 T01
 
141303 qb
141303 qb141303 qb
141303 qb
 
Beginner C++ easy slide and simple definition with questions
Beginner C++ easy slide and simple definition with questions Beginner C++ easy slide and simple definition with questions
Beginner C++ easy slide and simple definition with questions
 
INTRODUCTION TO CODING-CLASS VI LEVEL-DESCRIPTION ABOUT SYNTAX LANGUAGE
INTRODUCTION TO CODING-CLASS VI LEVEL-DESCRIPTION ABOUT SYNTAX LANGUAGEINTRODUCTION TO CODING-CLASS VI LEVEL-DESCRIPTION ABOUT SYNTAX LANGUAGE
INTRODUCTION TO CODING-CLASS VI LEVEL-DESCRIPTION ABOUT SYNTAX LANGUAGE
 
classVI_Coding_Teacher_Presentation.pptx
classVI_Coding_Teacher_Presentation.pptxclassVI_Coding_Teacher_Presentation.pptx
classVI_Coding_Teacher_Presentation.pptx
 
classVI_Coding_Teacher_Presentation.pptx
classVI_Coding_Teacher_Presentation.pptxclassVI_Coding_Teacher_Presentation.pptx
classVI_Coding_Teacher_Presentation.pptx
 
Interview questions_mod.pdf
Interview questions_mod.pdfInterview questions_mod.pdf
Interview questions_mod.pdf
 
Interview questions
Interview questionsInterview questions
Interview questions
 
Interview questions
Interview questionsInterview questions
Interview questions
 
Assignments 150507052746-lva1-app6891
Assignments 150507052746-lva1-app6891Assignments 150507052746-lva1-app6891
Assignments 150507052746-lva1-app6891
 

More from Andrew Raj

Class6 term2 2019-20
Class6 term2 2019-20Class6 term2 2019-20
Class6 term2 2019-20
Andrew Raj
 
Term II - [2019-'20]_Class 7_CSC
Term II - [2019-'20]_Class 7_CSCTerm II - [2019-'20]_Class 7_CSC
Term II - [2019-'20]_Class 7_CSC
Andrew Raj
 
Term II - [2019-'20]_Class 8_CSC
Term II - [2019-'20]_Class 8_CSCTerm II - [2019-'20]_Class 8_CSC
Term II - [2019-'20]_Class 8_CSC
Andrew Raj
 
Computer Science Class - 8 Term - 1 2019_20
Computer Science Class - 8 Term - 1 2019_20Computer Science Class - 8 Term - 1 2019_20
Computer Science Class - 8 Term - 1 2019_20
Andrew Raj
 
C programming | Class 8 | III Term
C programming  | Class 8  | III TermC programming  | Class 8  | III Term
C programming | Class 8 | III TermAndrew Raj
 
+2 Computer Science - Volume II Notes
+2 Computer Science - Volume II Notes+2 Computer Science - Volume II Notes
+2 Computer Science - Volume II Notes
Andrew Raj
 

More from Andrew Raj (6)

Class6 term2 2019-20
Class6 term2 2019-20Class6 term2 2019-20
Class6 term2 2019-20
 
Term II - [2019-'20]_Class 7_CSC
Term II - [2019-'20]_Class 7_CSCTerm II - [2019-'20]_Class 7_CSC
Term II - [2019-'20]_Class 7_CSC
 
Term II - [2019-'20]_Class 8_CSC
Term II - [2019-'20]_Class 8_CSCTerm II - [2019-'20]_Class 8_CSC
Term II - [2019-'20]_Class 8_CSC
 
Computer Science Class - 8 Term - 1 2019_20
Computer Science Class - 8 Term - 1 2019_20Computer Science Class - 8 Term - 1 2019_20
Computer Science Class - 8 Term - 1 2019_20
 
C programming | Class 8 | III Term
C programming  | Class 8  | III TermC programming  | Class 8  | III Term
C programming | Class 8 | III Term
 
+2 Computer Science - Volume II Notes
+2 Computer Science - Volume II Notes+2 Computer Science - Volume II Notes
+2 Computer Science - Volume II Notes
 

Recently uploaded

Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
AzmatAli747758
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
RaedMohamed3
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
Balvir Singh
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
Celine George
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
Jheel Barad
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
joachimlavalley1
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
GeoBlogs
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
Pavel ( NSTU)
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Thiyagu K
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
MIRIAMSALINAS13
 
Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)
rosedainty
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
GeoBlogs
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 
How to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS ModuleHow to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS Module
Celine George
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
EduSkills OECD
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
EugeneSaldivar
 

Recently uploaded (20)

Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...Cambridge International AS  A Level Biology Coursebook - EBook (MaryFosbery J...
Cambridge International AS A Level Biology Coursebook - EBook (MaryFosbery J...
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 
Palestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptxPalestine last event orientationfvgnh .pptx
Palestine last event orientationfvgnh .pptx
 
Operation Blue Star - Saka Neela Tara
Operation Blue Star   -  Saka Neela TaraOperation Blue Star   -  Saka Neela Tara
Operation Blue Star - Saka Neela Tara
 
Model Attribute Check Company Auto Property
Model Attribute  Check Company Auto PropertyModel Attribute  Check Company Auto Property
Model Attribute Check Company Auto Property
 
Instructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptxInstructions for Submissions thorugh G- Classroom.pptx
Instructions for Submissions thorugh G- Classroom.pptx
 
Additional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdfAdditional Benefits for Employee Website.pdf
Additional Benefits for Employee Website.pdf
 
Fish and Chips - have they had their chips
Fish and Chips - have they had their chipsFish and Chips - have they had their chips
Fish and Chips - have they had their chips
 
Synthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptxSynthetic Fiber Construction in lab .pptx
Synthetic Fiber Construction in lab .pptx
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
Unit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdfUnit 2- Research Aptitude (UGC NET Paper I).pdf
Unit 2- Research Aptitude (UGC NET Paper I).pdf
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXXPhrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
Phrasal Verbs.XXXXXXXXXXXXXXXXXXXXXXXXXX
 
Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......Ethnobotany and Ethnopharmacology ......
Ethnobotany and Ethnopharmacology ......
 
Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)Template Jadual Bertugas Kelas (Boleh Edit)
Template Jadual Bertugas Kelas (Boleh Edit)
 
The geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideasThe geography of Taylor Swift - some ideas
The geography of Taylor Swift - some ideas
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 
How to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS ModuleHow to Split Bills in the Odoo 17 POS Module
How to Split Bills in the Odoo 17 POS Module
 
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptxStudents, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
Students, digital devices and success - Andreas Schleicher - 27 May 2024..pptx
 
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...TESDA TM1 REVIEWER  FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
TESDA TM1 REVIEWER FOR NATIONAL ASSESSMENT WRITTEN AND ORAL QUESTIONS WITH A...
 

Class9 js word_quar2018

  • 1. Class 9 5 marks: 1. List out the rules for naming a variable. 2. Tabulate Arithmetic, comparison and logical operators in JavaScript. 3. Explain Conditional operator with an example. 4. Explain prompt dialog box in JavaScript with and example program. 5. Explain Switch statement in JavaScript. 2 marks: 1. What is JavaScript ? 2. Write a short note on JavaScript syntax. 3. What is the use of the alert statement in JavaScript ? 4. What do you mean by reserved words ? 5. What are the three data types in JavaScript ? 6. How do you declare a variable ? 7. What is the use of document.write statement ? 8. Tabulate the increment and decrement operators ? 9. Differentiate between simple and compound statements ? 10. How will you declare variables sub1,sub2 and sub3 in JavaScript ? 11. Name the different forms of if statement . 12. Name the three logical operators . 13. Write the statements equivalent to A = A + 1 and A = A – 1 ? 14. Write the shortcut form of the following : a) A = A + 15 b) B = B + 1 15. Define Concatenation. 16. What is the use of if statement in JavaScript ? 3 marks: 1. What are the types of comments in JavaScript ? Explain. 2. State the three data types used in Javascript. 3. Write a note on declaring a variable. 4. State the priority order of arithmetic operators. 5. Write JavaScript code for the following output: Roll No.: 453 Name of student : Monica Kaur Passed : true 6. What is the general format of if . . . else . . . if statement ? 7. What is the general format of switch statement ? 8. Write the following if . . . else statement using the conditional operator. if(x==100) a=”x is 100” else a=”x is not 100” 9. Evaluate the following arithmetic expression, assuming b=4 and c=4 a=b*3/4+c/4+8-b+5/8
  • 2. Lab Activities Exercise 1: Write a JavaScript code to input your name, residential address, and telephone number and display them on separate lines. Exercise 2: Write a JavaScript code to input your name and age. If name is ‘Bosco’ and age is ‘14’, then display the statement ‘Bosco is 14 years old’ as output. Exercise 3: Write a JavaScript code to display the message ‘Eligible for voting’ in a message box, if the following conditions are true:  The age should be >=18  The nationality should be Indian Exercise 4: Write a JavaScript code to accept a number from the user and print in Words. Exercise 5: Write a JavaScript code to input the purchase amount and calculate the discount and net amount based on the following criteria: Net Amount = Purchase Amount – Discount Make use of the if . . . else statement. 5 marks: 1. Explain for loop in JavaScript. 2. Explain while loop in JavaScript. 3. Explain do … while loop in JavaScript. 2 marks: 1. Define loop. 2. Write the general format of for loop. 3. What is the use of continue statement ? 4. What is the output of the following code. var num=1 while(num<=10) { document.write(num+ “<br>”) num++ } 5. Name the two entry-controlled loops. 6. Differentiate between break and continue statements. Purchase Amount Discount <=5000 2% >5000 and <=10000 5% >10000 8%
  • 3. 3 marks: 1. What are the three types of loops available in JavaScript ? 2. Write the general format of the while loop. 3. Write the general format of do . . . while loop. 4. State the working of the for loop? 5. Write the following code using for loop. var i=10; while(i>=1) { document.writeln(i); i=i-1; } 6. What will be the output of the following code ? var i=1;S=0; while(i<=10) { S=S+i; i=i+2; } document.write(“Sum = “ +S); Also, write how many times the loop will be executed. 7. Write the following code using do . . . while loop: for(var i=1;i<=100;i=i+2) document.write(i+ “<br>”) 8. What are the three statements comprising the loop ? Lab Activities Exercise 1: Write a JavaScript code to accept a number from the user and display its factorial using any looping statement. If the user enters a negative number, the loop should terminate and print a message ‘Please enter a Positive Number’. Exercise 2: Write a JavaScript code to display even numbers from 1 to 100 using any looping statement. Exercise 3: Write a JavaScript code to find the sum of numbers between 1 to 20 when incremented by 3. (1 + 4 + 7 + 10 + 13 + 16 + 19). Use while loop for doing this. Exercise 4: Write a JavaScript code to print all the odd numbers from 15 backwards to 3. Exercise 5: Write a JavaScript code to print tables of numbers from 1 to 10.
  • 4. Editing and Formatting in a Word Processor 2 marks: 1. Define Word Processor. 2. How do you invoke Word 2013 ? 3. Define Editing in MS Word. 4. Define formatting. 5. What is a font ? 6. What is character formatting ? 7. What does highlighting mean ? 8. Define Alignment. 9. Write a note on Margin. 10. Differentiate between Line spacing and paragraph spacing. 11. Differentiate between vertical and horizontal alignment. 12. What is the use of the format painter option ? 13. Ravish is typing his chemistry project in Word. In his project he needs to type the formula CO2. However, when he types, the formula appears as CO2. Which formatting feature will help him see the number 2 in the desired format ? 14. Yatin was typing an application in Word 2013. By mistake, he deleted the last sentence. Which option can he use to reverse the last action ? Which tool bar has this option ? 3 marks: 1. How do you select text using the mouse. 2. List out the steps to copy (or move) and paste text. 3. What is the use of text effects button ? 4. List out the steps to highlight text. 5. List down the steps to remove highlight color. 6. How do you change the alignment of the text ? 7. Differentiate between Undo and Redo commands. 8. Write a short note on inserting and overtyping text. 9. How do you change the alignment of the text ? 10. Write a note on margins. 11. List out the steps to insert a page break. 12. Where is the ribbon placed ? What is displayed on the ribbon ? 13. Define Orientation. Mention its types. 14. List out the steps to set line spacing. 15. What is the procedure of using format painter option ?
  • 5. More features of a Word Processor 2 marks: 1. What is the use of Spelling & Grammar tool ? 2. What do you mean by Thesaurus ? 3. Differentiate between find and replace feature ? 4. Define tables. 5. Define WordArt. 6. What is text wrapping ? 7. Differentiate between Header and Footer. 8. Write a note on Footnotes and Endnotes. 9. What is the use of Track changes feature ? 10. What do you mean by data source ? 11. How can you change the color of the page ? 12. Define Watermark. 13. How do you select an entire row in a table ? 3 marks: 1. List out the steps to create a bulleted list. 2. List down the points to remove the bullets. 3. Write the procedure to insert a table using the Insert Table option. 4. How do you draw a custom table ? 5. How do you merge cells in a table ? 6. How do you split cells in a table ? 7. Write a note on symbols. 8. What are the option available in change case feature ? 9. How do you crop an image ? 10. What are the three important options in the Adjust group ? 11. How do you apply page borders in MS Word ? 12. List out the steps to insert a comment. 13. Write a note on bullet. 14. What are the steps involved in Mail Merge ? 15. How do you change the row height and column width of a table ?