SlideShare ist ein Scribd-Unternehmen logo
1 von 6
Downloaden Sie, um offline zu lesen
Open Office
2 mark questions:
1. What is Open Office ?
2. List out the applications included in Open Office package.
3. How do you save a document in Writer ?
4. Define Formatting.
5. What are the two types of graphics that can be inserted in your document ?
6. How do you insert a drawing object in Writer ?
7. List out the steps to insert pictures in Writer.
8. What is Impress ?
9. List out the steps to choose a slide layout.
10. Define template.
11. List out the steps to apply transition effect to a slide.
12. How do you view a presentation ?
13. What is Open Office Calc ?
14. State the formula basics in Calc.
15. Define Chart.
16. Write the steps to create a chart in Calc.
3 mark questions:
1. How do you format text in Writer ?
2. Write a note on creating a new presentation.
3. How do you apply slide design to your slide ?
4. How do you apply custom animation effect ?
5. How do you format data in Calc ?
6. How to use a function in Calc ?
5 mark questions:
1. Explain the different ways to view a Slide.
2. Explain the following functions in Calc.
(i) SUM (ii) AVERAGE (iii) COUNT (iv) MAX (v) MIN
Adobe Photoshop CS6
2 mark questions:
1. What is Photoshop ?
2. What is Resolution ?
3. How do you save your image file in Photoshop ?
4. Write a note on Move tool in Ps.
5. Define Cropping.
6. List out the steps to use the crop tool.
3 mark questions:
1. How do you start Photoshop CS6 ?
2. List out the steps to open an existing file in Ps.
3. Write a note on Lasso tools.
4. List out the steps to use the Move tool.
5. Write a note on Magic Wand tool.
6. Write a note on Quick Selection tool.
Class 8
7. Write a note on Brush tool in Ps.
8. Write the steps to use the Color Replacement tool.
9. Explain Eraser tool in Ps.
10. Write a note on Paint Bucket tool.
11. What is Horizontal Type tool in Ps ?
12. Explain Clone Stamp tool.
5 mark questions:
1. Write the steps to create a new Photoshop image file.
2. Explain Marquee tools in Photoshop.
3. Explain Copying and Pasting selection in Photoshop.
4. Explain Filters in Photoshop.
App Development
2 mark questions:
1. Define App.
2. Write a note on Web App.
3. List out the popular app development web sites.
4. Mention the three phases of app development.
5. How do you view e-passbook of SBI account.
3 mark questions:
1. Write a note on Native App.
5 mark questions:
1. Explain the procedure to build an App.
Windows Movie Maker
2 mark questions:
1. What is Windows Movie Maker ?
3 mark questions:
1. List out the steps to start Windows Movie Maker.
2. List out the steps involved to create a movie.
3. Explain the use of title, caption and credits commands to add text in Movie Maker.
4. How do you save movie in a project ?
5 mark questions:
1. Explain the screen elements of Windows Movie Maker.
2. How do you add photos and video clips to movie maker ?
3. List out the steps to add a title in Movie Maker.
4. Write the steps to add a caption to the movie.
5. List down the steps to add credits to the movie.
6. How do you apply transition on the movie ?
7. Explain the procedure to trim the duration of a video clip.
More on Adobe Flash Professional CS6
2 mark questions:
1. What is Adobe Flash Professional CS6 ?
2. How do you create a new flash file ?
3. Differentiate between frame and key frame.
4. List out the steps to delete a frame ?
5. Define Animation.
6. How do you test your movie in flash ?
7. What do you mean by frame-by-frame animation ?
3 mark questions:
1. What is the use of timeline panel in flash ?
2. How do you insert a frame/key frame ?
3. Write a note on layers in flash.
4. How do you lock/unlock layers in flash ?
5. How do you show/hide layers in flash ?
6. What is symbol ? State the types of symbols.
7. Write the steps to create a symbol.
5 mark questions:
1. Write the steps to create an animation using create Classic Tween option.
2. Write the procedure to create Shape Tween.
3. List out the steps to create frame-by-frame animation.
More on Java (BlueJ/NetBeans)
2 mark questions:
1. Define token set.
2. Define variables in an example.
3. What are identifiers ?
4. Define operators.
5. What is operator precedence ?
6. Define Control Structure. Mention its types.
7. What is looping ?
8. List out the steps to create a form in NetBeans.
9. Differentiate between getText() and setText().
10. How do you add code in Java NetBeans ?
11. How do you run the application in NetBeans ?
3 mark questions:
1. Write a note on constants.
2. Write a note on data type.
3. Tabulate the data types used in Java.
4. Explain sequential control structure.
5. Explain selective control structure.
6. What are the three basic types of loops used in Java ?
7. How do you create a project in NetBeans ?
8. Write a note on adding components to a form.
9. Explain the use and common properties of jLabel component.
10. Explain the use and common properties of jTextField component.
11. Explain the use and common properties of jButton component.
5 mark questions:
1. Tabulate the operators used in Java.
2. Explain the structure of a Java program.
3. List out the steps to create a Java BlueJ program.
4. Explain the looping control structure in Java with suitable examples.
5. Write a program in JAVA to find area and perimeter of a rectangle with length 5 and breadth 8.
6. Write a program to find out the cube of 3.
7. Write a program in JAVA to display the sum of first 10 numbers using for loop.
8. Write a JAVA program to display first 10 even numbers using while loop.
9. Write a JAVA program to display factorial of 5 using do . . . while loop.
10. Write a program in JAVA to find Simple Interest (p=1000, r=10,n=5).
11. List out the steps involved in creating a JAVA NetBeans application.
LAB EXERCISES
1. Open Writer and type a paragraph on ‘Computer Ethics’. Apply formatting styles and save your file.
2. Open Impress and make a presentation on ‘Safety Measures on Road’. Apply slide design and slide
transition effects.
3. Open Calc and prepare a mark sheet of students in your class. Calculate their average marks and make a
Pie chart.
4. Open an image in Photoshop and do the following:
 Crop it
 Type your name
 Use Brush tool and give different strokes.
 Apply different filters on it.
 Save the file.
