SlideShare a Scribd company logo
1 of 5
Download to read offline
More on ICT
2 mark questions:
1. What is Transportation ?
2. What do you mean by taxiway ?
3. Define Preflight.
4. What is Descent ?
5. What is Approach ?
6. What do you mean by Google’s Robotic Driverless Car ?
3 mark questions:
1. What is the use of Air Traffic Controller ?
2. List out the various levels of Air Traffic Control System.
3. Write a note on Landing.
4. Write a note on Departure.
5. What do you mean by ‘In the Air’ ?
6. What do you mean by Driverless Car ?
7. Write a note on Cubelets.
8. What is Simple Critter ?
9. Write a note on Google Drive.
5 mark questions:
1. Explain Global Positioning System.
2. Explain the system that works together to control a Driverless Car.
3. Explain ANPR system in detail.
4. Explain the types of blocks in Cubelets.
5. Write down the procedure to use the Google Drive app.
6. How do you use Google Maps app ?
Enjoy Picasa
2 mark questions:
1. What is Picasa ?
3 mark questions:
1. State the uses of Picasa.
2. How do you open a file in Picasa ?
3. How do you create a picture collage ?
Simulation
5 mark questions:
1. List out the steps to assemble the CPU by placing each part at its place.
Class 7
Getting Started with C++
2 mark questions:
1. Define Class and Object.
2. What is Abstraction ?
3. Define Inheritance.
4. Define Polymorphism.
5. State the difference between C and C++.
6. List out the procedure to execute a C++ program.
7. Define Tokens.
8. Define Keywords.
9. Define a Variable.
10. Define Control Structures.
11. Write the syntax of if . . . else statement.
12. Define Looping.
3 mark questions:
1. Write a note on C++.
2. Write a note on Procedural Programming.
3. What is Object Oriented Programming ?
4. What is Encapsulation ?
5. Explain the components of C++ editor.
6. Write a note on Data Types in C++.
7. Tabulate the data types used in C++.
8. How do you declare a variable ?
9. Define for loop. Write its syntax.
10. Write a C++ program to find the product of 3 numbers.
5 mark questions:
1. Write the features of Object Oriented Programming.
2. Tabulate the operators used in C++.
3. Explain cin and cout statements with examples.
4. Explain the structure of a C++ program.
5. Write a C++ program to find the area of a circle and a rectangle.
6. Write a C++ program to find the sum of all even integer numbers between 1 and 100.
7. Write a C++ program to input the temperature in Fahrenheit and convert it into Celsius.
Getting Started with Java (BlueJ/NetBeans)
2 mark questions:
1. What is Java ?
2. How do you start BlueJ ?
3. What is an Object ?
4. Name the programmers who initiated Java language project in 1991.
3 mark questions:
1. Write a note on Java Virtual Machine.
2. Draw the block diagram of Java Compilation Process.
3. List out the features of Java.
4. What is BlueJ ?
5. List out the three basic steps to create an application in Java.
6. Write a note on NetBeans Java.
7. How do you start NetBeans ?
HTML
2 mark questions:
1. What is HTML ?
2. State few popular Markup languages.
3. Write a note on WYSIWYG.
3 mark questions:
1. List out the features of HTML.
2. Explain the tools required to create a web page.
Control Statements in Q BASIC
2 mark questions:
1. What is the use of if statement in Q BASIC ?
2. Write the syntax of IF-THEN-ELSE-ENDIF statement.
3 mark questions:
1. Explain IF-THEN-ENDIF statement in Q BAISC.
2. Explain Nested IF statement in BASIC.
3. Write the syntax of Select Case statement.
4. Explain WHILE-WEND loop.
5. Explain DO-WHILE loop.
6. Write about DO-UNTIL loop.
7. Write a BASIC program to print your name five times using WHILE WEND loop.
5 mark questions:
1. Explain FOR-NEXT loop with an example.
2. Write a BASIC program to input Cost Price (CP) and Selling Price (SP) and find the Profit or Loss.
3. Write a BASIC program to accept a number and print the days of the week.
4. Write a BASIC program to print the multiplication table of any number entered by the user.
5. Write a BASIC program to print ODD numbers from 1 to 10 using DO-WHILE loop.
6. Write a BASIC program to print numbers from 1 to 5 in reverse order using DO-UNTIL loop.
7. Write a BASIC program to print the factorial of 5.
Lab Exercises - BASIC
Write a BASIC program to input Cost Price (CP) and Selling Price (SP) and find the Profit or Loss.
REM PROFIT OR LOSS
INPUT "Enter Cost Price:", CP
INPUT "Enter Selling Price:", SP
IF SP>CS THEN
PRINT "PROFIT"
ELSE
PRINT "LOSS"
END IF
END
Write a BASIC program to accept a number and print the days of the week.
REM DAYS OF THE WEEK
INPUT "Enter a number (1-7):", NUM
SELECT CASE NUM
CASE 1
PRINT "SUNDAY"
CASE 2
PRINT "MONDAY"
CASE 3
PRINT "TUESDAY"
CASE 4
PRINT "WEDNESDAY"
CASE 5
PRINT "THURSDAY"
CASE 6
PRINT "FRIDAY"
CASE 7
PRINT "SATURDAY"
CASE ELSE
PRINT "INVALID NUMBER"
END SELECT
END
Write a BASIC program to print your name five times using WHILE WEND loop.
REM PRINT MY NAME
I = 1
WHILE I <= 5
PRINT "ANDREW"
I = I + 1
WEND
END
Write a BASIC program to print the multiplication table of any number entered by the user.
REM MULTIPLICATION TABLE
INPUT "What table:", T
FOR I = 1 TO 10
PRINT I ; " X " ; T ; " = " ; I*T
NEXT I
END
Write a BASIC program to print ODD numbers from 1 to 10 using DO-WHILE loop.
REM ODD NUMBERS
I = 1
DO WHILE I<=10
PRINT I
I = I + 2
LOOP
END
Write a BASIC program to print numbers from 1 to 5 in reverse order using DO-UNTIL loop.
REM PRINT REVERSE
I = 5
DO UNTIL I<=0
PRINT I
I = I - 1
LOOP
END
Write a BASIC program to print the factorial of 5.
REM FACTORIAL OF 5
FACT = 1
FOR I = 1 TO 5
FACT = FACT * I
NEXT I
PRINT "Factorial of 5 is " ;FACT
END

