SlideShare ist ein Scribd-Unternehmen logo
1 von 5
Downloaden Sie, um offline zu lesen
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

Weitere ähnliche Inhalte

Was ist angesagt?

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
 

Was ist angesagt? (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
 

Ähnlich wie 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
 

Ähnlich wie 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
 

Kürzlich hochgeladen

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
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxAreebaZafar22
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.pptRamjanShidvankar
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibitjbellavia9
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...ZurliaSoop
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxAmanpreet Kaur
 
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
 
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
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxDenish Jangid
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docxPoojaSen20
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfciinovamais
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docxPoojaSen20
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxVishalSingh1417
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxdhanalakshmis0310
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingTechSoup
 
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
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseAnaAcapella
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin ClassesCeline George
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Association for Project Management
 

Kürzlich hochgeladen (20)

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
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
Sociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning ExhibitSociology 101 Demonstration of Learning Exhibit
Sociology 101 Demonstration of Learning Exhibit
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptxSKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
SKILL OF INTRODUCING THE LESSON MICRO SKILLS.pptx
 
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
 
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
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
psychiatric nursing HISTORY COLLECTION .docx
psychiatric  nursing HISTORY  COLLECTION  .docxpsychiatric  nursing HISTORY  COLLECTION  .docx
psychiatric nursing HISTORY COLLECTION .docx
 
Activity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdfActivity 01 - Artificial Culture (1).pdf
Activity 01 - Artificial Culture (1).pdf
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Magic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptxMagic bus Group work1and 2 (Team 3).pptx
Magic bus Group work1and 2 (Team 3).pptx
 
Grant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy ConsultingGrant Readiness 101 TechSoup and Remy Consulting
Grant Readiness 101 TechSoup and Remy Consulting
 
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
 
Spellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please PractiseSpellings Wk 3 English CAPS CARES Please Practise
Spellings Wk 3 English CAPS CARES Please Practise
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...Making communications land - Are they received and understood as intended? we...
Making communications land - Are they received and understood as intended? we...
 

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