5. Write a program in JAVA to find area and perimeter of a rectangle with length 5 and breadth 8.
//Area and Perimeter of Rectangle
class Rectangle
{
public static void main(String args[])
{
int length=5,breadth=8,area,perimeter;
area=length*breadth;
perimeter=2*(length*breadth);
System.out.println("Area of Rectangle=" +area);
System.out.println("Perimeter of Rectangle=" +perimeter);
}
}
6. Write a program to find out the cube of 3.
//Cube of 3
class Cube
{
public static void main(String args[])
{
int num=3,cube;
cube=num*num*num;
System.out.println("Cube of 3 is " +cube);
}
}
7. Write a program in JAVA to display the sum of first 10 numbers using for loop.
//Sum of first 10 numbers
class SumFirst10
{
public static void main(String args[])
{
int i,sum=0;
for(i=1;i<=10;i++)
{
sum+=i;
}
System.out.println("Sum of first 10 numbers =" +sum);
}
}
8. Write a JAVA program to display first 10 even numbers using while loop.
//First 10 Even Numbers
class First10Even
{
public static void main(String args[])
{
int i=2;
while(i<=20)
{
System.out.println(i +" ");
i+=2;
}
}
}
9. Write a JAVA program to display factorial of 5 using do . . . while loop.
//Factorial of 5
class Fact5
{
public static void main(String args[])
{
int i=1,fact=1;
do
{
fact=fact*i;
i++;
}while(i<=5);
System.out.println("Factorial of 5 is " +fact);
}
}
10. Write a program in JAVA to find Simple Interest (p=1000, r=10,n=5).
//smaller number between A and B
class Small2
{
public static void main(String args[])
{
int p=1000,r=10,n=5,si;
si=(p*n*r)/100;
System.out.println("Simple Interest=" +si);
}
}
***********************

Weitere ähnliche Inhalte

Was ist angesagt?