More Related Content

What's hot

A Quick Simple MS Excel Macro
A Quick Simple MS Excel MacroA Quick Simple MS Excel Macro
A Quick Simple MS Excel MacroPranav Ghode
 
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
 
Outlook 2013 lesson 2 Overview presentation
Outlook 2013 lesson 2 Overview presentationOutlook 2013 lesson 2 Overview presentation
Outlook 2013 lesson 2 Overview presentationOCP-lab
 
CLASS VI COMPUTERS
CLASS VI COMPUTERS CLASS VI COMPUTERS
CLASS VI COMPUTERS Rc Os
 
Creating a Microsoft Excel Macro
Creating a Microsoft Excel MacroCreating a Microsoft Excel Macro
Creating a Microsoft Excel MacroLauraly DuBois
 
Intro macros in Excel 2007
Intro macros in Excel 2007Intro macros in Excel 2007
Intro macros in Excel 2007Hasrudin Tazep
 
Unprotect Excel Worksheet When Forgetting Password
Unprotect Excel Worksheet When Forgetting PasswordUnprotect Excel Worksheet When Forgetting Password
Unprotect Excel Worksheet When Forgetting PasswordScott Leen
 
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
 
Outlook 2013 lesson 1 Overview presentation
Outlook 2013 lesson 1 Overview presentationOutlook 2013 lesson 1 Overview presentation
Outlook 2013 lesson 1 Overview presentationOCP-lab
 
Microsoft Office 2003 Creating Macros
Microsoft Office 2003 Creating MacrosMicrosoft Office 2003 Creating Macros
Microsoft Office 2003 Creating MacrosS Burks
 
Top 10 Excel Beginner Basics
Top 10 Excel Beginner BasicsTop 10 Excel Beginner Basics
Top 10 Excel Beginner BasicsWiley
 
