Samual Sam has Published 2803 Articles

How to pass Arrays to Methods in Java?

Samual Sam

Samual Sam

Updated on 30-Jul-2019 22:30:20

You can pass arrays to a method just like normal variables. When we pass an array to a method as an argument, actually the address of the array in the memory is passed (reference). Therefore, any changes to this array in the method will affect the array.Suppose we have two ... Read More

How to convert string to array of integers in java?

Samual Sam

Samual Sam

Updated on 30-Jul-2019 22:30:20

You can convert a String to integer using the parseInt() method of the Integer class. To convert a string array to an integer array, convert each element of it to integer and populate the integer array with them.Example Live Demoimport java.util.Arrays; public class StringToIntegerArray { public static void ... Read More

Difference between an SAP ERP system and DBMS

Samual Sam

Samual Sam

Updated on 30-Jul-2019 22:30:20

DBMS or Database Management system is basically the tool/interface required to manage the database.  For example, SQL server or a tool like MYSQL workbench is a DBMS. A DBMS is mainly used by or designed for technical people.ERP (Enterprise Resource Planning System) is a complete system with one database and ... Read More

Advertisements