Unit 1.3 Introduction to Programming (Part 1)
Unit 1.3 Introduction to Programming (Part 1)Unit 1.3 Introduction to Programming (Part 1)
Unit 1.3 Introduction to Programming (Part 1)Intan Jameel
 
What is journals
What is journalsWhat is journals
What is journalspeterb8
 
Forgot Password to Unprotect Excel Sheet in Two Cases
Forgot Password to Unprotect Excel Sheet in Two CasesForgot Password to Unprotect Excel Sheet in Two Cases
Forgot Password to Unprotect Excel Sheet in Two CasesAadewea
 
Recover Deleted Outlook Contacts from MS Outlook and Hard Drives !!
 Recover Deleted Outlook Contacts from MS Outlook and Hard Drives !! Recover Deleted Outlook Contacts from MS Outlook and Hard Drives !!
Recover Deleted Outlook Contacts from MS Outlook and Hard Drives !!peterb8
 
Fixed: MS Word the File is Corrupted and Cannot be Opened
Fixed: MS Word the File is Corrupted and Cannot be OpenedFixed: MS Word the File is Corrupted and Cannot be Opened
Fixed: MS Word the File is Corrupted and Cannot be OpenedItworlds Worlds
 
Unprotect Excel Worksheet When Forgetting Password
Unprotect Excel Worksheet When Forgetting PasswordUnprotect Excel Worksheet When Forgetting Password
Unprotect Excel Worksheet When Forgetting PasswordScott Leen
 

Was ist angesagt? (7)

Unit 1.3 Introduction to Programming (Part 1)
Unit 1.3 Introduction to Programming (Part 1)Unit 1.3 Introduction to Programming (Part 1)
Unit 1.3 Introduction to Programming (Part 1)
 
What is journals
What is journalsWhat is journals
What is journals
 
Forgot Password to Unprotect Excel Sheet in Two Cases
Forgot Password to Unprotect Excel Sheet in Two CasesForgot Password to Unprotect Excel Sheet in Two Cases
Forgot Password to Unprotect Excel Sheet in Two Cases
 
Recover Deleted Outlook Contacts from MS Outlook and Hard Drives !!
 Recover Deleted Outlook Contacts from MS Outlook and Hard Drives !! Recover Deleted Outlook Contacts from MS Outlook and Hard Drives !!
Recover Deleted Outlook Contacts from MS Outlook and Hard Drives !!
 
Fixed: MS Word the File is Corrupted and Cannot be Opened
Fixed: MS Word the File is Corrupted and Cannot be OpenedFixed: MS Word the File is Corrupted and Cannot be Opened
Fixed: MS Word the File is Corrupted and Cannot be Opened
 
Unprotect Excel Worksheet When Forgetting Password
Unprotect Excel Worksheet When Forgetting PasswordUnprotect Excel Worksheet When Forgetting Password
Unprotect Excel Worksheet When Forgetting Password
 
Lesson2
Lesson2Lesson2
Lesson2
 

Ähnlich wie Term 3 class8_2019-2020

30500932 ictl-form-two-yearly-plan-rancangan-tahunan-ictl-ting-2
30500932 ictl-form-two-yearly-plan-rancangan-tahunan-ictl-ting-230500932 ictl-form-two-yearly-plan-rancangan-tahunan-ictl-ting-2
30500932 ictl-form-two-yearly-plan-rancangan-tahunan-ictl-ting-2Farid Yusof
 
Class9 js word_quar2018
Class9 js word_quar2018Class9 js word_quar2018
Class9 js word_quar2018Andrew Raj
 
Rancangan tahunan-ictl-form-2-2013
Rancangan tahunan-ictl-form-2-2013Rancangan tahunan-ictl-form-2-2013
Rancangan tahunan-ictl-form-2-2013Shaharizan Hassan
 
Cis247 i lab 1 of 7 creating a user interface
Cis247 i lab 1 of 7 creating a user interfaceCis247 i lab 1 of 7 creating a user interface
Cis247 i lab 1 of 7 creating a user interfacesdjdskjd9097
 
