Follow and like us on our Facebook page where we post on the new release subject and answering tips and tricks to help save your time so that you can never feel stuck again.
Shortcut

Ctrl + F is the shortcut in your browser or operating system that allows you to find words or questions quickly.

Ctrl + Tab to move to the next tab to the right and Ctrl + Shift + Tab to move to the next tab to the left.

On a phone or tablet, tap the menu icon in the upper-right corner of the window; Select "Find in Page" to search a question.

Share Us

Sharing is Caring

It's the biggest motivation to help us to make the site better by sharing this to your friends or classmates.

Web Systems Technologies

Covers the principles and technologies used in developing and managing web-based systems, including web design, programming for effective online presence.

web

systems

technologies

html

css

javascript

php

python

ruby

java

asp.net

cms

api

database

security

Which of the following is the open and closing tags of PHP?

  • <?php ?>

Each object in JavaScript has properties associated with it

  • True

Which of the following comparisons will return false?

  • 4<=3

To write a string of text on a Web page, the _________ method is used

  • documentprint()

Which of the following is a valid use of the windowalert() method?

  • None of the choices

It is a server side scripting language that is designed to be embedded because it is mixed in the HTML Markup. This Language can process and email contact forms, upload & file from online forms, generate thumbnails for large images, watermark images, read and write files and communicate with a database.

  • PHP

Which of the following will correctly access the fifth element of an array named "age"?

  • age[4];

Which of the following is not a commenting style?

  • % %

Which of the following is a valid name for an array?

  • soap

Which of the following language is used to program the behavior of web pages?

  • None of the choices

Which of the following is not a framework concepts?

  • Controller

All object collections are supported by all browsers or browser versions

  • False

Which of the following is not a JavaScript operator?

  • None of the choices

Active scripting is not a programing language instead it is a plain text interpreted to make a dynamic and interactive web pages.

  • False

The keydown event occurs when a viewer presses down a key on the keyboard

  • True

The external JavaScript file must contain the

  • False

An event handler is a predefined JavaScript property of an object that is used to handle an event on a Web page

  • True

The script tag's attribute that tells the browser the language of the script.

  • type

This are statements that make decision.

  • Conditional Statement

JavaScript is a language that must be compiled while Java is a language that must be interpreted.

  • Object based

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?

  • None of the above

JavaScript is a _________ language that doesn't require a program to be compiled before it is run.

  • scripting

This are statements that performs repetitive tasks.

  • Loops

How will you end a statement in PHP?

  • by putting a semicolon (;)

What does the following code do? var s_list= new Array()

  • None of the choices

Which of the following indicates that a single line of commentary will follow it within JavaScript code?

  • //

What is the original name of JavaScript?

  • Mocha

If a = 5 and b = a++ + 10 * 3, what is the value of y?

  • None of the choices

Which of the following does not belong to the group?

  • AMA-PC1user

Which of the following would be valid as the first line of an if/else statement?

  • None of the choices

JavaScript is _________.

  • Object based

Which of the following is not an include statement?

  • <?php include_all 'include/externalphp' ?>

Which of the following statements will return false?

  • (4>=4)&&(5<=2)

Which of the following would correctly generate a random number between 0 and 7?

  • var rand_int= Mathfloor(Mathrandom()*7);

Part of the browser that understands JavaScript.

  • JavaScript Interpreter

This is the command to display the value stored in the variable.

  • Echo

In installing individual components for Windows, you download all components from vendors

  • True

Which of the following statements will return true?

  • !(17>=20)

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

  • True

Who developed the JavaScript?

  • None of the choices

Is use to change the color of the web page to blue

  • windowbgcolor = blue

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)

  • True

OSX has Apache and PHP included in its Operating System

  • True

PHP and ASPnet are example of Application Server

  • True

To declare a function, you use the reserved word ________

  • function

Why should you use the type attribute in the opening script tag?

  • To be sure the browser does not interpret your JavaScript as another scripting language and to ensure the Web page validates in _XHTML

Which of the following successfully prints a variable named name by adding it to a set of strings?

  • None of the choices

It holds multiple values.

  • Arrays

It is named value pairs that are stored in the browser and they're sent to the web server with each page request

  • Cookies

JavaScript has similarities to other programming and scripting languages.

  • True

