Itec225

Beschreibung

Quiz am Itec225, erstellt von danielle1671 am 01/12/2014.
danielle1671
Quiz von danielle1671, aktualisiert more than 1 year ago
danielle1671
Erstellt von danielle1671 vor mehr als 9 Jahre
130
0

Zusammenfassung der Ressource

Frage 1

Frage
The U.S. Department of Defense (DoD) developed one of the first Wide Area Networks and named it ARPAnet. The first node of this network was established at what major university in 1969.
Antworten
  • Massachusetts Institute of Technology (MIT)
  • Carnegie Melon University
  • University of California at LA (UCLA)
  • Princeton University

Frage 2

Frage
HTTP commonly utilizes port 80, port 8008, or port 8080.
Antworten
  • True
  • False

Frage 3

Frage
The IP address for the Radford University main web site is 137.45.29.220.
Antworten
  • True
  • False

Frage 4

Frage
The "Web" or "World Wide Web" is the same as the "Internet."
Antworten
  • True
  • False

Frage 5

Frage
What is the most widely used Web server software?
Antworten
  • IIS
  • Nginx
  • lighttpd
  • Apache

Frage 6

Frage
A URL (uniform or universal resource locator) is used to identify documents on the Internet. All URL's have the same general format: scheme:object-address.
Antworten
  • True
  • False

Frage 7

Frage
The following is an example of an relative link: "http://www.radford.edu"
Antworten
  • True
  • False

Frage 8

Frage
A valid xhtml1.0 document is no longer valid under the HTML5 standard.
Antworten
  • True
  • False

Frage 9

Frage
The following is an example of the what paragraph tags should look like within an XHTML document: <!DOCTYPE html> <html> <body> <p>This is paragraph 1. <p>This is paragraph 2. <p>This is paragraph 3. </body> </html>
Antworten
  • True
  • False

Frage 10

Frage
The GIF has a higher rate of compression than the JPEG and is used more often as a digital image format for websites.
Antworten
  • True
  • False

Frage 11

Frage
The content of the title tag is generally displayed in the browser window's title bar.
Antworten
  • True
  • False

Frage 12

Frage
Consider the following excerpt from a valid HTML document. <p>Mary had a little lamb. </p> This would probably be rendered most like which of the following by a browser.
Antworten
  • Mary had a little lamb.
  • Mary had a little lamb.
  • Mary had a little lamb.
  • there are errors, so it wouldn't be rendered

Frage 13

Frage
In the following code example "src" is considered to be an attribute. <img src="w3schools.jpg" width="104" height="142">
Antworten
  • True
  • False

Frage 14

Frage
The following code, according to Google, is considered to be the most effective for Search Engine Optimization. <meta name="keywords" content="HTML, CSS, XML, JavaScript">
Antworten
  • True
  • False

Frage 15

Frage
CSS (Cascading Style Sheets) ts a newer form of HTML.
Antworten
  • True
  • False

Frage 16

Frage
The value of what attribute in an anchor tag (<a>) specifies the target resource of the link.
Antworten
  • href
  • src
  • rel
  • target

Frage 17

Frage
In regards to SEO (search engine optimization) the ALT tag is only indexed by image-based search engines (like Google Images).
Antworten
  • True
  • False

Frage 18

Frage
The maximum number of list item tags (<li>) in an unordered list (<ul>) is 10.
Antworten
  • True
  • False

Frage 19

Frage
The following are differences between HTML and XHTML: HTML has loose syntax (closing tags are optional) HTML is extended from SGML XHTML elements must be properly nested XHTML elements must always be closed XHTML Attribute values must be quoted
Antworten
  • True
  • False

Frage 20

Frage
The CSS code within the given document below will help search engines index the pages contents. <!DOCTYPE html> <html> <head> <style> body {background-color:lightgray} h1 {color:blue} p {color:green} </style> </head> <body> <h1>This is a heading</h1> <p>This is a paragraph.</p> </body> </html>
Antworten
  • True
  • False

Frage 21

Frage
What is the most current version of CSS (Cascading Style Sheets) that most major browsers fully support?
Antworten
  • CSS3
  • CSS2
  • CSS2.1
  • CSS1

Frage 22

Frage
Which level of CSS has precedence in an XHTML document?
Antworten
  • External CSS
  • Inline CSS
  • Document level CSS
  • None of the above

Frage 23

Frage
The opening style tag <style type="text/css"> and closing style tag </style> is used in an external stylesheet just as it is in a document level style specification.
Antworten
  • True
  • False

Frage 24

Frage
Consider the following CSS rules (specifications). h1, h2 {property-value list} h1 h2 {property-value list} These two style rules are equivalent. Whether the selector tags are separated by commas makes no difference, the css rules are still applied to h1 and h2 tag elements.
Antworten
  • True
  • False

Frage 25

Frage
The following is an example of a document level CSS: <h1 style="color:blue;margin-left:30px;">This is a heading.</h1>
Antworten
  • True
  • False

Frage 26

Frage
Before JavaScript was called "JavaScript" it was called Oak:
Antworten
  • True
  • False

Frage 27

Frage
JavaScript supports polymorphism.
Antworten
  • True
  • False

Frage 28

