What is the different between Applet and Application?
Answer Posted / vinay chowdary
Applet is a kind of componet which provide easy way of
sharing,meaning applet can be downloaded from any remote
machine and can uploaded to any remote location .and it can
be invoked locally,or it can be invoked from remote machine
through your browser.
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
What are benefits of oop?
Why is polymorphism used?
What is class in oop with example?
Why do we use oop?
class CTest { public: void someMethod() { int nCount = 0; cout << "This is some method --> " << nCount; } }; int main() { CTest *pctest; pctest->someMethod(); return 0; } It will executes the someMethod() and displays the value too. how is it possible with our creating memory for the class . i think iam not creating object for the class. Thanks in Advance... Prakash
What is encapsulation selenium?
Explain virtual inheritance?
What is abstract class in oops?
What is overloading and its types?
2. Give the different notations for the class.\
i=20;k=0;
for(j=1;k-i;k+=j<10?4:3)
{
cout< What is a class and object? Can an interface inherit a class? What exactly is polymorphism? Is oop better than procedural?