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 complexity and its types?
Why is java multithreaded?
What is the use of join method?
What makes a function well defined?
If an object reference is set to null, will the garbage collector immediately free the memory held by that object?
How to sort elements in a parallel array in java?
What is static method with example?
Name four container classes.
Explain about global variables in Java?
When should I use a singleton?
What is static and a non-static inner class?
for(i=0;i<100;i++) { int i=method();//method returns no's from 1 to 10; /* insert some stmts which can give output like no.of times numbers(1-10) returned. (for example if it returns 2 then i want output how many times 2 returned) like that i want output for no's 1 - 10 how many times each no returned. */ }