--%>

Explain why java is so important for internet?

The internet aided java to the forefront of programming. And java consequently has had a deep effect on the internet. The reason for this is highly simple: java uses the universe of objects that can travel freely in cyber space. In a network, two broad categories of objects are transmitted among the server and your personal computer: passive information and dynamic active programmes. For example when you read your e-mail you are seeing passive data. Even when you download a programme, the programmes code is still only passive data until you execute it. However a second type of objects can be transmitted to your computer a dynamic self executing programme. Such a programme is an active agent on the client computer, yet is initialized by the server. For example a programme might be provided by the server to display properly the data that the server is sending. As desirable as dynamic, network programmes are they also present serious problems in the areas of security and portability. Prior to java, cyber space was effectively closed to half of the entities that now live there. As you will see, java addresses those concerns and by doing so, has opened the door to an exciting new form of programme, the applet.

   Related Questions in Programming Languages

  • Q : Define Package Package : The named

    Package: The named grouping of classes and interfaces which gives a package namespace. Classes, interfaces and class members devoid of an explicit public, protected or private access modifier {access!modifier} encompass package visibility. The public

  • Q : Define Identifiers Define Identifiers

    Define Identifiers and their naming convention in brief?

  • Q : Explain script recorded over tested web

    Why is the script recorded over the tested web pages not playback correctly?

  • Q : Define the term XQuery Define the term

    Define the term XQuery?

  • Q : What is Bounded repetition Bounded

    Bounded repetition: The Repetition where statements within a loop's body are executed a fixed number of times and the number of times is established whenever the loop began. There is no control structure in Java which guarantees the bounded repetition

  • Q : Explain the term soft real-time Explain

    Explain the term soft real-time.

  • Q : Define Binary search Binary search :

    Binary search: This is a search of sorted data, in which the middle place is examined first. The search continues with either the right or the left part of the data, therefore removing half the remaining search space. This procedure is repeated at eac

  • Q : Difference between the choice and list

    Illustrate the difference between the choice and list?

  • Q : Define Short-circuit operator

    Short-circuit operator: It is an operator in which only as a lot of operands are computed as are required to determine the final outcome of the operation. The logical-and (&&) and logical-or (||) operators are most general illustration, though

  • Q : What is Homogeneous collection

    Homogeneous collection: A group of objects with similar dynamic type. Arrays are the most general homogeneous collection objects.