IT-6303 - Web Systems Technologies oed answer key
Showing 101 to 115 of 115 total answers.
#IT-6303
Awesome StudentQuestion • Web Systems Technologies
Which of the following correctly assigns the result of a function named get_something () to a variable named shopping?
Answer
var shopping=get_something ();
#IT-6303
Awesome StudentQuestion • Web Systems Technologies
For Linux installation of the individual components, you have to use the Apt-Get which is a GUI based program installed in Linux
Answer
True
#IT-6303
Awesome StudentQuestion • Web Systems Technologies
Server Stack is composed of server based software that runs together such as HTTP Server, Application Server and Database Server
Answer
True
#IT-6303
Awesome StudentQuestion • Web Systems Technologies
Active scripting is not a programing language instead it is a plain text interpreted to make a dynamic and interactive web pages.
Answer
False
#IT-6303
Awesome StudentQuestion • Web Systems Technologies
What is the output of the script below? <script> var text1 = "Hello"; var text2 = "World!"; documentwrite(text1concat(" ",text2));
Answer
None of the choices
#IT-6303
Awesome StudentQuestion • Web Systems Technologies
It is a PHP function wherein the data will be transmitted to the server in the http header when the form is submitted for processing
#IT-6303
Awesome StudentQuestion • Web Systems Technologies
Which of the following correctly assigns the day of the week for an instance of the Date object named rightnow to a variable named weekday?
#IT-6303
Awesome StudentQuestion • Web Systems Technologies
What is the result of the script below? <script> var n = ["Maria", "Isabella", "Georgina"]; var new_n = npop(); documentwrite(new_n); </script>
#IT-6303
Awesome StudentQuestion • Web Systems Technologies
What is the result of the script below? <script> var n = ["Maria", "Isabella", "Georgina"]; nshift(); nunshift("Maria"); documentwrite ; </script>
#IT-6303
Awesome StudentQuestion • Web Systems Technologies
The getMonth() method returns the same number as the number that represents the current month (for example, returns 1 if the current month is January)
#IT-6303
Awesome StudentQuestion • Web Systems Technologies
Web browser such as IE/Chrome/Safari/Opera is part of the client tier This renders HTML, Images and CSS It also executes client-side codes such as javascripts and plugins
#IT-6303
Awesome StudentQuestion • Web Systems Technologies
Rather than executing every single line of code within the script, a conditional statement allows certain sections of the script to be executed only when a particular condition is met
#IT-6303
Awesome StudentQuestion • Web Systems Technologies
This are made up of both prescribed pattern to structure and organize your code and pre-built, pre-tested components that you can use to shorten your development time and to aid in code organization.
#IT-6303
Awesome StudentQuestion • Web Systems Technologies
What is the result of the script below? <script> var greeting; var time = 10; if (time < 10) { greeting = "Good morning"; } else if (time < 20) { greeting = "Good day"; } else { greeting = "Good evening"; } documentwrite(greeting); </script>
#IT-6303
Awesome StudentQuestion • Web Systems Technologies