Mahesh Parahar has Published 289 Articles

What is Java programming language?

Mahesh Parahar

Mahesh Parahar

Updated on 19-Aug-2022 13:34:06

Java is a very popular high level programming language used by billions of developers worldwide. Java can run on almost all the popular platforms like Windows, MacOS, Unix flavors, Linux flavors and other operating systems. It was developed by Sun Microsystems. James Gosling is considered to be the father of ... Read More

Difference between MAC Address and IP Address

Mahesh Parahar

Mahesh Parahar

Updated on 19-Aug-2022 12:38:43

Both MAC Address and IP Address are used to uniquely identify a machine on the internet. MAC address is provided by the chip maker while IP Address is provided by the Internet Service Provider. Mac Address Media Access Control (MAC) address is a physical address that works at the data ... Read More

Difference between C and C++.

Mahesh Parahar

Mahesh Parahar

Updated on 19-Aug-2022 12:06:49

C programming Language C is a general-purpose, high-level language that was originally developed by Dennis M. Ritchie to develop the UNIX operating system at Bell Labs. C was originally first implemented on the DEC PDP-11 computer in 1972. In 1978, Brian Kernighan and Dennis Ritchie produced the first publicly available ... Read More

Difference between DNS and DHCP

Mahesh Parahar

Mahesh Parahar

Updated on 16-Jun-2022 12:23:23

A Domain Name System (DNS) server is used to translate domain names to IP Addresses and vice versa. DHCP is a client/server protocol that automatically assigns an IP address and other configuration information to an Internet Protocol (IP) host.Read through this article to find out more about DNS and DHCP ... Read More

How to use List size() method in Java With Examples?

Mahesh Parahar

Mahesh Parahar

Updated on 27-May-2022 08:33:11

The List interface extends the Collection interface and stores a sequence of elements. The List interface provides two methods to efficiently insert and remove multiple elements at an arbitrary point in the list. Unlike sets, list allows duplicate elements, and allows multiple null values if null value is allowed in ... Read More

How to get sublist of List in Java?

Mahesh Parahar

Mahesh Parahar

Updated on 26-May-2022 13:25:38

The List interface extends Collection and declares the behavior of a collection that stores a sequence of elements. User of a list has quite precise control over where an element to be inserted in the List. These elements are accessible by their index and are searchable. ArrayList is the most ... Read More

How to remove an element from a Java List?

Mahesh Parahar

Mahesh Parahar

Updated on 26-May-2022 13:25:06

The List interface is a Collection and it stores a sequence of elements. ArrayList is the most popular implementation of the List interface. A list provides user has quite precise control over where an element to be inserted in the List. These elements are accessible by their index and are ... Read More

How an iterator object can be used to iterate a list in Java?

Mahesh Parahar

Mahesh Parahar

Updated on 26-May-2022 13:24:31

The List interface extends Collection interface and represents a collection storing a sequence of elements. User of a list has quite precise control over where an element to be inserted in the List. These elements are accessible by their index and are searchable. ArrayList is the most popular implementation of ... Read More

How to iterate over a list in Java?

Mahesh Parahar

Mahesh Parahar

Updated on 26-May-2022 13:23:51

The List interface extends Collection interface and represents a collection storing a sequence of elements. User of a list has quite precise control over where an element to be inserted in the List. These elements are accessible by their index and are searchable. ArrayList is the most popular implementation of ... Read More

How to iterate List Using Streams in Java?

Mahesh Parahar

Mahesh Parahar

Updated on 26-May-2022 13:23:21

The List interface extends the Collection interface and stores a sequence of elements. The List interface provides two methods to efficiently insert and remove multiple elements at an arbitrary point in the list. Unlike sets, the list allows duplicate elements, and allows multiple null values if a null value is ... Read More

1 2 3 4 5 ... 29 Next
Advertisements