Cis247 a ilab 1 of 7 creating a user interface
Cis247 a ilab 1 of 7 creating a user interfaceCis247 a ilab 1 of 7 creating a user interface
Cis247 a ilab 1 of 7 creating a user interfaceccis224477
 
Cis247 a ilab 1 of 7 creating a user interface
Cis247 a ilab 1 of 7 creating a user interfaceCis247 a ilab 1 of 7 creating a user interface
Cis247 a ilab 1 of 7 creating a user interfacecis247
 
Cis247 i lab 1 of 7 creating a user interface
Cis247 i lab 1 of 7 creating a user interfaceCis247 i lab 1 of 7 creating a user interface
Cis247 i lab 1 of 7 creating a user interfacesdjdskjd9097
 
Devry cis-170-c-i lab-6-of-7-menu
Devry cis-170-c-i lab-6-of-7-menuDevry cis-170-c-i lab-6-of-7-menu
Devry cis-170-c-i lab-6-of-7-menunoahjamessss
 
Devry cis-170-c-i lab-6-of-7-menu
Devry cis-170-c-i lab-6-of-7-menuDevry cis-170-c-i lab-6-of-7-menu
Devry cis-170-c-i lab-6-of-7-menucskvsmi44
 
Survive the Chaos - S4H151 - SAP TechED Barcelona 2017 - Lecture
Survive the Chaos - S4H151 - SAP TechED Barcelona 2017 - LectureSurvive the Chaos - S4H151 - SAP TechED Barcelona 2017 - Lecture
Survive the Chaos - S4H151 - SAP TechED Barcelona 2017 - LectureRainer Winkler
 
Educational courses/tutorialoutlet.com
Educational courses/tutorialoutlet.comEducational courses/tutorialoutlet.com
Educational courses/tutorialoutlet.comCrookstonz
 
Cis 247 all i labs
Cis 247 all i labsCis 247 all i labs
Cis 247 all i labsccis224477
 
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.comPos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.comULLPTT
 
Wireframe and MVP
Wireframe and MVPWireframe and MVP
Wireframe and MVPLian Xun
 
POS 408 Education Specialist / snaptutorial.com
POS 408 Education Specialist / snaptutorial.comPOS 408 Education Specialist / snaptutorial.com
POS 408 Education Specialist / snaptutorial.comMcdonaldRyan107
 
Cis 170 ilab 2 of 7
Cis 170 ilab 2 of 7Cis 170 ilab 2 of 7
Cis 170 ilab 2 of 7solutionjug4
 

Ähnlich wie Term 3 class8_2019-2020 (20)

30500932 ictl-form-two-yearly-plan-rancangan-tahunan-ictl-ting-2
30500932 ictl-form-two-yearly-plan-rancangan-tahunan-ictl-ting-230500932 ictl-form-two-yearly-plan-rancangan-tahunan-ictl-ting-2
30500932 ictl-form-two-yearly-plan-rancangan-tahunan-ictl-ting-2
 
Class9 js word_quar2018
Class9 js word_quar2018Class9 js word_quar2018
Class9 js word_quar2018
 
Rancangan tahunan-ictl-form-2-2013
Rancangan tahunan-ictl-form-2-2013Rancangan tahunan-ictl-form-2-2013
Rancangan tahunan-ictl-form-2-2013
 
Cis247 i lab 1 of 7 creating a user interface
Cis247 i lab 1 of 7 creating a user interfaceCis247 i lab 1 of 7 creating a user interface
Cis247 i lab 1 of 7 creating a user interface
 
Cis247 a ilab 1 of 7 creating a user interface
Cis247 a ilab 1 of 7 creating a user interfaceCis247 a ilab 1 of 7 creating a user interface
Cis247 a ilab 1 of 7 creating a user interface
 
class-viii.pdf
class-viii.pdfclass-viii.pdf
class-viii.pdf
 
Cis247 a ilab 1 of 7 creating a user interface
Cis247 a ilab 1 of 7 creating a user interfaceCis247 a ilab 1 of 7 creating a user interface
Cis247 a ilab 1 of 7 creating a user interface
 
