Submitted Questions

  • JavaScript in HTML

    Which tag do we use insert a JavaScript in HTML page?

    Mahendar

    • Dec 30th, 2011

    We use < script > tag to indicate javascript in html. Place this inside < head > tag. Example:

    Code
    1.  
    2. <script type="text/javascript">
    3.  
    4. function xyz()
    5. {
    6. /// your code
    7. }
    8. </script>

    Nisa

    • Oct 10th, 2011

    Having type property value is javascript so following code will be used for putting javascript in HTML

    Code
    1. <script type="text/javascript">
    2. </script>

  • Firewall

    A firewall is implemented in 1. Routers which Connect internet to internet2. Bridges used in an intranet3. Expensive modems4. User's application programs

    Rahul

    • Mar 20th, 2013

    FIREWALL is used to Block the Malicious Means Suspicios Traffics in the Network.

    Efren

    • May 5th, 2010

    A firewall could be software or hardware. An example of software is the one that reside on your desktop operating systems like Windows XP. A hardware example is CISCO Pix firewall which is usually con...

  • Round Robin Scheduling

    What happens in round robin scheduling when time quantum has too large?

    santhosh.ic

    • Feb 27th, 2010

    For Round Robin scheduling, the time quantam should be choosen carefully. If the time qunatam is too large the responsiveness of the applications would reduce. And if the time quantum is small then most of the time is spent in the context siwtch rather than processing.