Empowerment Technologies - Module 4
Empowerment Technologies - Module 4Empowerment Technologies - Module 4
Empowerment Technologies - Module 4Jesus Rances
 
Microsoft Outlook 2013 Quickstart
Microsoft Outlook 2013 QuickstartMicrosoft Outlook 2013 Quickstart
Microsoft Outlook 2013 Quickstartcomatsg
 

What's hot (20)

A Quick Simple MS Excel Macro
A Quick Simple MS Excel MacroA Quick Simple MS Excel Macro
A Quick Simple MS Excel Macro
 
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
 
Outlook 2013 lesson 2 Overview presentation
Outlook 2013 lesson 2 Overview presentationOutlook 2013 lesson 2 Overview presentation
Outlook 2013 lesson 2 Overview presentation
 
CLASS VI COMPUTERS
CLASS VI COMPUTERS CLASS VI COMPUTERS
CLASS VI COMPUTERS
 
Creating a Microsoft Excel Macro
Creating a Microsoft Excel MacroCreating a Microsoft Excel Macro
Creating a Microsoft Excel Macro
 
Intro macros in Excel 2007
Intro macros in Excel 2007Intro macros in Excel 2007
Intro macros in Excel 2007
 
Unprotect Excel Worksheet When Forgetting Password
Unprotect Excel Worksheet When Forgetting PasswordUnprotect Excel Worksheet When Forgetting Password
Unprotect Excel Worksheet When Forgetting Password
 
Productivity tools
Productivity toolsProductivity tools
Productivity tools
 
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 !!
 
Outlook 2013 lesson 1 Overview presentation
Outlook 2013 lesson 1 Overview presentationOutlook 2013 lesson 1 Overview presentation
Outlook 2013 lesson 1 Overview presentation
 
Visual basic
Visual basicVisual basic
Visual basic
 
Microsoft Office 2003 Creating Macros
Microsoft Office 2003 Creating MacrosMicrosoft Office 2003 Creating Macros
Microsoft Office 2003 Creating Macros
 
Top 10 Excel Beginner Basics
Top 10 Excel Beginner BasicsTop 10 Excel Beginner Basics
Top 10 Excel Beginner Basics
 
Tuotorials
TuotorialsTuotorials
Tuotorials
 
Empowerment Technologies - Module 4
Empowerment Technologies - Module 4Empowerment Technologies - Module 4
Empowerment Technologies - Module 4
 
Learn Excel Macro
Learn Excel Macro  Learn Excel Macro
Learn Excel Macro
 
27 e
27 e27 e
27 e
 
Microsoft Outlook 2013 Quickstart
Microsoft Outlook 2013 QuickstartMicrosoft Outlook 2013 Quickstart
Microsoft Outlook 2013 Quickstart
 
View Tab in Ms-Excel
View Tab in Ms-ExcelView Tab in Ms-Excel
View Tab in Ms-Excel
 
Getting started with Outlook
Getting started with OutlookGetting started with Outlook
Getting started with Outlook
 

Similar to Class7 term3 2019-2020

Class9 js word_quar2018
Class9 js word_quar2018Class9 js word_quar2018
Class9 js word_quar2018Andrew Raj
 
Devry cis-170-c-i lab-5-of-7-arrays-and-strings
Devry cis-170-c-i lab-5-of-7-arrays-and-stringsDevry cis-170-c-i lab-5-of-7-arrays-and-strings
Devry cis-170-c-i lab-5-of-7-arrays-and-stringsnoahjamessss
 
Devry cis-170-c-i lab-5-of-7-arrays-and-strings
Devry cis-170-c-i lab-5-of-7-arrays-and-stringsDevry cis-170-c-i lab-5-of-7-arrays-and-strings
Devry cis-170-c-i lab-5-of-7-arrays-and-stringscskvsmi44
 
Devry cis 170 c i lab 5 of 7 arrays and strings
Devry cis 170 c i lab 5 of 7 arrays and stringsDevry cis 170 c i lab 5 of 7 arrays and strings
Devry cis 170 c i lab 5 of 7 arrays and stringsshyaminfo04
 
