Searching Locations and Paths on Internet Internet is also used to search for a particular location and path. The Maps tool on www.google.com is one of the best location finder on the Internet. Steps to search for a location and path are, 1. Open a web browser and then open 1 2 www.google.com. 2. Click on Google Apps button (on top- right of the page) and select Maps. 3. Google Maps appears on the page. 4. Type the place name in the box and press Enter key. For example, try to locate ‘Gateway of India, Mumbai’ using Google Map. 5. A red- colour bubble appears on the map with the name of the location/place. 3 4 6 5 6. Click on Directions (below the 7 search box). 7. Search box expands and divides into two text boxes: one for starting point and second for destination. 100
8. Enter the starting point and destination 8 and press Enter key. 9 9. A suggested path appears on the map. Note The Map changes dynamically on the right pane. The Map can be zoomed in or out by using the zoom slider. Quick Review Internet provides you the facility to read online news and get information. You can send and receive messages using Internet. Health and fitness related information can be found on the Internet. Internet provides facility for online booking of hotels, railways tickets, air tickets, etc. A web browser is an application software which is used to open websites. Surfing the Internet is undirected type of exploration of the World Wide Web. Browsing is exploration with a definite objective but without a planned search strategy. Searching is just trying to find the information on internet. A. Choose the correct answer. 1. Online _______________ is also known as distance learning. a) Education b) Shopping c) News d) None of these 2. ___________ is exploration with a definite objective of the WWW. a) Surfing b) Online shopping c) Browsing d) All of these 3. _____________ is just trying to find the information on internet. a) Browsing b) Searching c) Testing d) All of these 101
4. ________ is an example of search engine. a) www.bing.com b) www.eduitspl.com c) www.close.nic.in d) www.gmail.com 5. ________ is an example of online dictionary. a) www.google.com b) www.dictionary.com c) www.facebook.com d) www.yahoo.com B. Fill in the blanks. Home, Web Browser, WWW, Internet, Enter 1. __________ is a collection of computers connected to each other all over the world. 2. A ______________________ is used to open the websites. 3. _____________ is a way of accessing information over the medium of the internet. 4. To open a website, type website address in address bar, in a web browser and press ____________________ key. 5. Clicking ____________________ button on a web browser window takes you to the home page of the website. C. Answer the following questions. 1. What is a web browser? __________________________________________________________________ __________________________________________________________________ 2. What is Internet surfing? __________________________________________________________________ __________________________________________________________________ 3. What is Online Education. __________________________________________________________________ __________________________________________________________________ D. Write a few words about the following: 1. Online Shopping: ________________________________________________ __________________________________________________________________ __________________________________________________________________ 102
2. Video Conferencing: _________________________________________________ ________________________________________________________________________ ________________________________________________________________________ 3. News and Information: _________________________________________________ ________________________________________________________________________ ________________________________________________________________________ A. Connect your computer to the Internet. 1. Open the web browser. (Internet Explorer) 2. Go to the web site https://www.wikipedia.com. 3. Click the “English” link. 4. The main page of wikipedia appears. 5. On the top-right corner is a Search text box. Type the keyword (e.g. Indian Army) in it and press the Enter key. 6. Open a link. The related information appears on the main page. B. Open an online dictionary (website) and try to find the meaning and pronunciation of the following words and way to use them in a sentence: 1. Renaissance 2. Enthusiasm 3. Suo-motu 4. Aptitude 5. Awe 6. Anomaly 7. Acme C. Search about 20 different healthy diets for children (age 08 - 11 years) with their images, calories, scales, benefits to human body and other important things and make a project file. Teacher's Signature : __________________ Teacher's Remark : WEB http://www.safesurfingkids.com/tips_for_kids.htm http://leroycsd.org/Technology/Tutorials/InternetSearchWeb/InternetSearch.htm LINKS Teacher’s Corner Dear teacher, some more assignments on searching on the Internet can be given to the student, e.g., ‘How junk foods harm us', ‘Best exercises tips for children’, etc. 103
9 Interactive Programming with Scratch Dear Students, Yes Teacher, Let us learn more about We are really curious event handling and to learn more in decision making in Scratch to control Scratch. Along with our animation in a processing user input. better way. We have learnt basics of Scratch in previous class. In this chapter we shall explore about sounds, events and sprite costumes. We shall also learn how to create and edit our own sprite. Launching Scratch Open Start menu > All Programs > click on Scratch folder > click on Scratch option. Scratch Project Window Every animation in Scratch is treated as a separate project. Scratch interface shows the project window. Project window is composed of following main parts: Scratch Menu bar: This bar displays simple menus named File, Edit, Tips and About. It also displays a set of icons to duplicate, delete, grow, shrink and get help on the selected sprite on the stage. Stage: It is the place where you keep the sprites that together make your animation. Stage also shows your animation running. Stage displays icons at its top for maximising, restoring it and to Run and Stop the animation. Sprites Panel: This panel lists all the sprites added by you in your animation. Sprites are various objects that together make your animation. Scripts Panel: It lists all the script blocks that are used to design the animation script. Blocks are arranged in various categories like Motion, Events, Pen etc. Script Editor: It is the large work area in which animation script is created by drag- dropping the required blocks. 104
Script: It is the set of blocks arranged to define how the desired animation should work. Script is created by drag-dropping blocks from the set of blocks. Blocks panel contains all the building blocks of your animation. Block: You can think of a block as an instruction. For example, is a block which will instruct the sprite to move 10 steps forward. Sprites Library Above the Sprites palette, click on Sprites from library icon. Sprites library will be displayed where sprites are organized in various categories. Double click on the desired sprite to add it to the stage. Costumes Library Clicking on Choose costume from library option, a costume library opens up that lists a collection of costumes and expressions for various characters to choose from. Backdrop Library Clicking on Choose backdrop from library option, a backdrop library opens up that lists a collection of backdrops organised in various categories. Double click on the desired backdrop. 105
Adding New Sprites on the Stage 1. Above the Sprites palette, click on Sprites from library icon. Sprites library will be displayed where sprites are organized in various categories. 2. Double click on the desired sprite to add it to the stage. Duplicating a Sprite To make copies of a sprite is called duplicating a sprite. To do so, right click on the desired sprite and select duplicate. Deleting Sprites from the Stage To delete a sprite, simply right click on it and select delete option. You can also click on the Scissors icon in the top toolbar and click on the sprite you want to delete. Note Deleting the sprite will delete the script created for it. Events Imagine you are reading a story book at your home and the call bell rings. What you may do? You may stop reading and open the door. So, ringing of the call bell has made you open the door. Here, call bell rings is an event. In Scratch, an event is something that occurs due to user's action. For example, you may click on the sprite with the mouse. Let us learn how to handle a simple event named when this sprite clicked. 106
Add sprite Amon from People category in Sprites library. Using Shrink tool at the top of the stage, decrease Amon's size. Place Amon at bottom right corner of the stage as shown here. From Scripts tab > Events category, add when this sprite clicked block to your script. From Script tab > Motion category, add glide-to block with the values for secs, x and y as shown here. From Scripts tab > Events category, add when space key is pressed block to your script. From Script tab > Control category, add stop all block. Explanation: On the event when this sprite clicked (when user clicks on Amon), it would glide towards right side. On the event when space key pressed, Amon would stop. This way, Amon would move on mouse click on it and stop on space key press. Making Sprite Play Sound Sprites can play sounds. Let us play the Cymbal when it is clicked. Following are the steps to create the script. In the Scripts panel, go to Events category. Drag-drop when this sprite clicked block in the Script editor. Go to Sound category. Drag drop play drum __ for ___ beats block. Click on the drum drop-down and select (4) Crash Cymbal. Click and type the beats as 10. Our Cymbal is ready to play. Click on the Cymbal and find out yourself. What did we learn from this activity? We learnt a lot of things from this activity. Sound blocks play sounds, drums and notes. There are a lot of drum sounds to choose from. We can set the number of beats for the sounds. 107
Do it Yourself Try the following script and write down your observations. wait block is found in Control category. Changing Sprite's Costume You can make changes in the appearance of the sprites using Costume Editor. To do so, select the desired sprite in Sprites panel and click on Costumes tab in the Blocks panel. Costume editor will open up. Costume Editor has a Toolbox and a Color palette. Let us edit the sprite Abby. 1. Open a new project and add Abby to the stage. 2. Select Abby and click on Costumes tab at the top in the middle panel. 108
3. Click on the Select tool (first in the Toolbox) and click on Abby. It will be selected. 4. Drag Abby towards left. 5. Now click on Ellipse tool (with a circle icon). 6. Select a green colour from the Color palette. 7. Draw an oblong circular shape in the center of the editor as shown here. 8. Click on Color a shape tool (with bucket icon). 9. Click inside the circle drawn to fill it with green colour. 10. Click on Select tool and drag Abby over the circle. 11. If Abby's feet are behind the circle then click with Select tool on the circle. 12. Click on Back a layer button (last button) in the Toolbox. 3 11 2 4 7 5 6 10 8 9 12 Do it Yourself Change the colours of Abby's T-shirt and shoes. Quick Review Every animation in Scratch is treated as a separate project. An event is something that occurs due to user’s action. Blocks that help in working with sound are in Sound category. wait block is found in Control category. You can make changes in the appearance of the sprites using Costume Editor. 109
A. Choose the correct answer. 1. In Scratch, _________ is something that occurs due to user’s action. a) Step b) Event c) Animation d) Sound 2. Characters in Scratch are called _________. a) Icons b) Buttons c) Sprites d) Cat 3. Move 10 steps is the example of a ________. a) Block b) Program c) Script d) Sprite 4. wait block is found in __________ category. a) Sound b) Motion c) Event d) Control B. Fill in the blanks. Control, duplicating, Event, instruction 1. To make copies of a sprite is called ___________ a sprite. 2. when this sprite clicked is an _________ block. 3. You can think of a block as an _______________. 4. stop all is a ____________ block. C. Tick () the correct statement and cross () out the wrong one. 1. Every animation in Scratch is treated as a new project. 2. Stage shows your animation running. 3. Pen blocks are used for moving a sprite. 4. We cannot change sprite's costume. 5. We can create our own, new sprites also. 110
D. Answer the following questions. 1. What do you mean by Sprite and Block in Scratch? __________________________________________________________________ __________________________________________________________________ __________________________________________________________________ 2. What is a script in Scratch? Explain with an example. __________________________________________________________________ __________________________________________________________________ __________________________________________________________________ __________________________________________________________________ 3. What is the use of costume editor? __________________________________________________________________ __________________________________________________________________ __________________________________________________________________ 1. Take a sprite and make changes in its costume using costume editor. Then program the 4 arrow keys so that sprite moves 10 steps in up, down, left and right direction as the keys are pressed. [Hint: use point in direction block] 2. Spend some time with Tips menu in Scratch. 3. Take any new sprite from Sprites library and modify its look using your creativity. Teacher's Signature : __________________ Teacher's Remark : WEB https://en.wikipedia.org/wiki/Scratch_(programming_language) https://scratch.mit.edu/projects/31407152/ LINKS https://scratch.mit.edu/ Teacher’s Corner Encourage the students to visit the web links and explore more. 111
PROJ EC T MS Word: DIGITAL INDIA Digital India, a campaign launched by the Government of India to ensure the Government's services are made available to citizens electronically by improved online infrastructure and increased Internet connectivity. Create a poster on this using your creative imagination. MS Word: SCHOOL CALENDAR Using table in MS Word, create a single page colourful school calendar showing holidays, school events and activities. Take the size of the calendar larger than A4. Use pictures and shapes to make it appealing. Apply various table designs to enhance its look. Best calendar can be displayed on the notice boards. Take inspiration from the image shown here. MS PowerPoint: RIGHT TO EDUCATION Create a presentation of a few slides on Right to Education showing what India is doing for its children to ensure that every child in the country is educated. It is suggested that your work as a team of 2 or 3 students on this project. 112
Search
Read the Text Version
- 1
- 2
- 3
- 4
- 5
- 6
- 7
- 8
- 9
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
- 32
- 33
- 34
- 35
- 36
- 37
- 38
- 39
- 40
- 41
- 42
- 43
- 44
- 45
- 46
- 47
- 48
- 49
- 50
- 51
- 52
- 53
- 54
- 55
- 56
- 57
- 58
- 59
- 60
- 61
- 62
- 63
- 64
- 65
- 66
- 67
- 68
- 69
- 70
- 71
- 72
- 73
- 74
- 75
- 76
- 77
- 78
- 79
- 80
- 81
- 82
- 83
- 84
- 85
- 86
- 87
- 88
- 89
- 90
- 91
- 92
- 93
- 94
- 95
- 96
- 97
- 98
- 99
- 100
- 101
- 102
- 103
- 104
- 105
- 106
- 107
- 108
- 109
- 110
- 111
- 112
- 113
- 114