SlideShare uma empresa Scribd logo
1 de 6
Baixar para ler offline
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);
}
}
***********************

Mais conteúdo relacionado

Mais procurados

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
 

Mais procurados (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
 

Semelhante a 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 7comp274
 

Semelhante a 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
 

Último

Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfChris Hunter
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactPECB
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...Poonam Aher Patil
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxheathfieldcps1
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
Role Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptxRole Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptxNikitaBankoti2
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDThiyagu K
 
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
 
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
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introductionMaksud Ahmed
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxnegromaestrong
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104misteraugie
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...Nguyen Thanh Tu Collection
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxVishalSingh1417
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdfQucHHunhnh
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docxPoojaSen20
 
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
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 

Último (20)

Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
Beyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global ImpactBeyond the EU: DORA and NIS 2 Directive's Global Impact
Beyond the EU: DORA and NIS 2 Directive's Global Impact
 
General Principles of Intellectual Property: Concepts of Intellectual Proper...
General Principles of Intellectual Property: Concepts of Intellectual  Proper...General Principles of Intellectual Property: Concepts of Intellectual  Proper...
General Principles of Intellectual Property: Concepts of Intellectual Proper...
 
The basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptxThe basics of sentences session 3pptx.pptx
The basics of sentences session 3pptx.pptx
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Role Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptxRole Of Transgenic Animal In Target Validation-1.pptx
Role Of Transgenic Animal In Target Validation-1.pptx
 
Measures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SDMeasures of Dispersion and Variability: Range, QD, AD and SD
Measures of Dispersion and Variability: Range, QD, AD and SD
 
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptxINDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
INDIA QUIZ 2024 RLAC DELHI UNIVERSITY.pptx
 
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
 
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
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Seal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptxSeal of Good Local Governance (SGLG) 2024Final.pptx
Seal of Good Local Governance (SGLG) 2024Final.pptx
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
TỔNG ÔN TẬP THI VÀO LỚP 10 MÔN TIẾNG ANH NĂM HỌC 2023 - 2024 CÓ ĐÁP ÁN (NGỮ Â...
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Unit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptxUnit-IV; Professional Sales Representative (PSR).pptx
Unit-IV; Professional Sales Representative (PSR).pptx
 
1029-Danh muc Sach Giao Khoa khoi 6.pdf
1029-Danh muc Sach Giao Khoa khoi  6.pdf1029-Danh muc Sach Giao Khoa khoi  6.pdf
1029-Danh muc Sach Giao Khoa khoi 6.pdf
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
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
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).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); } } ***********************