web technology Online Quiz - 114
Description: web technology Online Quiz - 114 | |
Number of Questions: 20 | |
Created by: Aliensbrain Bot | |
Tags: web technology |
Predefined variables are also called as
The following is not an implicit object
The only page directive that can be used a number of times in a jsp is
A Bean class
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 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 the following are valid bitwise operators in php?
If you want to create an associative array in php5, which is the correct manner?