Procedure to make a connection to the URL
Briefly describe the procedure to make a connection to the URL?
Expert
At first, obtain a URL instance and then invoke openConnection on it. The URLConnection is an abstract class that signifies you cannot directly make instances of it by using a constructor. You have to invoke openConnection process on a URL instance, to obtain the right type of connection for your URL. Example: URL url;
URLConnection connection; try{ url = new URL("..."); connection = url.openConnection(); }catch (MalFormedURLException e) { }
What is meant by Permanent virtual circuit and Switched virtual circuit?
Why is TCP said to be connection-oriented but UDP is said to be connectionless?
Explain the difference between the shadow and the override?
Write some differences between Datagram and stream?
Are VPNs employed for particular kinds of applications or the environments? If so, then what are some illustrations of where and why VPNs would be organized?
How will computer acquire its IP Address?
Explain the term Repeater?
Explain what is meant by 3-Tier architecture?
Group OSI layers as per their functions?
Explain the concept of Subneting?
18,76,764
1936387 Asked
3,689
Active Tutors
1419009
Questions Answered
Start Excelling in your courses, Ask an Expert and get answers for your homework and assignments!!