Fendadis John has Published 98 Articles

Insertion sort in Java.

Fendadis John

Fendadis John

Updated on 18-Jun-2020 08:50:31

Following is the required program.ExampleLive Demopublic class Tester {    public static void insertionSort(int array[]) {         int n = array.length;         for (int j = 1; j < n; j++) {            int key = array[j];       ... Read More

How to get the difference between two arrays in JavaScript?

Fendadis John

Fendadis John

Updated on 18-Jun-2020 08:23:34

To get the difference between two arrays in JavaScript, try to run the following code. Here, we’re using some method like split(), indexOf(), sort(), etc to get the elements, which aren’t the same in both the arrays &mnus;ExampleLive Demo           JavaScript Dates         ... Read More

Advantages and Disadvantages of the TCP/IP Model

Fendadis John

Fendadis John

Updated on 17-Jun-2020 12:44:08

The advantages of TCP/IP protocol suite areIt is an industry–standard model that can be effectively deployed in practical networking problems.It is interoperable, i.e., it allows cross-platform communications among heterogeneous networks.It is an open protocol suite. It is not owned by any particular institute and so can be used by any ... Read More

The Session Layer of OSI Model

Fendadis John

Fendadis John

Updated on 17-Jun-2020 12:41:55

The session layer (layer 5) is responsible for establishing, managing, synchronizing and terminating sessions between end-user application processes.The main functions of the session layer are as follows −It works as a dialog controller. It allows the systems to communicate in either half-duplex or full-duplex mode of communication.It is responsible for ... Read More

The Network Layer of OSI Model

Fendadis John

Fendadis John

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

The network layer (Layer 3) controls the source to destination delivery of data packets across multiple hops (nodes). It controls the operation of the subnet.The main functions of the network layer are as follows −It is responsible for routing packets from the source host to the destination host. The routes ... Read More

Wireless Networks

Fendadis John

Fendadis John

Updated on 17-Jun-2020 11:59:52

Computer networks that are not connected by cables are called wireless networks. They generally use radio waves for communication between the network nodes. They allow devices to be connected to the network while roaming around within the network coverage.Types of Wireless NetworksWireless LANs − Connects two or more network devices ... Read More

How to add a YouTube Video to your Website?

Fendadis John

Fendadis John

Updated on 16-Jun-2020 08:20:41

To add a YouTube Video to your website, you need to embed it. To embed a video in an HTML page, use the element. The source attribute included the video URL. For the dimensions of the video player, set the width and height of the video appropriately.The Video URL ... Read More

Java continue statement with Loop

Fendadis John

Fendadis John

Updated on 15-Jun-2020 10:50:38

ExampleFollowing is an exampleLive Demopublic class Tester {    public static void main(String args[]) {       int[] array = {1, 2, 3, 4, 5};             for (int i = 0; i < array.length; i++) {          if(i == 3){   ... Read More

what is enhanced for loop in Java?

Fendadis John

Fendadis John

Updated on 15-Jun-2020 09:04:02

As of Java 5, the enhanced for loop was introduced. This is mainly used to traverse a collection of elements including arrays.SyntaxFollowing is the syntax of enhanced for loop −for(declaration : expression) {    // Statements }Declaration − The newly declared block variable is of a type compatible with the ... Read More

Java Ternary Operator Examples

Fendadis John

Fendadis John

Updated on 15-Jun-2020 06:20:34

The ternary operator is also known as the conditional operator. This operator consists of three operands and is used to evaluate Boolean expressions. The goal of the operator is to decide, which value should be assigned to the variable. The operator is written as −variable x = (expression) ? value ... Read More

Previous 1 ... 3 4 5 6 7 ... 10 Next
Advertisements