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 number of page directives
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?