Cis247 i lab 1 of 7 creating a user interface
Cis247 i lab 1 of 7 creating a user interfaceCis247 i lab 1 of 7 creating a user interface
Cis247 i lab 1 of 7 creating a user interface
 
Devry cis-170-c-i lab-6-of-7-menu
Devry cis-170-c-i lab-6-of-7-menuDevry cis-170-c-i lab-6-of-7-menu
Devry cis-170-c-i lab-6-of-7-menu
 
Devry cis-170-c-i lab-6-of-7-menu
Devry cis-170-c-i lab-6-of-7-menuDevry cis-170-c-i lab-6-of-7-menu
Devry cis-170-c-i lab-6-of-7-menu
 
Survive the Chaos - S4H151 - SAP TechED Barcelona 2017 - Lecture
Survive the Chaos - S4H151 - SAP TechED Barcelona 2017 - LectureSurvive the Chaos - S4H151 - SAP TechED Barcelona 2017 - Lecture
Survive the Chaos - S4H151 - SAP TechED Barcelona 2017 - Lecture
 
Educational courses/tutorialoutlet.com
Educational courses/tutorialoutlet.comEducational courses/tutorialoutlet.com
Educational courses/tutorialoutlet.com
 
Cis 247 all i labs
Cis 247 all i labsCis 247 all i labs
Cis 247 all i labs
 
Digital Literacy Objectives
Digital Literacy ObjectivesDigital Literacy Objectives
Digital Literacy Objectives
 
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.comPos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
Pos 409 pos409 pos 409 forecasting and strategic planning -uopstudy.com
 
Week 2
Week 2Week 2
Week 2
 
Wireframe and MVP
Wireframe and MVPWireframe and MVP
Wireframe and MVP
 
POS 408 Education Specialist / snaptutorial.com
POS 408 Education Specialist / snaptutorial.comPOS 408 Education Specialist / snaptutorial.com
POS 408 Education Specialist / snaptutorial.com
 
Class ix
Class ixClass ix
Class ix
 
Cis 170 ilab 2 of 7
Cis 170 ilab 2 of 7Cis 170 ilab 2 of 7
Cis 170 ilab 2 of 7
 

Kürzlich hochgeladen

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhikauryashika82
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsTechSoup
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphThiyagu K
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3JemimahLaneBuaron
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationnomboosow
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Sapana Sha
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdfSoniaTolstoy
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingTeacherCyreneCayanan
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajanpragatimahajan3
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...fonyou31
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfAdmir Softic
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room servicediscovermytutordmt
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...PsychoTech Services
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdfQucHHunhnh
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Celine George
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfchloefrazer622
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfagholdier
 

Kürzlich hochgeladen (20)

Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3Q4-W6-Restating Informational Text Grade 3
Q4-W6-Restating Informational Text Grade 3
 
Interactive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communicationInteractive Powerpoint_How to Master effective communication
Interactive Powerpoint_How to Master effective communication
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111Call Girls in Dwarka Mor Delhi Contact Us 9654467111
Call Girls in Dwarka Mor Delhi Contact Us 9654467111
 
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdfBASLIQ CURRENT LOOKBOOK  LOOKBOOK(1) (1).pdf
BASLIQ CURRENT LOOKBOOK LOOKBOOK(1) (1).pdf
 
fourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writingfourth grading exam for kindergarten in writing
fourth grading exam for kindergarten in writing
 
social pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajansocial pharmacy d-pharm 1st year by Pragati K. Mahajan
social pharmacy d-pharm 1st year by Pragati K. Mahajan
 
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
Ecosystem Interactions Class Discussion Presentation in Blue Green Lined Styl...
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
9548086042 for call girls in Indira Nagar with room service
9548086042  for call girls in Indira Nagar  with room service9548086042  for call girls in Indira Nagar  with room service
9548086042 for call girls in Indira Nagar with room service
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
IGNOU MSCCFT and PGDCFT Exam Question Pattern: MCFT003 Counselling and Family...
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17Advanced Views - Calendar View in Odoo 17
Advanced Views - Calendar View in Odoo 17
 
