Vikyath Ram has Published 151 Articles

OSI vs. TCP/IP Reference Model

Vikyath Ram

Vikyath Ram

Updated on 17-Jun-2020 12:46:18

17K+ Views

Similarities between OSI and TCP / IP Reference ModelsBoth the reference models are based upon layered architecture.The layers in the models are compared with each other. The physical layer and the data link layer of the OSI model correspond to the link layer of the TCP/IP model. The network layers ... Read More

The Internet Layer in the TCP/IP Model

Vikyath Ram

Vikyath Ram

Updated on 17-Jun-2020 12:30:56

9K+ Views

The Internet layer is responsible for logical transmission of data packets over the internet. It can be compared to the network layer of the OSI model.The main functions of the internet layer are −It transmits data packets to the link layer.It routes each of the data packets independently from the ... Read More

The Data Link Layer of OSI Model

Vikyath Ram

Vikyath Ram

Updated on 17-Jun-2020 12:21:31

2K+ Views

The data link layer (Layer 2) converts the raw transmission facility provided by the physical layer to a reliable and error-free link.The main functions of the data link layer are as follows −It breaks up the stream of bits into data frames having sizes from a few hundred to a ... Read More

Metropolitan Area Networks (MAN)

Vikyath Ram

Vikyath Ram

Updated on 17-Jun-2020 10:58:37

4K+ Views

A metropolitan area network (MAN) is a network with a size greater than LAN but smaller than a WAN. It normally comprises networked interconnections within a city that also offers a connection to the Internet.The distinguishing features of MAN areNetwork size generally ranges from 5 to 50 km. It may ... Read More

What is the difference between decodeURIComponent and decodeURI?

Vikyath Ram

Vikyath Ram

Updated on 16-Jun-2020 11:03:12

223 Views

decodeURIComponentTo decode a URL component in JavaScript, use the decodeURLComponent() method.ExampleYou can try to run the following code to decode a URL component −           Check                      function display() {         ... Read More

How to Turn Off Form Autocompletion in HTML?

Vikyath Ram

Vikyath Ram

Updated on 15-Jun-2020 11:14:06

60 Views

The autocomplete attribute is used with form element to set the autocomplete feature on or off. If the autocomplete feature is on, the browser will automatically show values, based on what users entered before in the field. If the autocomplete feature is off, the browser won’t automatically show values, based on what ... Read More

Java labelled for loop

Vikyath Ram

Vikyath Ram

Updated on 15-Jun-2020 09:14:32

941 Views

Following program is using labeled for loops.ExampleLive Demopublic class Tester {    public static void main(String args[]) {             first:          for (int i = 0; i < 3; i++) {             for (int j = 0; ... Read More

How to parse JSON object in JavaScript?

Vikyath Ram

Vikyath Ram

Updated on 12-Jun-2020 11:28:10

503 Views

ExampleTo parse JSON object in JavaScript, implement the following code −                    myData = JSON.parse('{"event1":{"title":"Employment period", "start":"12\/29\/2011 10:20 ", "end":"12\/15\/2013 00:00 "}, "event2":{"title":"Employment period", "start":"12\/14\/2011 10:20 ", "end":"12\/18\/2013 00:00 "}}')          myArray = []       ... Read More

What is nodeValue property in JavaScript HTML DOM?

Vikyath Ram

Vikyath Ram

Updated on 22-May-2020 11:15:51

169 Views

The nodeValue property is used to get the node value. You need to specify the node.ExampleYou can try to run the following code to learn how to get nodeValue property.Live Demo           Get the node value       Demo Button Text       ... Read More

What are private, public, default and protected access Java modifiers?

Vikyath Ram

Vikyath Ram

Updated on 25-Feb-2020 12:28:02

2K+ Views

The access specifiers are used to define the access restriction on the class and members of a class.The private access modifier is the most restrictive access level. Class and interfaces cannot be private. Members that are declared private can be accessed outside the class.The public access modifier can be associated with class, ... Read More

Previous 1 ... 4 5 6 7 8 ... 16 Next
Advertisements