Frage
The following is an example of internal (document level) JavaScript: <script type = "text/javaScript" src = "myScript.js"> </script>
Antworten
  • True
  • False

Frage 29

Frage
The following is an example of how you would comment out multiple lines of JS code: // The code below will change the heading with id = "myH" and the paragraph with id = "myP" in my web page: //
Antworten
  • True
  • False

Frage 30

Frage
The following is an example of how one would comment out one line of code in JavaScript: var y = x + 2; /* Declare y, give it the value of x + 2 */
Antworten
  • True
  • False

Frage 31

Frage
The following is an example of the implementation of an external JavaScript file: <script type = "text/javaScript"> -- JavaScript script – </script>
Antworten
  • True
  • False

Frage 32

Frage
JavaScripts can only be imbedded in the <head> section of an HTML document.
Antworten
  • True
  • False

Frage 33

Frage
Javascript does implement objects and is an object based language. An example is an HTML tag, which can be accessed using Javascript object notation.
Antworten
  • True
  • False

Frage 34

Frage
Unlike Visual Basic .NET, JavaScript requires semicolons to end statements.
Antworten
  • True
  • False

Frage 35

Frage
Flag = false; is an example of a String value.
Antworten
  • True
  • False

Frage 36

Frage
The following is an example of a Boolean value: today = "monday",
Antworten
  • True
  • False

Frage 37

Frage
In JavaScript, the acronym NaN means "not a number".
Antworten
  • True
  • False

Frage 38

Frage
The following is an example of a basic object: var myObject = new Object();
Antworten
  • True
  • False

Frage 39

Frage
The following is an example of a loop statement: myCar.make = "BMW";
Antworten
  • True
  • False

Frage 40

Frage
The following array method will allow you to take everything within the list and make the items into a single string: join – e.g., var listStr = list.join(", ");
Antworten
  • True
  • False

Frage 41

Frage
The current name "JavaScript" was created as the result of a joint venture between which of the following companies?
Antworten
  • Microsoft and apple
  • adobe and oracle
  • netscape and sun
  • w3c and netscape

Frage 42

Frage
In JavaScript Boolean values are:
Antworten
  • 0 and 1
  • True and False
  • 1 and 2
  • none of the above

Frage 43

Frage
The length of an array is the highest subscript to which an element has been assigned:
Antworten
  • True
  • False

Frage 44

Frage
There are two ways in JavaScript to do pattern matching.
Antworten
  • True
  • False

Frage 45

Frage
var numChecked = 0; for index = 0; index < dom.toppings.length; index++) if (document.getElementById("topGroup").toppings[index].checked] numChecked++; WILL WORK THE SAME AS the code below var numChecked = 0; var dom = document.getElementById("topGroup"); for index = 0; index < dom.toppings.length; index++) if (dom.toppings[index].checked] numChecked++;
Antworten
  • True
  • False

Frage 46

Frage
Font properties for an element with text can be changed by simply using the mouseover and mouseout events to trigger a script that makes the changes.
Antworten
  • True
  • False

Frage 47

Frage
Clicking on an image and an a larger image appears is an example
Antworten
  • True
  • False

Frage 48

Frage
PHP is an object oriented programming language that was not intended to be ran on a server:
Antworten
  • True
  • False

Frage 49

Frage
PHP syntax is similar to which of the following languages?
Antworten
  • javascript
  • all of the above
  • c++
  • c

Frage 50

Frage
With PHP, unlike Java, you do not have to declare variables.
Antworten
  • True
  • False

Frage 51

Frage
The following code is an example of internal PHP: <!DOCTYPE html> <html> <body> <?php echo "My first PHP script!"; ?> </body> </html>
Antworten
  • True
  • False

Frage 52

Frage
With PHP ALL variables must begin with the $ symbol.
Antworten
  • True
  • False

Frage 53

Frage
The following is an example of a single line PHP comment: /* This is a single comment block
Antworten
  • True
  • False

Frage 54

Frage
The following is an examples of single line comments in PHP: // This is a multiple-line comment for Multple lines // # This is also a multiple-line comment for Multple lines #
Antworten
  • True
  • False

Frage 55

Frage
Unlike PHP, where characters are single bytes, charcters for other languages are typically more than single bytes.
Antworten
  • True
  • False

Frage 56

Frage
The four compund types of operators are: Boolean, integer, double, and string
Antworten
  • True
  • False

Frage 57

Frage
In PHP there are 8 primitive types of operators.
Antworten
  • True
  • False
Zusammenfassung anzeigen Zusammenfassung ausblenden

ähnlicher Inhalt

ABSOLUTISMUS - LUDWIG XIV
Julian 1108
Bourdieu
Melanie Najm
Die Zelle
Tahir Celikkol
Krankenkasse Grundversicherung
Christine Zehnder
Grundzüge Soziologie Richter
Kamila rURKA
Vetie Radiologie Übungsfrage
Carolina Heide
Jour Gesko WS 18/19
Adrienne Tschaudi
Innere 2015 Vetie
Mailin Hein
Vetie - Innere Medizin 2013
Fioras Hu
Vetie - Innere Medizin 2012
Fioras Hu
Vetie Pharma 2016
E. König