latest articles

Thursday, January 16, 2014

Play Operation B Game

Play Operation B Game



How To Play
In classic mode , the rule is similar to other bubble games. 3 to clear up and 6 misses to down a line. In action mode , use A&D to move. Shoot flying white bubbles.

Game Controls
Use A&D to move. Shoot flying white bubbles.

Read more

Super Mario World Revived

Super Mario World Revived

Super Mario World Revived
In Super Mario World Revived your objective is to help Mario to escape all the obstacles and reach the end of each level to progress to the next. Use the keyboard arrow keys to move and press the spacebar button to jump. Jump on the enemies to smash ...
Read more

Sunday, July 14, 2013

Java Applets Notes

Java Applets Notes

















Read more

Java Exception Handling Complete Note

Java Exception Handling Complete Note








Read more

Friday, July 12, 2013

Java Script Alert Box Example

Java Script Alert Box Example


<html>
<head>
</head>
<script language="JavaScript">
function show_alert()
{
alert("Hello! I am an alert box!")
var i=1,j
while(i<=5)
{ j=1 
while(j<=i)
{
document.write(i)
j++
}
i++
document.write("<br>")
}
}
</script>
<body>

<input type=button onclick="show_alert()"  value="Show alert box">
</body>
</html>

Out Put


Read more

Java Script Check Box Example

Java Script Check Box Example

<html>
<head>
<title>
using check box.
</title>
<script language=JavaScript>
function check1clicked()
{
var str=""
if(document.form1.check1.checked==true)
{
str+="Learn With Fun"
}
if(document.form1.check2.checked==true)
str+="http://satyarahulraj.blogspot.in"
document.form1.textfield.value=str
}
</script>
</head>
<body>
<center>
<h1>using check boxes</h1>
<form Name=form1>
 <input type = checkbox name=check1 onclick="check1clicked()">please click
<input type = checkbox name=check2 onclick="check1clicked()">please click on me
 <br><input type=textarea name="textfield" size=30>
</form>
</center>
</body>
</html>

Out Put


Read more

Hello World Java Script Example

Hello World Java Script Example

<html>
<head>
<title>
      JavaScript Example 
</title>
</head>
<script language="javascript">
        document.write("Hello World!")
document.write("<marquee/><h6/>Hello World!");
     <!--This is comment -->
 </script>

<body>
  </body>
</html>

Out Put


Read more