Devry cis 170 c i lab 5 of 7 arrays and strings
Devry cis 170 c i lab 5 of 7 arrays and stringsDevry cis 170 c i lab 5 of 7 arrays and strings
Devry cis 170 c i lab 5 of 7 arrays and stringsash52393
 
COMP 122 Entire Course NEW
COMP 122 Entire Course NEWCOMP 122 Entire Course NEW
COMP 122 Entire Course NEWshyamuopeight
 
Devry cis 170 c i lab 5 of 7 arrays and strings
Devry cis 170 c i lab 5 of 7 arrays and stringsDevry cis 170 c i lab 5 of 7 arrays and strings
Devry cis 170 c i lab 5 of 7 arrays and stringsjody zoll
 
Cis 170 c ilab 5 of 7 arrays and strings
Cis 170 c ilab 5 of 7 arrays and stringsCis 170 c ilab 5 of 7 arrays and strings
Cis 170 c ilab 5 of 7 arrays and stringsCIS321
 
COMP 2213X2 Assignment #2 Parts A and BDue February 3 in cla.docx
COMP 2213X2 Assignment #2 Parts A and BDue February 3 in cla.docxCOMP 2213X2 Assignment #2 Parts A and BDue February 3 in cla.docx
COMP 2213X2 Assignment #2 Parts A and BDue February 3 in cla.docxdonnajames55
 
Pune University MCA [Management] 2020-Sample Questions
Pune University MCA [Management] 2020-Sample QuestionsPune University MCA [Management] 2020-Sample Questions
Pune University MCA [Management] 2020-Sample Questionsshailendrashinde9
 
Week 2PRG 218 Variables and Input and Output OperationsYou w.docx
Week 2PRG 218   Variables and Input and Output OperationsYou w.docxWeek 2PRG 218   Variables and Input and Output OperationsYou w.docx
Week 2PRG 218 Variables and Input and Output OperationsYou w.docxmelbruce90096
 
