web technology Online Quiz - 114
Description: web technology Online Quiz - 114 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: web technology |
JSP expressions should be enclosed within
The following is not an implicit object
Following is a type of JSP directives
The number of page directives
The only page directive that can be used a number of times in a jsp is
The following is not a feature of java beans
A Bean class
The number of JSP action tags
TLD is
package polymorphism;class TestPolymorphismSuper { int p; TestPolymorphismSuper testPoly() { TestPolymorphismSuper TS = new TestPolymorphismSuper(); TS.p =100; return TS; }}public class TestPolymorphism1 extends TestPolymorphismSuper{ TestPolymorphism1 testPoly() { TestPolymorphism1 TSub = new TestPolymorphism1(); TSub.p =500; return TSub; } public static void main(String[] args) { TestPolymorphismSuper TSuper = new TestPolymorphism1(); TSuper = TSuper.testPoly(); System.out.println(TSuper.p); }}
Which PHP function do you use to connect to a mysql database.
Which is the correct way to call an object method?
Which is the problem with the following code using PHP5?
Which is the final value of $n?
Which is the function, besides join(), that you use to join array elements with a string?
Which logical operators are allowed in PHP?
Which of these are valid array operators in php?
Which of the following are valid bitwise operators in php?
If you want to create an associative array in php5, which is the correct manner?