23. Storage space in java is of the form
Stack
Queue
Heap
List
24. What is java code embedded in a web page known as
Applets
Servlets
scriptlets
snippets
25. Which of the following attributes are compulsory with
an <applet> tag?.
code,height & width.
26. What does 'CODEBASE' in an applet tag specify?.
Files absolute path.
No Answer is Posted For this Question
Be the First to Post Answer
what is the difference between preemptive scheduling and time slicing? : Java thread
What is split return?
Explain inheritance in java?
Can an interface extend another interface?
What are the states of thread in java?
What are different type of access modifiers?
What about static nested classes in java?
Can we override a variable in java?
What does method mean?
int a=10,b=20,c=30 a= b+c;b=a+c;c=a+b; System.out.println("The value is"+a+b+c;
What are the legal operands of the instanceof operator?
What is passed by reference and pass by value ?