Posts

Showing posts with the label IM

IT-14408 Web Technologies Laboratory Output

Image
Practical Output : 14 Practicals Print them and Enjoy!

To implement the various components of HTML5 Canvas

Image
 Canvas Line   Source Code: <!DOCTYPE html> <html> <head>     <title>Canvas Line</title> </head> <body> <canvas id="Line" width="200" height="100" style="border:1px"> </canvas> <script type="text/javascript">     var c= document.getElementById('Line');     var ctx=c.getContext("2d");     ctx.beginPath();     ctx.moveTo(0,0);     ctx.lineTo(200,100);     ctx.stroke(); </script> </body> </html > Output: Canvas Circle Source Code: <!DOCTYPE html> <html> <head>     <title>Canvas Circle</title> </head> <body> <canvas id="Circle" width="200" height="100" style="border:1px"> </canvas> <script type="text/javascript">     var c= document.getElementById('Circle');     var ctx=c.g...

To setup IIS and Apache Web Server on computer system.

Include the following source Code in Document Environment in your LaTeX File Source Code: %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% Practical 4 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \newpage \section{\emph{To setup IIS and Apache Web Server on computer system.}} \textbf{Setup of IIS Server} \\Internet Information Services (IIS) is an extensible web server created by  Microsoft for use with Windows NT family. IIS supports HTTP, HTTPS, FTP, FTPS, SMTP and NNTP. It has been an integral part of the Windows NT family since  Windows NT 4.0, though it may be absent from some edition and is not active by default.\\ \textbf{Steps for Setting IIS Server} \begin{enumerate} \item To open the Windows Features dialog box, click Start, and then click Control Panel \begin{figure}[h] \centering \includegraphics[scale=0.7]{p4} \end{figure} \item In...

To get familiarize with various troubleshooting utilities like ping, ipconfig, arp, traceroute, mtr,tcpdump, windump, nslookup and netstat.

Include the following source Code in Document Environment in your LaTeX File Source Code: %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %% Practical 3 %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% \newpage \section{\emph{To get familiarize with various troubleshooting utilities.}} \textbf{ping}\\ PING command is the best way to test connectivity between two nodes. Whether it is (LAN) or (WAN). Ping use ICMP to communicate to other devices. You can ping host name of ip address using below command.ping uses the ICMP protocol’s mandatory ECHO\_\ REQUEST datagram to elicit an ICMPECHO\_\ RESPONSE from a host or gateway. ECHO\_\ REQUEST datagrams have an IPand ICMP header,followed by a struct timeval and then an arbitrary number of “pad” bytes used to fill out the packet.\\ \textbf{SYNOPSIS}\\ ping -s [-d] [-l] [-L] [-n] [-r] [-R] [-v] [ -i interface\_\ address ] [-I interval] ...

Internet Methodologies Practical File Made in LaTeX

Image
All The Lab Practicals will be Done in LaTeX. This is Lab File For GNDEC IT Dept. students.All the codes are written in easiest way.You can copy.Get output and enjoy! ! Point to be noted: Copy The Source code As it is......But Do Remember 😜  to change name and roll no. on front page. I have Commented{in  RED  with %}  in the code Where you have to do Changes so enjoy with a few changes!! Practical 3 and Practical 4 only 1st page is made ,so rest get it printed from practical 3 and 4 pdfs. Download all images  (Given Below)in the same folder,where you have saved the copy of source code i.e. (.tex) file  TeXworks used for compiling!! HTML FILES !! TeX File !! Output at end Keep iView-ing!! Source Code: \documentclass[12pt]{article} \usepackage{graphicx} \usepackage{wrapfig} \usepackage{multicol} \usepackage{caption} \usepackage{subcaption} \usepackage{transparent} \usepackage{multirow} \usepackage{eso-pic} \usepackage[utf8]{in...

To demonstrate array objects and date object’s predefined methods using javascript.

Image
Example of Array!! Source Code: <!DOCTYPE html> <head> <title>Js8</title> </head> <html> <body> <p>The toString() method returns an array as a comma separated string.</p> <p id="demo"></p> <hr>     <a href="E:\documents\IM LAB\html\html3-mail link.html">Sanjampreet Singh</a>     <br>     <a href="http://sanjamhelping.blogspot.in/p/it-14304-it-methodologies-lab.html">Department Of Information Technology</a>     <br>     <a href="E:\documents\IM LAB\html\js7\js7_1.html"><-Last Practical</a>&nbsp;&nbsp;&nbsp;&nbsp;     <a href="E:\documents\IM LAB\html\js8\js8_1.html">Next Practical-></a>    <br> <script> var fruits = ["Banana", "Orange", "Apple", "Mango"]; document.getElementById("demo...