WordPress.com



The City SchoolPrep Girls North NazimabadICTech Grade 7Question Bank PBWorksAnswer the following questionsWhat is PBworks?How can you access your account in PBWorks?Name some tools or software for online collaboration.How do we make a free account on PBWorks for educational purpose?How many users does PBWorks allow for basic user?What is the storage limit of PBWorks basic account?What privacy settings are available for access of a PBworks account?How can we change the background colour of wiki page?In how many ways we can track activities and contribution in our PBWorks account?Write steps to invite students to become users of PBWorks?How do we create classroom accounts without using their email ids?Explain all roles/permission levels for visitors provided by PBWorks.How would we create a new page/post in the workspace?How do you edit page/post in the workspace?In how many ways we can hyperlink our pages and posts in PBWorks?How can we upload files from our computer to PBWorks workspace?Briefly explain the steps to download files from the workspace to your computer?How would we change the privacy settings of your PBworks account?Explain thread and e-safety.Write advantages of Online Collaboration and Wikispace.Give some important suggestions for safe use of internet.ScratchPoints to RememberScript Script is a sequence of demands to control the Sprite, Stage and Costume. SpriteSprite is a Scratch character.CostumeCostume is a different pose/shape or posture of one Sprite.StageThe background or background settings of animation is called Stage.What makes a good story, in Scratch? Structure Beginning: Introduce your characters and your setting. Middle: Develop the story so that it leads up to an exciting climax. Ending: A resolution or happy ending with a moral. In Scratch, you can place a sentence of narrative across the bottom of each “page”. SettingIn Scratch, you do not actually need to describe the setting, but you can make your own “backgrounds” against which your story will unfold. Use Draw or Paint. CharactersCharacters: In Scratch, you do not need to describe your characters, but you can show their thoughts and emotions in two ways:Speech BubblesThought bubbles (they may not be thinking what they are saying….)You can use or modify sprites from Scratch, or from the Internet, but you can also create your own. Have fun animating your characters (They are called “Costumes”).Music FilesYou can add music files to add atmosphere to your story. You can use the files from Scratch or from the Internet, but you can also create your own music, using your school’s music software.Voice-oversYou can use a microphone to add the conversations spoken by the characters in your story. Read the Scratch reference handout to answer the following questionsWhat is a sprite and by how many ways we can get a new sprite?Write the types of rotation styles?What are the degrees for the direction of right, left, up and down?Write the horizontal and vertical dimensions of stage in ScratchExplain Script, Stage and CostumeWhat makes a good story in Scratch?Explain types of blocks present in block palette of scratch.Explain three ways to create new costumeExplain two ways to add sound of Sprite.What information is provided in ‘current sprite info’ area?What options are present in toolbar of Scratch?What is the difference between block palette and script area?Write the names of eight colour coded categories in which Scratch blocks are organized?Describe the purpose of following blocksIntroduction to HTMLElementary HTML I, Elementary HTML IIPoints to RememberHTML: HTML stands for Hyper Text Markup Language is a simple scripting language mainly used for developing web pages. The browsers’ task is to read those markup tags and display them as a Webpage.The softwares which are used to create an HTML document are called HTML editors. They are of two types.WYSIWYG editors allow creating WebPages without writing HTML tags. These software are specially designed to create the WebPages and do the HTML coding themselves. E.g. MS. FrontPage, Adobe Dreamweaver, MS. Expression Web.In Text Editors you must know how to write HTML tags in order to create WebPages. E.g. Notepad and WordPad. The files must be saved with extension of .html or .htm in order to be displayed as WebPages.HTML TagsHTML codes, also called Markup tags and HTML tags are simple easy to remember keywords and always written inside angle brackets. They usually come in pairs. E.g. <html> </html>. The first tag is known as Opening Tag and the end tag is called Closing tag. The End Tag is written with a forward slash. E.g. </body> There are two types of tags.Container Tags have a start and end tag. E.g. <P> …. </P>Empty Tags have opening tag only. E.g. <BR>, <LI>, <HR>, <IMG>HTML ElementsThe whole content typed from the Opening tag to the Closing Tag is called HTML element. E.g.<B> Hello Everyone </B>HTML Tag AttributesThe additional information of a tag is called attribute. They are always written inside the Opening tag. Attributes are written as Attribute name=“attribute value”Structure of an HTML documentRoot Element: <HTML></HTML>Head Element: <Title> Enter your Text </Title> Title to give of the webpage appear on browser windowBody Element: <Body>____</Body>. Body Attributes are bgcolor, background, topmargin, leftmargin, rightmargin, bottommargin. Colours of hyperlink can also be controlled by link, vlink and alink.Heading Tag: <H1>Enter your Text </H1> To give heading in a webpage.H1, H2, H3, H4, H5, H6 are different sizes and levels of heading. H1 is biggest and H6 is smallestParagraph Tag: <P> for writing a Paragraph e.g <p>Enter your Text</p><P align= “right”> Attributes for writing Paragraph tag. Options are right left, center and justifyLine Break Tag: <BR> to give a line break. It is an empty tag.<NOBR> to prevent a line break</NOBR>Formatting tags<B> Enter your Text</B>: To Bold the text<I> Enter your Text </I>: To italicize the text<U> Enter your Text </U>: To underline the text<Strike> Enter your Text </Strike>: To strikethrough a line in middle of the text. e.g. Hello<SUP> Enter your Text </SUP>: To display the text in superscript format. e.g. X2 + Y2<SUB> Enter your Text </SUB>: To display the text in subscript format. e.g. H2O<Center> Enter your Text </Center>: To keep the text or image in centre of webpage<HR>: To create a horizontal rule or line on your HTML document.Size, color, width, align, noshade are the attributes of HR<Comment> To insert comments for our references. Test inside COMMENT tag is not displayed on Webpage </Comment>Font tag: <Font> </Font>Attributes of Font tag are Face, size and ColorImage Tag<IMG> tag is used to insert image in a webpage. It is an empty tag not a container element.Attributes of IMG tags are src for source of image (name and location of image file)align to set the alignment of imageheight and widthalt to specify any alternate text to be showed if the image is not displayed on Webpage. This is especially for non-graphical browsers. Anchor Tag (Hyperlink)<A> tag is used to hyperlink the html document with different WebPages. We can link our webpage to any other html document, an image a sound file or a movie.<a> </a> Anchor tag to hyperlink your text with any other document or webpage.href=“”name=“to name a portion of HTML document” e.g. name=“A1”. To hyperlink the named portion <a href=“#A1”> </a>Title: to show any popup text once the cursor is on the hyperlink. Target: to control where the hyperlink will open in the browser. Internal linking is to hyperlink any text or image with the portion of same webpage. External linking is to hyperlink any text or image with any other webpage or html document. Colours of links can be controlled on a webpage by giving attributes of Link, Vlink and Alink in body tag.Lists in HTMLUnordered List <UL> </UL>: Type is the attribute of <UL> tag and its values can be circle, disk or squareOrdered List <OL> </OL>: Its attributes are Type specifies the type of numbering. It can have values 1, a, i, or I. Start which specifies from which number the list will startDescription List is a list of item in which every item is having a description or definition. <DL> <DT> Item Name </DT><DD> Definition of the selected item</DD> </DL>Here <DL> means that a description list is started. <DT> means Item of the list. <DD> means description of items.Nested Lists are lists inside other lists. An unordered list can be kept inside an ordered list or vice versa.<OL><li> Respiratory System<li>Digestive system <ul> <li> Alimantary Canal<li> Stomach<li> Small Intestine<li> Large Intestine </ul><li> Circulatory System </ol>Respiratory SystemDigestive systemAlimantary CanalStomachSmall IntestineLarge Intestine Circulatory System Tables in HTML<Table>TextText<tr><td> Text </td><td> Text </td> </tr></Table>Here TR means Table Row, TD means Table Data which is a tag for a creating a cell.<TH> </TH> is used to give a column heading to a table. It is used inside a <TR> tag.<Caption> </Caption> to give a caption to a tableAttributes of Table tags are Align, Bgcolor, Border, Bordercolor, Cellpadding, Cellspacing, Height and Width.Attributes of <TR> tag are Align, Valign and BgcolorAttributes of <TD> tag areAlign, Valign, Bgcolor, colspan, rowspan, nowrap, headers and scope.Attributes of <TH> tag areAlign, Valign, Bgcolor, colspan, rowspan, nowrap, width, height and scope.Attribute of <Caption> tag is: Align.Q. 1 Answer the following questions.What is HTML and why it is used?What is HTML Editor? Explain the type of HTML Editors with the help of examples.Explain HTML Tag and their types.Define HTML ElementsWhat is an HTML tag attribute? Write ten attributes of <Body> tagWhat is the standard structure of an HTML document?Define the terms Hyper Text and Markup Language.What are formatting tags? Give some examples of formatting tagsWhy do we use <Comment> tag?Explain Hyperlink and its types. Which tag is used to hyperlink different WebPages?Why do we use <HR> tag? Give some attributes of <HR> tag.Why do we create lists?What is the difference between unordered and ordered list. Explain Nested list and Description List.By which tag we can change text type, color and size? Also write related attributes.Write HTML elements to draw a table of border size 5, border color Green and background color Yellow. The table should have a caption “My friends” on the bottom of table and table output should be like this.FriendsFriend OneFriend TwoFriend ThreeFriend FourWrite names of seven South Asian countries in an ordered List and capital and currency of each country in an unordered list e.g.PakistanIslamabadRupeesMake a webpage of left margin 100 and margin 50 from rest of three sides.Write the chemical formula of Carbondioxide in HTML.Write your school name and make it bold underlined and centre aligned.Insert an image in HTML. The name of image is Dora and file type is ‘.jpeg’. The image size should be 500*300 and it is a portrait image. The image must have a border of size 6Make all the visited links appear on your webpage in yellow color and active links in green color.Make a descriptive list of types of HTML editors.Write your school name with font size 7, font type Arenski and font color green.Write HTML elements to link the last line of the webpage with top paragraph of the same page.Write HTML element to hyperlink word Pakistan on your page with 3x2 in a Webpage.Q. 2 Give Hexadecimal value for the following colorsBlack ___________________White__________________Cyan/Aqua______________Blue____________________Red____________________Green__________________Purple__________________Silver___________________Grey___________________Brown__________________Pink____________________Lime___________________Lime green ______________Chocolate Brown _________Q. 3 Fill in the blanksThe tag for preventing a line break is ____________The highest level of heading in HTML is ____________The tag which is used to make font slightly thicker is _____________ The tag which is used to tilt the text is _____________ HTML stands for ________________________The HTML document must begin and end with _______________ tag.HTML tags are written in ___________ brackets.HTML documents are saved with extension of ______________ or _________________WordPad and Notepad are types of _____________ HTML Editor.Attributes are always written inside ______________Attributes are written as ________________ followed by an ‘=’ and then _______________ in inverted commas.Vlink is an attribute of ____________ tag and is used to change colour of _________________ Q. 4 Write the tag or its purpose according to the requirement.TagPurpose1<P>2To underline the text3Anchor tag <A>4<TD>5<Head>6To insert an image7<BR>8<TR>9<UL>10<DL>, <DT>, <DD>11<Caption>12To insert a Table13<Body bgcolor=“red”>14For a numbered listQ. 5 Write all the tags and their attributes forTagAttributes1Image Tag2 Table Tag3Table row4Table Data5Table Heading6Caption7Unordered List8Ordered List9Font tag10Paragraph tagMS. PublisherWhat is MS. Publisher and why it is used for?Name atleast 10 publications that can be designed in MS. Publisher.2661920139065How would you create a new publication in Ms. Publisher using templates?Explain the purpose of following option tabs while customizing /formatting a publicationPage OptionColor SchemeFont SchemeBriefly explain the method to adjust margins and page size in MS. Publisher.3529965306070Write steps to perform the following actions on objects and AutoShapesInsert objects and AutoShapesFormat objects and AutoShapesResize objects or AutoShapesRotate objects or AutoShapesFlip objects or AutoShapesGroup/ungroup objectsApply bordersWrite steps to perform the following actions on imagesApply borderApply shadow and effectsWrap text around imagesWrite steps to create or duplicate a master slide.What is ordering of layers of text, images and objects and how do we do that?Write steps to open the ‘Format Publication’ tab.Name and explain the icons of publisher tools present in Object toolbar. ................
................

In order to avoid copyright disputes, this page is only a partial summary.

Google Online Preview   Download