web technology Online Quiz - 94
Description: web technology Online Quiz - 94 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: web technology |
Given there is non null data for Login column of Employee table, Running the statement "SELECT [LOGIN] FROM EMPLOYEE WHERE [LOGIN] <> NULL " will give the correct result only after executing which statement?
A c++ program can have two main functions
Which tag makes the largest headline?
The line below is called a _______________.
HTML is ___________.
What is the HTML feature that divides a web page into two or more scrollable parts?
A table is a _____.
A form is an _____.
Target=_blank specifies that a
HTML has a set of rules under which it operates. What is it called?
Which part of the HTML document would you find you META tag information?
To center, right or left justify text or an image, what code would I use?
Enable, form, name, type, and value are all ________.
onBlur, onClick, and onFocus are all ______ handlers.
What is JSF?
What is JSF?
JSF implements MVC (Model, View, and Controller) design pattern.
Which is not provided by JSF?
Which is the 3rd phase of the JSF application lifecycle?
Class C { public static void main(String[] args) { int[]a1[]=new int[3][3]; //3 int a2[4]={3,4,5,6}; //4 int a2[5]; //5 }} What is the result of attempting to compile and run the program ?.