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
Predefined variables are also called as
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 is the problem with the following code using PHP5?
Which is the final value of $n?
Which of these are valid array operators in php?