Friday, 12 April 2013

2. Write a JavaScript that demonstrates the use of +=,-=,*=,/= operators.

0 comments
WTAD Practical-2
Write a JavaScript that demonstrates the use of +=,-=,*=,/= operators.


<HTML>
<HEAD>
<TITLE>WTAD.practical-2 @iAmLearningHere </TITLE>
</HEAD>
<BODY>
<H2>Demonstration the use of +=,-=,*=,/= operators.</H2>
<H3>
<script type="text/javascript">

    var i = 11;
    document.write("<br> i = " + i);
    i += 10;
    document.write("<br>( i +=10 ) =>" + i);
    i *= 10;
    document.write("<br>( i *=10 ) =>" + i);
    i -= 10;
    document.write("<br>( i -=10 ) =>" + i);
    i /= 10;
    document.write("<br>( i /=10 ) =>" + i);
</script>

Thursday, 11 April 2013

1. Write a JavaScript that shows how a variable’s type can be changed on-the-fly.

0 comments
WTAD Practical -1 :
Write a JavaScript that shows how a variable’s type can be changed on-the-fly.


<HTML>
<HEAD>
<TITLE>WTAD.practical-1 @iAmLearningHere </TITLE>
</HEAD>
<BODY>

<H4>See the Variable Type is changing .. !!</H4>
<script type="text/javascript">
    var p1 = 11;
    document.write("<br>p1 contains ::"+ p1 +" of Type :: "+ typeof(p1) +"<br>");
    p1 = 11.1;
    document.write("<br>p1 contains ::"+ p1 +" of Type :: "+ typeof(p1)+"<br>");
    p1 = 'i';
    document.write("<br>p1 contains ::"+ p1 +" of Type :: "+typeof(p1)+"<br>");
    p1 = true;
    document.write("<br>p1 contains ::"+ p1 +" of Type :: "+typeof(p1)+"<br>");
    p1 = "iamlearninghere";
    document.write("<br>p1 contains ::"+ p1 +" of Type :: "+typeof(p1)+"<br>");

</script>

Wednesday, 3 April 2013

FON- What is OSI Model? from basics

0 comments


In Fundamental of Networking, OSI is basic model to start with Computer Networking.
Here we found one Video which gives you idea about What is OSI model?
Topic is nicely explained in Hindi so most of us easily understands concept of OSI. try to understand the concepts.


Here is Video



We have not created this video.. All credit of this video goes to http://computerseekho.com . we have just shared with you.

post your feedback in comments, are you comfortable with the language of this video??
want more videos or material of FON??

 

Recent Post

Recent Comments

© 2010 IamLearningHere Template by MBT