What do the properties and methods of the Math object enable you to do?

  • Perform mathematical calculations

The choice of a Web browser is up to you, as long it's compatible with _________.

  • JavaScript

What are two reasons why a function can be useful?

  • They provide a way to organize the various parts of the script into the different tasks that must be accomplished, and they can be reused

Which of the following successfully prints a variable named myhobby by adding it to a set of strings?

  • documentwrite("I like to " +myhobby+ " every weekend");

Part of the web browser that understands HTML and CSS.

  • Rendering Engine

This is a framework that is backed by a french company Sensio Labs and distributed with the MIT license.

  • Symfony 2

Which of these would be valid as the first line of a for loop?

  • for (x=1;x<6;x+=1)

When would it be a good idea to use an external JavaScript file?

  • When the script is very long or needs to be placed in more than one HTML document

What property of the Array object will return the numeric value of the length of an array?

  • The length property

An external JavaScript file commonly uses a filename extension of _______.

  • .js

Which of the following is not a JavaScript object?

  • None of the choices

For Linux installation of the individual components, you have to use the Apt-Get which is a GUI based program installed in Linux

  • True

It is a function in the PHP that check whether the variable has been set

  • isset()

It is a function that display the content of the array

  • print_r(~Hasdollar~Flowers);

A system of tools that package up all three components into a single application so that we can develop within

  • Database Management System

Is a property use to display document within the frame

  • document

The fastest way to install your AMP Stack is to use either WAMP Server or the MAMP Server

  • True

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

  • True

This are statement that performs preset of tasks.

  • Functions

It is a function in the PHP that get the date of the server

  • date()

If str = "Jose, Enrique, Vicente" and res = strslice(15,22), what will be the resulting value of res?

  • Vicente

How many times can you nest a code block within another?

  • As many times as you like (though enough nesting could run the browser out of memory)

Web Applications are built with multi-tier architecture

  • True

How do you write "Hello World" in an alert box?

  • alert(“Hello World”)

Which of the following comparisons will return true?

  • 4!=3

Which of the following variable declarations uses a variable with a valid variable name in JavaScript?

  • None of the choices

The _______ signals the end of a JavaScript statement.

  • None of the choices

Which of the following would correctly write the value of pi on a Web page?

  • documentwrite(MathPI);

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.

  • Framework

The mousedown event uses what keyword as its event handler?

  • None of the choices

Refers to an array of all objects of a particular type

  • object collection

This is the command line interface of the Symfony 2.

  • AppConsole

Which of the following is a Free PHP Editor?

  • Komodo Edit

In JavaScript, you access object properties through the use of the

  • None of the choices

Which of the following statements would be valid in JavaScript?

  • documentwrite("John said, "Hi!"");

What symbol is used as the assignment operator in JavaScript?

  • None of the choices

Which of the following does not correctly create an array?

  • var if= new Array[10];

Is JavaScript code case sensitive?

  • No

What do you use to enclose the blocks of code in conditionals and loops?

  • Curly brackets

It is a function in the PHP that converts the string into Upper case

  • strtoupper()

What are two of the benefits of using variables?

  • They can save you time in writing and updating your scripts, and they can make the purpose of your code clearer

What does a comparison operator do?

  • Compares two values or statements, and returns a value of true or false

Is an object collection for all internal frames in the document

  • documentframes

It is the command used to incorporate an external page into your html

  • include

You should avoid using JavaScript reserved words as variable names

  • True

This are meandering code that does a lot of different things in one single place.

  • Spaghetti Code

Variable names are not case sensitive

  • True

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

  • ~Hasdollar~_POST

It is a collection of individual data items that are stored in a highly structured way that represetnts a model of reality

  • Database

Which of the following is not recommended feature in choosing a script editor?

  • None of the Choices

Which of the following string declarations is invalid?

  • None of the choices

Which of the following is not the file to access if you want to change your server's time?

  • indexphp

Server Stack is composed of server based software that runs together such as HTTP Server, Application Server and Database Server

  • True

Which of the following is something you should have to use the JavaScript?

  • Web browser

What does an assignment operator do?

  • Assigns a new value to a variable

In naming a variable in PHP what is the required Special Character?

  • ~Hasdollar~ (Dollar Sign)
Comments