types of applets?.
Answers were Sorted based on User's Feedback
Answer / ravichandra
there are two types of applets are there.
1.local applets:these applets are run within the browser.
2.remote applets:these appltes are run on the internet.
| Is This Answer Correct ? | 149 Yes | 13 No |
Answer / dipil t t
1.local applets:these applets are run within the browser.
2.remote applets:these appltes are run on the internet.
| Is This Answer Correct ? | 92 Yes | 16 No |
Answer / shridhar shelake
Remember "Every APPLET act as a Browser"
and File extension os applet is .HTML
as question held types of applet it is simple.
1.LOCAL APPLET
2.REMOTE APPLET
Difference is that local applet operate in single machine
browser which is not connected in network,while remote
applet poerate over internet via network.
| Is This Answer Correct ? | 51 Yes | 4 No |
Answer / pramod kumar
1.LOCAL APPLET
2.REMOTE APPLET
Difference is that local applet operate in single machine
browser which is not connected in network,while remote
applet poerate over internet via network.
| Is This Answer Correct ? | 43 Yes | 2 No |
Answer / sudheer
APPLETS ARE 2 TYPES ,THEY ARE
1)LOCAL APPLETS
2)REMOTE APPLETS
| Is This Answer Correct ? | 43 Yes | 3 No |
Answer / onam
local applets are those which are stored on your computer system and while accessing them you dont need to connect with the internet.
while remote applets are those which are not on your computer and to access them you need to connect with the internet.
| Is This Answer Correct ? | 22 Yes | 3 No |
Answer / rakesh
there are two types of applet
1>signed or trusted applet
2>unsigned or untrusted applet
| Is This Answer Correct ? | 14 Yes | 32 No |
What are generic methods?
How do you remove an object from an arraylist in java?
solve this is my problem byte a=40,byte b=50 both add value is 90 this is with in range of byte... byte range is -128to 127.... why this pgm gives error like type mismatch.... package javapgms; public class byte1 { public static void main(String args[]) { byte a=40,b=50; byte c=a+b; System.out.println(c); } } note : dont use int k... a,b,c are in byte range... mind it..
What is Runtime class and its purpose?
IN java collections we have both interfaces and classes. instead of using interfaces why we can't use classes only like that why we can't use interfaces only. why we need two things interface and class.
What is the exact difference in between Unicast and Multicast object?
Is array passed by reference in java?
What is token in java?
In the first round, there are 30 aptitude and 30 java questions. We are suppose to finish both the papers within 60 minutes. I cleared this round. Next was test for programming skills. In this section, Some 7 n's were asked. 1. What is the difference b/w sleep(1000) and wait(1000) 2. what is the diff b/w static block and static function? 3. Write a program to validate IP address using string tokenizer. 4. Write a program to create singleton class 5. write a function to reverse the string 6. Write a prog to print prime nos upto n. EX: If n=9, It shld print 1,2,3,5,7 7. One program on collections- Write a program to print no. of times a number is repeating in an array. EX- {1,3,1,2,5,7,3,7,34,3,8,3} It should print: 1- 2 times 3- 4 times and so on 7. Write a func to print fibonocci series After this I had technical interview, which went on for. 60 mins or so. There were qn's about multi threading, Exception handling and collection classes. Knowledge about collections was very important for the post I was interviewed for.
What is the difference between length and size in java?
What exceptions occur during serialization?
2) Suppose there are 5 directories having lot of files (say txt files) in each directory. 2 things :- 2.1) You want to search for filenames which have a particular pattern. 2.2) Out of these filtered files you want to search for a particular keyword or a search string. How can you achieve this?