Disha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdfDisha NEET Physics Guide for classes 11 and 12.pdf
Disha NEET Physics Guide for classes 11 and 12.pdf
 
Holdier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdfHoldier Curriculum Vitae (April 2024).pdf
Holdier Curriculum Vitae (April 2024).pdf
 

Term 3 class8_2019-2020

  • 1. Open Office 2 mark questions: 1. What is Open Office ? 2. List out the applications included in Open Office package. 3. How do you save a document in Writer ? 4. Define Formatting. 5. What are the two types of graphics that can be inserted in your document ? 6. How do you insert a drawing object in Writer ? 7. List out the steps to insert pictures in Writer. 8. What is Impress ? 9. List out the steps to choose a slide layout. 10. Define template. 11. List out the steps to apply transition effect to a slide. 12. How do you view a presentation ? 13. What is Open Office Calc ? 14. State the formula basics in Calc. 15. Define Chart. 16. Write the steps to create a chart in Calc. 3 mark questions: 1. How do you format text in Writer ? 2. Write a note on creating a new presentation. 3. How do you apply slide design to your slide ? 4. How do you apply custom animation effect ? 5. How do you format data in Calc ? 6. How to use a function in Calc ? 5 mark questions: 1. Explain the different ways to view a Slide. 2. Explain the following functions in Calc. (i) SUM (ii) AVERAGE (iii) COUNT (iv) MAX (v) MIN Adobe Photoshop CS6 2 mark questions: 1. What is Photoshop ? 2. What is Resolution ? 3. How do you save your image file in Photoshop ? 4. Write a note on Move tool in Ps. 5. Define Cropping. 6. List out the steps to use the crop tool. 3 mark questions: 1. How do you start Photoshop CS6 ? 2. List out the steps to open an existing file in Ps. 3. Write a note on Lasso tools. 4. List out the steps to use the Move tool. 5. Write a note on Magic Wand tool. 6. Write a note on Quick Selection tool. Class 8
  • 2. 7. Write a note on Brush tool in Ps. 8. Write the steps to use the Color Replacement tool. 9. Explain Eraser tool in Ps. 10. Write a note on Paint Bucket tool. 11. What is Horizontal Type tool in Ps ? 12. Explain Clone Stamp tool. 5 mark questions: 1. Write the steps to create a new Photoshop image file. 2. Explain Marquee tools in Photoshop. 3. Explain Copying and Pasting selection in Photoshop. 4. Explain Filters in Photoshop. App Development 2 mark questions: 1. Define App. 2. Write a note on Web App. 3. List out the popular app development web sites. 4. Mention the three phases of app development. 5. How do you view e-passbook of SBI account. 3 mark questions: 1. Write a note on Native App. 5 mark questions: 1. Explain the procedure to build an App. Windows Movie Maker 2 mark questions: 1. What is Windows Movie Maker ? 3 mark questions: 1. List out the steps to start Windows Movie Maker. 2. List out the steps involved to create a movie. 3. Explain the use of title, caption and credits commands to add text in Movie Maker. 4. How do you save movie in a project ? 5 mark questions: 1. Explain the screen elements of Windows Movie Maker. 2. How do you add photos and video clips to movie maker ? 3. List out the steps to add a title in Movie Maker. 4. Write the steps to add a caption to the movie. 5. List down the steps to add credits to the movie. 6. How do you apply transition on the movie ? 7. Explain the procedure to trim the duration of a video clip.
  • 3. More on Adobe Flash Professional CS6 2 mark questions: 1. What is Adobe Flash Professional CS6 ? 2. How do you create a new flash file ? 3. Differentiate between frame and key frame. 4. List out the steps to delete a frame ? 5. Define Animation. 6. How do you test your movie in flash ? 7. What do you mean by frame-by-frame animation ? 3 mark questions: 1. What is the use of timeline panel in flash ? 2. How do you insert a frame/key frame ? 3. Write a note on layers in flash. 4. How do you lock/unlock layers in flash ? 5. How do you show/hide layers in flash ? 6. What is symbol ? State the types of symbols. 7. Write the steps to create a symbol. 5 mark questions: 1. Write the steps to create an animation using create Classic Tween option. 2. Write the procedure to create Shape Tween. 3. List out the steps to create frame-by-frame animation. More on Java (BlueJ/NetBeans) 2 mark questions: 1. Define token set. 2. Define variables in an example. 3. What are identifiers ? 4. Define operators. 5. What is operator precedence ? 6. Define Control Structure. Mention its types. 7. What is looping ? 8. List out the steps to create a form in NetBeans. 9. Differentiate between getText() and setText(). 10. How do you add code in Java NetBeans ? 11. How do you run the application in NetBeans ? 3 mark questions: 1. Write a note on constants. 2. Write a note on data type. 3. Tabulate the data types used in Java. 4. Explain sequential control structure. 5. Explain selective control structure. 6. What are the three basic types of loops used in Java ? 7. How do you create a project in NetBeans ? 8. Write a note on adding components to a form. 9. Explain the use and common properties of jLabel component. 10. Explain the use and common properties of jTextField component. 11. Explain the use and common properties of jButton component.
  • 4. 5 mark questions: 1. Tabulate the operators used in Java. 2. Explain the structure of a Java program. 3. List out the steps to create a Java BlueJ program. 4. Explain the looping control structure in Java with suitable examples. 5. Write a program in JAVA to find area and perimeter of a rectangle with length 5 and breadth 8. 6. Write a program to find out the cube of 3. 7. Write a program in JAVA to display the sum of first 10 numbers using for loop. 8. Write a JAVA program to display first 10 even numbers using while loop. 9. Write a JAVA program to display factorial of 5 using do . . . while loop. 10. Write a program in JAVA to find Simple Interest (p=1000, r=10,n=5). 11. List out the steps involved in creating a JAVA NetBeans application. LAB EXERCISES 1. Open Writer and type a paragraph on ‘Computer Ethics’. Apply formatting styles and save your file. 2. Open Impress and make a presentation on ‘Safety Measures on Road’. Apply slide design and slide transition effects. 3. Open Calc and prepare a mark sheet of students in your class. Calculate their average marks and make a Pie chart. 4. Open an image in Photoshop and do the following:  Crop it  Type your name  Use Brush tool and give different strokes.  Apply different filters on it.  Save the file. 5. Write a program in JAVA to find area and perimeter of a rectangle with length 5 and breadth 8. //Area and Perimeter of Rectangle class Rectangle { public static void main(String args[]) { int length=5,breadth=8,area,perimeter; area=length*breadth; perimeter=2*(length*breadth); System.out.println("Area of Rectangle=" +area); System.out.println("Perimeter of Rectangle=" +perimeter); } } 6. Write a program to find out the cube of 3. //Cube of 3 class Cube { public static void main(String args[]) { int num=3,cube; cube=num*num*num; System.out.println("Cube of 3 is " +cube); } }
  • 5. 7. Write a program in JAVA to display the sum of first 10 numbers using for loop. //Sum of first 10 numbers class SumFirst10 { public static void main(String args[]) { int i,sum=0; for(i=1;i<=10;i++) { sum+=i; } System.out.println("Sum of first 10 numbers =" +sum); } } 8. Write a JAVA program to display first 10 even numbers using while loop. //First 10 Even Numbers class First10Even { public static void main(String args[]) { int i=2; while(i<=20) { System.out.println(i +" "); i+=2; } } } 9. Write a JAVA program to display factorial of 5 using do . . . while loop. //Factorial of 5 class Fact5 { public static void main(String args[]) { int i=1,fact=1; do { fact=fact*i; i++; }while(i<=5); System.out.println("Factorial of 5 is " +fact); } }
  • 6. 10. Write a program in JAVA to find Simple Interest (p=1000, r=10,n=5). //smaller number between A and B class Small2 { public static void main(String args[]) { int p=1000,r=10,n=5,si; si=(p*n*r)/100; System.out.println("Simple Interest=" +si); } } ***********************