Niit Exam Buggy

  • May 2020
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Niit Exam Buggy as PDF for free.

More details

  • Words: 2,005
  • Pages: 8
n Exam-Buggy

NIIT

1. Basic Brush-up: HTML (HyperText Markup Language) is a type of SGML

(Standard Generalized Markup Language). SGML is the international standardized Markup Language. HyperText means machine-readable text so organized to create links to information at a different location. That is, it is not sequential but related items of information are connected. Instead of reading linearly to find information, one can jump from one topic to another. A Markup Language is set of symbols (alphabets, numbers & signs) and rules (syntax) for their use when doing a markup of a document. A markup or a tag is that portion of the document marked up or tagged to indicate how they should be displayed in the browser. These tags are not displayed by the browser. A syntax means rules governing an arrangement of symbols in a programming language acceptable to a compiler (a program that decodes) for that language. 2. Basic Tags:

<br /> <br /> a browser reads HTML page due to this tag. A Html Page has a .html or .htm file extension. defines the header area (window top border) of a page. this tag is present in the head section and gives title to<br /> <br /> a Html page. </head><br /> <br /> marks the end of head section<br /> <br /> [Here, </head> is also known as an end tag] <body> <br><br /> <br /> defines the main part where contents will be displayed inserts a single line break<br /> <br /> [Use   to insert more than one default space between two characters or images] </body><br /> <br /> defines the end of body<br /> <br /> </html><br /> <br /> defines the end of page<br /> <br /> The above tags contain only the basic structural elements; and belong to Level 0 of HTML Evolution. 3. Text Formatting Tags: The following elements are all font style elements –<br /> <br /> <b> </b><br /> <br /> defines start and end of bold texts<br /> <br /> <i> </i><br /> <br /> defines start and end of italic text<br /> <br /> [<dfn> Definition tag, <var> Variable tag, <cite> Citation tag, <em>Emphasized tag all give same output as <i>] <u> </u> defines start and end of underlined text <big> </big><br /> <br /> defines start and end of bigger text<br /> <br /> <small> </small><br /> <br /> defines start and end of smaller text<br /> <br /> <del> </del><br /> <br /> defines start and end of strikethrough text<br /> <br /> <sub> </sub><br /> <br /> defines start and end of subscript text<br /> <br /> <sup> </sup><br /> <br /> defines start and end of superscript text<br /> <br /> <tt> </tt> defines start and end of Teletype text <nobr><br /> <br /> does not allow a new line in the text; on excess of 80 characters a scroll bar appears on the bottom of the<br /> <br /> screen [<code>Computer Code tag, <samp> Sample tag, <kbd> Keyboard tag give same result] 4. Block Formatting Tags: The following are all text-block style elements<br /> <br /> <p> </p><br /> <br /> defines start and end of a paragraph<br /> <br /> <center><br /> <br /> defines start and end of horizontally centered enclosed<br /> <br /> text </center> <blockquote> defines the start and end of a long quotation <blockquote> /h1> to </h6> <pre> </pre><br /> <br /> defines end of header 1 to header 6<br /> <br /> defines start and end of preformatted texts that preserve spaces and line breaks of the text enclosed<br /> <br /> <address rel="nofollow"> defines start and end of e-contact information for </address> document or a section that is a hyperlink [It allows Class, ID and Style attributes of CSS to be applied] <base> defines start and end of base URL for all the links in a </base> page Example: Assume that the absolute address for an image is: <img src="http://www.niit.com/images/smile.gif" /> Now we insert the <base> tag, which specifies a base URL for all of the links in a page, in the head section of a page: <head> <base href="http://www.niit.com/images/" /> </head> When inserting images on the page in the example above, we just have to specify the relative address, and the browser will look for that file using the full URL, "http://www.niit.com/images/smile.gif": <img src="smile.gif" /> 5. Tags with Attributes: The following are all text-block style elements with<br /> <br /> Attributes. <body bgcolor = “#dfbfff” text = “#ff0808” bgproperties = “fixed” leftmargin = “60” topmargin = “60”> defines 4attributes of contents will be displayed </body > <font size=5 color=#45d11a face=arial> defines 3 attributes of font styles </font> <hr size=3 width=50% align =right color= #ff0808 noshade= false > defines 5 attributes of a horizontal rule. NOSHADE:when set to true the rule should render in a solid color, when set to false the rule should render in a two-color gradient </hr> <li type=circle/disc/square><br /> <br /> defines 1attribute that specifies the type of the list </li><br /> <br /> <ol type=A/a/I/i/1> <li>great <li>greater <li>greaest </ol> But there are better <ol type=i start=4> <li>better <li>best <li>best of the best defines 2attributes that specifie the type of the orderedlist; it must begin with <ol> tag followed by a <li> tag. </ol><br /> <br /> <ul><br /> <br /> <li><br /> <br /> defines listwhen it is not an ordered one; it is a of writing <li> tag similar to <ol> tag and is thus followed by a <li> tag.<br /> <br /> </ul><br /> <br /> <menu><br /> <br /> defines list similar to <ul> tag, but gives menu spacing to the enclosed content<br /> <br /> </menu> [<dir>Directory tag will gives the same result and presents a list of upto 20 characters ] <dl><br /> <br /> defines the definition list<br /> <br /> <dt><br /> <br /> defines the definition term<br /> <br /> <dd> </dl><br /> <br /> <a><br /> <br /> Example:<br /> <br /> presents the definition of the term defines the end of definition list<br /> <br /> defines anchor tag. The following creates a bookmark inside a document, by using the name or id attribute: <a name=n rel="nofollow">Nonsense</a><br> <a href= "#n" rel="nofollow">N</a><br /> <br /> Example: </a><br><br /> <br /> The following creates a link to another document by using the href attribute: <a name= "tea" rel="nofollow">tea is a light beverage <a href="drinks.html" target= "_blank" rel="nofollow">More</a> It also has the target attribute which defines where to open the target:<br /> <br /> _blank _self _parent _top<br /> <br /> the target the target the target the target window<br /> <br /> URL URL URL URL<br /> <br /> will will will will<br /> <br /> open open open open<br /> <br /> in in in in<br /> <br /> a new window the same frame as it the parent frameset the full body of the<br /> <br /> <form><br /> <br /> ___________------------------___________________----------------------------__________________-----------------✔ Forms: this element creates form for user input. ✔ Action attribute handles the CGI script. ✔ ✔ ✔ ✔ ✔<br /> <br /> ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔<br /> <br /> ✔<br /> <br /> There are two Method attributes : Get & Post Checkbox is used to give multiple values at the same time Text attribute is used along with Size and Maxlength attributes Radioaccepts only a single value File Attribute <input type = file value=”file:///c:/filename”></input> Radio Attribute <input name=R1 Type=Radio> Size Attribute <input type=text size=”20”> Maxlength indicates maximum number of characters Select attribute is used along with Name, Multiple and Size attributes Option Element can occur only within a Select element with Value attribute <img src = “abc.jpg” width=50 height=50 align=top/middle/absmiddle/baseline/bottom/testing> ISMAP image map <a herf=http://machine/htbin/imagemap/sample rel="nofollow"> <img src=”sample.gif”ISMAP></a> Image Map is saved as CSIM (Client Side Image maps) which has hotspot click and retrieve approach and SSIM (Server Side Image Maps) which is used for animating pictures. Mapthis is software used to create Image Maps <table></table> is the basic table element which wraps all other table elements<br /> <br /> ✔ Internal table borders is known as rules. ✔ Cell padding space within cells , Cell spacing space between cells ✔ <tr>table row, align-left,cent,right; Valign text within the cell –top middle<br /> <br /> ✔ ✔ ✔ ✔ ✔ ✔<br /> <br /> ✔ ✔ ✔ ✔ ✔ ✔<br /> <br /> ✔ ✔ ✔ ✔ ✔ ✔<br /> <br /> ✔ ✔<br /> <br /> ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔ ✔<br /> <br /> bottom baseline, Bgcolor, Bordercolor, Bordercolorlight, Bordercolordark <td> table data NOWRAP is for tables what <nobr> is for text blocks and is used in <th> and <td> tags Colspan is used to span columns within cell Rowspan is used to span rows within cell <th> table header identical for data cells <colgroup align=left/right/center/justify valign span=2> Frames can load their own URL independent of other frames <frameset Cols=20%, 60%, 20%> <frameset rows=20%, 60%, 20%> “2*,*” would give 2/3 of the space to the first frame and 1/3 to second frame Marginwidth=”value” Marginheight=”value” Scrolling=”yes/no/auto” Noresize, by default resizable Frameborder=”0” no borders are drawn <frame framspacing=”55”> <noframes>.....</noframes> is used to display the alternate content Inline frame are floating frames that appear without dividing browser window horizontally or vertically<iframe width height align></iframe> Avoid nested and long vertical tables More than five colors should not be used in a web designFor colorblind visitors combinition of red, green, purple, mgray and brown should not be used To help them distinguish between objects and areas combinations of blue, yellow, white, and black should be used Linear design for short pages is the most suitable Non-Linear Design will contain multiple links to multiple sites The entire page should be created at once and saved as a single file HTML should not be used for small navigation toolbars Search engines deploy automated programs called spiders or crawlers Avoid using generic keywords, use specific words instead Data-matrix is data presented in a tabular form Highest level of sophistication is required to convert browsing eshoppers to buyers To target international multiple languages choice should be provided<br /> <br /> ______________________--------------------------------________________________-----------------------------<br /> <br /> ✔ By default files are stored in Flash MX Document (.fla) ✔ The other format is (.swf) ✔ Direction line defines the height, depth and direction of a curve<br /> <br /> ✔ The arrow tool, or the sub selection tool should be used to make a rectangular marquee selection ✔ Irregular selection is done with Lasso Tool ✔ Gap size adds color to a shape that is not closed and has small gaps ✔ Lock Fill adds gradient to a shape such that gradient color appears to be stretched ✔ Flash has three color modes RGB, HSB and HEX ✔ If blue rectangle appears around the shape it means they are grouped ✔ Raster Graphics are based on grid of pixels ✔ Color Threshold of a vector image is from 1 to 500 ✔ Minimum Area is used to specify the number of pixels that will have consistent colors; value ranges from 1-1000 ✔ Curve Fit the smoothness of the outlines of the image ✔ Corner Threshold the sharpness that a shape will have ✔ Extending Text Block is used for short lines of texts ✔ Fixed Text Block is used for large blocks of texts ✔ Scrollable text box -> Change text type to multiline, Select multiline in Line Type drop list, Right-click text-box and choose Scrollable, from componebts drag and drop Scroll Bar ✔ To manipulate individual characters choose modify-> Break Apart ✔ Merging Layers ->Edit ->Cut -> Edit - > Paste in Place ✔ To rename a layer Modify-> Layer -> Layer Properties ✔ Current Frame, Frame Rate, Elapsed Time ✔ Playhead creates the illusion of motion in an animation ✔ Create Documents from templates: File-> New from Template ✔ Adding Sound files like wav and MP3 File-> Import ✔ You can add sound to buttons : Over and Down make more sense ✔ ADPCM is the format that converts analog to digital sound ✔ RAW has backward compatibility and is associated to the movie ✔ To convert and existing shape, bitmap, or image on the stage into a symbol, select it and choose Insert-> Convert to Symbol [F8] ✔ Instead of working with several movie files, you can work with one movie file having multiple scenes. To insert a Scene choose Insert-> Scenes ✔ To create a Graphic Symbol choose Insert->New Symbol and specify Graphic as the type of the symbol ✔ 4 stages of Button Symbols: Up, Over, Down, Hit ✔ You can position and set the behaviour relative to its registration point ✔ Right-click to mask ✔ To Create instance drag the symbol from the files library to the stage ✔ Instance Properties Windows->Panels->Effects ✔ Mouse Event: Variable: Stores values that can be used in scripts ✔ Roll out: the mouse is moved away from a particular object<br /> <br /> ✔ File->Export Movie<br /> <br /> ✔ Information Bar is used to analyze number of frames loaded ✔ Bandwidth Profiler shows bytes of data that will be downloaded Movie Preview Window shows the movie as it would appear when downloaded ✔ File->Publish Setting ✔ Action Panel F9 ✔ Zoom tool- z ✔ Document Properties cntrl + J ✔ Test Scene cntrl + alt + enter ✔ Test Movie cntrl +alt+enter ✔ Test Project cntrl +alt+ P ✔ Show frames cntrl +2 ✔ Show All Frames cntrl +3 ___________________--------------------------________________________------------------------------___________ </div> </div> <hr /> <h4>Related Documents</h4> <div class="row"> <div class="col-lg-2 col-md-4 col-sm-6 col-6"> <div class="card item-doc mb-4"> <a href="https://pdfcoke.com/documents/niit-exam-buggy-kpoldddg7p3x" class="d-block"><img class="card-img-top" src="https://pdfcoke.com/img/crop/300x300/kpoldddg7p3x.jpg" alt=""/></a> <div class="card-body text-left"> <h5 class="card-title"><a href="https://pdfcoke.com/documents/niit-exam-buggy-kpoldddg7p3x" class="text-dark">Niit Exam Buggy</a></h5> <small class="text-muted float-left"><i class="fas fa-clock"></i> May 2020</small> <small class="text-muted float-right"><i class="fas fa-eye"></i> 2</small> <div class="clearfix"></div> </div> </div> </div> <div class="col-lg-2 col-md-4 col-sm-6 col-6"> <div class="card item-doc mb-4"> <a href="https://pdfcoke.com/documents/niit-j2ee-exam-questions-wqzmr7m1yk30" class="d-block"><img class="card-img-top" src="https://pdfcoke.com/img/crop/300x300/wqzmr7m1yk30.jpg" alt=""/></a> <div class="card-body text-left"> <h5 class="card-title"><a href="https://pdfcoke.com/documents/niit-j2ee-exam-questions-wqzmr7m1yk30" class="text-dark">Niit J2ee Exam Questions</a></h5> <small class="text-muted float-left"><i class="fas fa-clock"></i> June 2020</small> <small class="text-muted float-right"><i class="fas fa-eye"></i> 10</small> <div class="clearfix"></div> </div> </div> </div> <div class="col-lg-2 col-md-4 col-sm-6 col-6"> <div class="card item-doc mb-4"> <a href="https://pdfcoke.com/documents/niit-vl3dd6we093w" class="d-block"><img class="card-img-top" src="https://pdfcoke.com/img/crop/300x300/vl3dd6we093w.jpg" alt=""/></a> <div class="card-body text-left"> <h5 class="card-title"><a href="https://pdfcoke.com/documents/niit-vl3dd6we093w" class="text-dark">Niit</a></h5> <small class="text-muted float-left"><i class="fas fa-clock"></i> June 2020</small> <small class="text-muted float-right"><i class="fas fa-eye"></i> 21</small> <div class="clearfix"></div> </div> </div> </div> <div class="col-lg-2 col-md-4 col-sm-6 col-6"> <div class="card item-doc mb-4"> <a href="https://pdfcoke.com/documents/niit-v8z1gxdjdnzr" class="d-block"><img class="card-img-top" src="https://pdfcoke.com/img/crop/300x300/v8z1gxdjdnzr.jpg" alt=""/></a> <div class="card-body text-left"> <h5 class="card-title"><a href="https://pdfcoke.com/documents/niit-v8z1gxdjdnzr" class="text-dark">Niit</a></h5> <small class="text-muted float-left"><i class="fas fa-clock"></i> May 2020</small> <small class="text-muted float-right"><i class="fas fa-eye"></i> 20</small> <div class="clearfix"></div> </div> </div> </div> <div class="col-lg-2 col-md-4 col-sm-6 col-6"> <div class="card item-doc mb-4"> <a href="https://pdfcoke.com/documents/macke-buggy-1wov1rd6wmol" class="d-block"><img class="card-img-top" src="https://pdfcoke.com/img/crop/300x300/1wov1rd6wmol.jpg" alt=""/></a> <div class="card-body text-left"> <h5 class="card-title"><a href="https://pdfcoke.com/documents/macke-buggy-1wov1rd6wmol" class="text-dark">Macke Buggy</a></h5> <small class="text-muted float-left"><i class="fas fa-clock"></i> December 2019</small> <small class="text-muted float-right"><i class="fas fa-eye"></i> 18</small> <div class="clearfix"></div> </div> </div> </div> <div class="col-lg-2 col-md-4 col-sm-6 col-6"> <div class="card item-doc mb-4"> <a href="https://pdfcoke.com/documents/niit-program-q6zp1llpq4zp" class="d-block"><img class="card-img-top" src="https://pdfcoke.com/img/crop/300x300/q6zp1llpq4zp.jpg" alt=""/></a> <div class="card-body text-left"> <h5 class="card-title"><a href="https://pdfcoke.com/documents/niit-program-q6zp1llpq4zp" class="text-dark">Niit Program</a></h5> <small class="text-muted float-left"><i class="fas fa-clock"></i> May 2020</small> <small class="text-muted float-right"><i class="fas fa-eye"></i> 20</small> <div class="clearfix"></div> </div> </div> </div> </div> </div> </div> </div> </div> <footer class="footer pt-5 pb-0 pb-md-5 bg-primary text-white"> <div class="container"> <div class="row"> <div class="col-md-3 mb-3 mb-sm-0"> <h5 class="text-white font-weight-bold mb-4">Our Company</h5> <ul class="list-unstyled"> <li><i class="fas fa-location-arrow"></i> 3486 Boone Street, Corpus Christi, TX 78476</li> <li><i class="fas fa-phone"></i> +1361-285-4971</li> <li><i class="fas fa-envelope"></i> <a href="mailto:info@pdfcoke.com" class="text-white">info@pdfcoke.com</a></li> </ul> </div> <div class="col-md-3 mb-3 mb-sm-0"> <h5 class="text-white font-weight-bold mb-4">Quick Links</h5> <ul class="list-unstyled"> <li><a href="https://pdfcoke.com/about" class="text-white">About</a></li> <li><a href="https://pdfcoke.com/contact" class="text-white">Contact</a></li> <li><a href="https://pdfcoke.com/help" class="text-white">Help / FAQ</a></li> <li><a href="https://pdfcoke.com/account" class="text-white">Account</a></li> </ul> </div> <div class="col-md-3 mb-3 mb-sm-0"> <h5 class="text-white font-weight-bold mb-4">Legal</h5> <ul class="list-unstyled"> <li><a href="https://pdfcoke.com/tos" class="text-white">Terms of Service</a></li> <li><a href="https://pdfcoke.com/privacy-policy" class="text-white">Privacy Policy</a></li> <li><a href="https://pdfcoke.com/cookie-policy" class="text-white">Cookie Policy</a></li> <li><a href="https://pdfcoke.com/disclaimer" class="text-white">Disclaimer</a></li> </ul> </div> <div class="col-md-3 mb-3 mb-sm-0"> <h5 class="text-white font-weight-bold mb-4">Follow Us</h5> <ul class="list-unstyled list-inline list-social"> <li class="list-inline-item"><a href="#" class="text-white" target="_blank"><i class="fab fa-facebook-f"></i></a></li> <li class="list-inline-item"><a href="#" class="text-white" target="_blank"><i class="fab fa-twitter"></i></a></li> <li class="list-inline-item"><a href="#" class="text-white" target="_blank"><i class="fab fa-linkedin"></i></a></li> <li class="list-inline-item"><a href="#" class="text-white" target="_blank"><i class="fab fa-instagram"></i></a></li> </ul> <h5 class="text-white font-weight-bold mb-4">Mobile Apps</h5> <ul class="list-unstyled "> <li><a href="#" class="bb-alert" data-msg="IOS app is not available yet! Please try again later!"><img src="https://pdfcoke.com/static/images/app-store-badge.svg" height="45" /></a></li> <li><a href="#" class="bb-alert" data-msg="ANDROID app is not available yet! Please try again later!"><img style="margin-left: -10px;" src="https://pdfcoke.com/static/images/google-play-badge.png" height="60" /></a></li> </ul> </div> </div> </div> </footer> <div class="footer-copyright border-top pt-4 pb-2 bg-primary text-white"> <div class="container"> <p>Copyright © 2024 PDFCOKE.</p> </div> </div> <script src="https://pdfcoke.com/static/javascripts/jquery.min.js"></script> <script src="https://pdfcoke.com/static/javascripts/popper.min.js"></script> <script src="https://pdfcoke.com/static/javascripts/bootstrap.min.js"></script> <script src="https://pdfcoke.com/static/javascripts/bootbox.all.min.js"></script> <script src="https://pdfcoke.com/static/javascripts/filepond.js"></script> <script src="https://pdfcoke.com/static/javascripts/main.js?v=1726784412"></script> <!-- Global site tag (gtag.js) - Google Analytics --> <script async src="https://www.googletagmanager.com/gtag/js?id=UA-144986120-1"></script> <script> window.dataLayer = window.dataLayer || []; function gtag(){dataLayer.push(arguments);} gtag('js', new Date()); gtag('config', 'UA-144986120-1'); </script> </body> </html>