Click here for oracle site version 11 Click here for oracle site version 10 email : hassam_zafar10@yahoo.com Password : chawaL85 copy and paste the name and password
Posts
Showing posts from September 5, 2012
Web Eng. ( 5 Sep. 2012 )
- Get link
- X
- Other Apps
Assignment Submission date : 10 Sep 2012 -expected Problem:- write down TCP/IP server with GUI just like any chat messenger and that TCP/IP server can connect min. 2 clients and server can locate port of the socket that is going to be created against particular client.Server can trace the ip address of client Hint by Sir: server should be multi thread
Network design and Managent ( 5 Sep. 2012 )
- Get link
- X
- Other Apps
Sub-netting Click here for sub-netting by Cisco Support Community Click here for sub-netting by serverfault Click here for detailed view about IP Click here for List of assigned /8 IPv4 address blocks IPv4 address is of 32 bits. It consists of four octets Class 1 st Octet Decimal Range 1 st Octet High Order Bits Network/Host ID (N=Network, H=Host) Default Subnet Mask Number of Networks Hosts per Network (Usable Addresses) A 1 – 126* 0 N.H.H.H 255.0.0.0 126 (2 7 – 2) 16,777,214 (2 24 – 2) B 128 – 191 10 N.N.H.H 255.255.0.0 16,382 (2 14 – 2) 65,534 (2 16 – 2) C 192 – 223 110 N.N.N.H 255.255.255.0 2,097,150 (2 21 – 2) 254 (2 8 – 2) D 224 – 239 1110 Reserved for Multicasting E 240 – 254 1111 Experimental; used for research Note: Class A addresses ...
Web engineering ( 5 Sep. 2012 )
- Get link
- X
- Other Apps
import java.net.*; import java.io.*; class MyServer_aft{ public static void main(String p[])throws Exception{ ServerSocket ss; Socket s; BufferedReader in; String str; ss=new ServerSocket(4000); s=ss.accept(); in=new BufferedReader(new InputStreamReader(s.getInputStream())); while((str=in.readLine())!=null){ System.out.println(str); } } } ---------------------------- compile and run this program than go to run dialog box and type in " Telnet " a command prompt will open than type in " o " if YOU are connecting to a local server that means You are connecting to your own P.C than type in " 127.0.0.1 " hit enter type any mess...
Java books
- Get link
- X
- Other Apps
Click here for java network programing book Click here for O'Reilly - Java and XML 2nd Edition O'Reilly - Java Network Programming 2nd Edition Click here for book (Java 2 compelete reference) Click here for java books collection in form of torrent Click here for O'Reilly - O'Reilly Ultimate Collection - 352 books [PDF]
Web Engineering( 3 Sep. 2012 )
- Get link
- X
- Other Apps
Web A network of networks is called Internet the world wide web (abbreviated as www or w3, commonly known as the web), is a system of interlinked hypertext documents accessed via the internet . with a web browser , one can view web pages that may contain text, images, videos, and other multimedia , and navigate between them via hyperlinks .Using concepts from his earlier hypertext systems like enquire , british engineer and computer scientist sir tim berners-lee , now director of the world wide web consortium (w3c), wrote a proposal in march 1989 for what would eventually become the world wide web. at cern , a european research organization near geneva situated on swiss and french soil, berners-lee and belgian computer scientist robert cailliau proposed in 1990 to use hypertext "to link and access information of various kinds as a web of nodes in which the user can browse at will", and they publicly introduced the project in december of the same year. ...