BTE 320-498 Summer 2017 Take Home Exam (200 poi.docx
BTE 320-498 Summer 2017 Take Home Exam (200 poi.docxBTE 320-498 Summer 2017 Take Home Exam (200 poi.docx
BTE 320-498 Summer 2017 Take Home Exam (200 poi.docxAASTHA76
 
Code tuning strategies
Code tuning strategiesCode tuning strategies
Code tuning strategiesAsha Sari
 
Spring 2014 CSCI 111 Final exam of 1 61. (2 points) Fl.docx
Spring 2014 CSCI 111 Final exam   of 1 61. (2 points) Fl.docxSpring 2014 CSCI 111 Final exam   of 1 61. (2 points) Fl.docx
Spring 2014 CSCI 111 Final exam of 1 61. (2 points) Fl.docxrafbolet0
 
CIS 170 Effective Communication - tutorialrank.com
CIS 170 Effective Communication - tutorialrank.comCIS 170 Effective Communication - tutorialrank.com
CIS 170 Effective Communication - tutorialrank.comBartholomew19
 

Similar to Class7 term3 2019-2020 (20)

Class9 js word_quar2018
Class9 js word_quar2018Class9 js word_quar2018
Class9 js word_quar2018
 
Ict question
Ict questionIct question
Ict question
 
Devry cis-170-c-i lab-5-of-7-arrays-and-strings
Devry cis-170-c-i lab-5-of-7-arrays-and-stringsDevry cis-170-c-i lab-5-of-7-arrays-and-strings
Devry cis-170-c-i lab-5-of-7-arrays-and-strings
 
Devry cis-170-c-i lab-5-of-7-arrays-and-strings
Devry cis-170-c-i lab-5-of-7-arrays-and-stringsDevry cis-170-c-i lab-5-of-7-arrays-and-strings
Devry cis-170-c-i lab-5-of-7-arrays-and-strings
 
Devry cis 170 c i lab 5 of 7 arrays and strings
Devry cis 170 c i lab 5 of 7 arrays and stringsDevry cis 170 c i lab 5 of 7 arrays and strings
Devry cis 170 c i lab 5 of 7 arrays and strings
 
Devry cis 170 c i lab 5 of 7 arrays and strings
Devry cis 170 c i lab 5 of 7 arrays and stringsDevry cis 170 c i lab 5 of 7 arrays and strings
Devry cis 170 c i lab 5 of 7 arrays and strings
 
COMP 122 Entire Course NEW
COMP 122 Entire Course NEWCOMP 122 Entire Course NEW
COMP 122 Entire Course NEW
 
Devry cis 170 c i lab 5 of 7 arrays and strings
Devry cis 170 c i lab 5 of 7 arrays and stringsDevry cis 170 c i lab 5 of 7 arrays and strings
Devry cis 170 c i lab 5 of 7 arrays and strings
 
Week 2
Week 2Week 2
Week 2
 
Lecture 1
Lecture 1Lecture 1
Lecture 1
 
Cis 170 c ilab 5 of 7 arrays and strings
Cis 170 c ilab 5 of 7 arrays and stringsCis 170 c ilab 5 of 7 arrays and strings
Cis 170 c ilab 5 of 7 arrays and strings
 
COMP 2213X2 Assignment #2 Parts A and BDue February 3 in cla.docx
COMP 2213X2 Assignment #2 Parts A and BDue February 3 in cla.docxCOMP 2213X2 Assignment #2 Parts A and BDue February 3 in cla.docx
COMP 2213X2 Assignment #2 Parts A and BDue February 3 in cla.docx
 
Week 5
Week 5Week 5
Week 5
 
Week 5
Week 5Week 5
Week 5
 
Pune University MCA [Management] 2020-Sample Questions
Pune University MCA [Management] 2020-Sample QuestionsPune University MCA [Management] 2020-Sample Questions
Pune University MCA [Management] 2020-Sample Questions
 
Week 2PRG 218 Variables and Input and Output OperationsYou w.docx
Week 2PRG 218   Variables and Input and Output OperationsYou w.docxWeek 2PRG 218   Variables and Input and Output OperationsYou w.docx
Week 2PRG 218 Variables and Input and Output OperationsYou w.docx
 
BTE 320-498 Summer 2017 Take Home Exam (200 poi.docx
BTE 320-498 Summer 2017 Take Home Exam (200 poi.docxBTE 320-498 Summer 2017 Take Home Exam (200 poi.docx
BTE 320-498 Summer 2017 Take Home Exam (200 poi.docx
 
Code tuning strategies
Code tuning strategiesCode tuning strategies
Code tuning strategies
 
Spring 2014 CSCI 111 Final exam of 1 61. (2 points) Fl.docx
Spring 2014 CSCI 111 Final exam   of 1 61. (2 points) Fl.docxSpring 2014 CSCI 111 Final exam   of 1 61. (2 points) Fl.docx
Spring 2014 CSCI 111 Final exam of 1 61. (2 points) Fl.docx
 
CIS 170 Effective Communication - tutorialrank.com
CIS 170 Effective Communication - tutorialrank.comCIS 170 Effective Communication - tutorialrank.com
CIS 170 Effective Communication - tutorialrank.com
 

Recently uploaded

Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Krashi Coaching
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfSumit Tiwari
 
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
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentInMediaRes1
 
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
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfsanyamsingh5019
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxAvyJaneVismanos
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxNirmalaLoungPoorunde1
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxUnboundStockton
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionSafetyChain Software
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxsocialsciencegdgrohi
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxiammrhaywood
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️9953056974 Low Rate Call Girls In Saket, Delhi NCR
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Celine George
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon AUnboundStockton
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdfssuser54595a
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTiammrhaywood
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Educationpboyjonauth
 

Recently uploaded (20)

Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
Kisan Call Centre - To harness potential of ICT in Agriculture by answer farm...
 
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdfEnzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
Enzyme, Pharmaceutical Aids, Miscellaneous Last Part of Chapter no 5th.pdf
 
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
 
Alper Gobel In Media Res Media Component
Alper Gobel In Media Res Media ComponentAlper Gobel In Media Res Media Component
Alper Gobel In Media Res Media Component
 
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
 
Sanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdfSanyam Choudhary Chemistry practical.pdf
Sanyam Choudhary Chemistry practical.pdf
 
Final demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptxFinal demo Grade 9 for demo Plan dessert.pptx
Final demo Grade 9 for demo Plan dessert.pptx
 
Employee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptxEmployee wellbeing at the workplace.pptx
Employee wellbeing at the workplace.pptx
 
Blooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docxBlooming Together_ Growing a Community Garden Worksheet.docx
Blooming Together_ Growing a Community Garden Worksheet.docx
 
Mastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory InspectionMastering the Unannounced Regulatory Inspection
Mastering the Unannounced Regulatory Inspection
 
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptxHistory Class XII Ch. 3 Kinship, Caste and Class (1).pptx
History Class XII Ch. 3 Kinship, Caste and Class (1).pptx
 
9953330565 Low Rate Call Girls In Rohini Delhi NCR
9953330565 Low Rate Call Girls In Rohini  Delhi NCR9953330565 Low Rate Call Girls In Rohini  Delhi NCR
9953330565 Low Rate Call Girls In Rohini Delhi NCR
 
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptxSOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
SOCIAL AND HISTORICAL CONTEXT - LFTVD.pptx
 
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
call girls in Kamla Market (DELHI) 🔝 >༒9953330565🔝 genuine Escort Service 🔝✔️✔️
 
Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17Computed Fields and api Depends in the Odoo 17
Computed Fields and api Depends in the Odoo 17
 
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
Model Call Girl in Tilak Nagar Delhi reach out to us at 🔝9953056974🔝
 
Crayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon ACrayon Activity Handout For the Crayon A
Crayon Activity Handout For the Crayon A
 
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
18-04-UA_REPORT_MEDIALITERAСY_INDEX-DM_23-1-final-eng.pdf
 
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPTECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
ECONOMIC CONTEXT - LONG FORM TV DRAMA - PPT
 
Introduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher EducationIntroduction to ArtificiaI Intelligence in Higher Education
Introduction to ArtificiaI Intelligence in Higher Education
 

Class7 term3 2019-2020

  • 1. More on ICT 2 mark questions: 1. What is Transportation ? 2. What do you mean by taxiway ? 3. Define Preflight. 4. What is Descent ? 5. What is Approach ? 6. What do you mean by Google’s Robotic Driverless Car ? 3 mark questions: 1. What is the use of Air Traffic Controller ? 2. List out the various levels of Air Traffic Control System. 3. Write a note on Landing. 4. Write a note on Departure. 5. What do you mean by ‘In the Air’ ? 6. What do you mean by Driverless Car ? 7. Write a note on Cubelets. 8. What is Simple Critter ? 9. Write a note on Google Drive. 5 mark questions: 1. Explain Global Positioning System. 2. Explain the system that works together to control a Driverless Car. 3. Explain ANPR system in detail. 4. Explain the types of blocks in Cubelets. 5. Write down the procedure to use the Google Drive app. 6. How do you use Google Maps app ? Enjoy Picasa 2 mark questions: 1. What is Picasa ? 3 mark questions: 1. State the uses of Picasa. 2. How do you open a file in Picasa ? 3. How do you create a picture collage ? Simulation 5 mark questions: 1. List out the steps to assemble the CPU by placing each part at its place. Class 7
  • 2. Getting Started with C++ 2 mark questions: 1. Define Class and Object. 2. What is Abstraction ? 3. Define Inheritance. 4. Define Polymorphism. 5. State the difference between C and C++. 6. List out the procedure to execute a C++ program. 7. Define Tokens. 8. Define Keywords. 9. Define a Variable. 10. Define Control Structures. 11. Write the syntax of if . . . else statement. 12. Define Looping. 3 mark questions: 1. Write a note on C++. 2. Write a note on Procedural Programming. 3. What is Object Oriented Programming ? 4. What is Encapsulation ? 5. Explain the components of C++ editor. 6. Write a note on Data Types in C++. 7. Tabulate the data types used in C++. 8. How do you declare a variable ? 9. Define for loop. Write its syntax. 10. Write a C++ program to find the product of 3 numbers. 5 mark questions: 1. Write the features of Object Oriented Programming. 2. Tabulate the operators used in C++. 3. Explain cin and cout statements with examples. 4. Explain the structure of a C++ program. 5. Write a C++ program to find the area of a circle and a rectangle. 6. Write a C++ program to find the sum of all even integer numbers between 1 and 100. 7. Write a C++ program to input the temperature in Fahrenheit and convert it into Celsius. Getting Started with Java (BlueJ/NetBeans) 2 mark questions: 1. What is Java ? 2. How do you start BlueJ ? 3. What is an Object ? 4. Name the programmers who initiated Java language project in 1991.
  • 3. 3 mark questions: 1. Write a note on Java Virtual Machine. 2. Draw the block diagram of Java Compilation Process. 3. List out the features of Java. 4. What is BlueJ ? 5. List out the three basic steps to create an application in Java. 6. Write a note on NetBeans Java. 7. How do you start NetBeans ? HTML 2 mark questions: 1. What is HTML ? 2. State few popular Markup languages. 3. Write a note on WYSIWYG. 3 mark questions: 1. List out the features of HTML. 2. Explain the tools required to create a web page. Control Statements in Q BASIC 2 mark questions: 1. What is the use of if statement in Q BASIC ? 2. Write the syntax of IF-THEN-ELSE-ENDIF statement. 3 mark questions: 1. Explain IF-THEN-ENDIF statement in Q BAISC. 2. Explain Nested IF statement in BASIC. 3. Write the syntax of Select Case statement. 4. Explain WHILE-WEND loop. 5. Explain DO-WHILE loop. 6. Write about DO-UNTIL loop. 7. Write a BASIC program to print your name five times using WHILE WEND loop. 5 mark questions: 1. Explain FOR-NEXT loop with an example. 2. Write a BASIC program to input Cost Price (CP) and Selling Price (SP) and find the Profit or Loss. 3. Write a BASIC program to accept a number and print the days of the week. 4. Write a BASIC program to print the multiplication table of any number entered by the user. 5. Write a BASIC program to print ODD numbers from 1 to 10 using DO-WHILE loop. 6. Write a BASIC program to print numbers from 1 to 5 in reverse order using DO-UNTIL loop. 7. Write a BASIC program to print the factorial of 5.
  • 4. Lab Exercises - BASIC Write a BASIC program to input Cost Price (CP) and Selling Price (SP) and find the Profit or Loss. REM PROFIT OR LOSS INPUT "Enter Cost Price:", CP INPUT "Enter Selling Price:", SP IF SP>CS THEN PRINT "PROFIT" ELSE PRINT "LOSS" END IF END Write a BASIC program to accept a number and print the days of the week. REM DAYS OF THE WEEK INPUT "Enter a number (1-7):", NUM SELECT CASE NUM CASE 1 PRINT "SUNDAY" CASE 2 PRINT "MONDAY" CASE 3 PRINT "TUESDAY" CASE 4 PRINT "WEDNESDAY" CASE 5 PRINT "THURSDAY" CASE 6 PRINT "FRIDAY" CASE 7 PRINT "SATURDAY" CASE ELSE PRINT "INVALID NUMBER" END SELECT END Write a BASIC program to print your name five times using WHILE WEND loop. REM PRINT MY NAME I = 1 WHILE I <= 5 PRINT "ANDREW" I = I + 1 WEND END
  • 5. Write a BASIC program to print the multiplication table of any number entered by the user. REM MULTIPLICATION TABLE INPUT "What table:", T FOR I = 1 TO 10 PRINT I ; " X " ; T ; " = " ; I*T NEXT I END Write a BASIC program to print ODD numbers from 1 to 10 using DO-WHILE loop. REM ODD NUMBERS I = 1 DO WHILE I<=10 PRINT I I = I + 2 LOOP END Write a BASIC program to print numbers from 1 to 5 in reverse order using DO-UNTIL loop. REM PRINT REVERSE I = 5 DO UNTIL I<=0 PRINT I I = I - 1 LOOP END Write a BASIC program to print the factorial of 5. REM FACTORIAL OF 5 FACT = 1 FOR I = 1 TO 5 FACT = FACT * I NEXT I PRINT "Factorial of 5 is " ;FACT END