SSSuresh Siripurapuinsureshjava.hashnode.dev·Jul 24, 2024 · 3 min readTaking input in java without using Scanner class?As we all know that in java we can take input from the user in several ways, the one foremost way is Scanner class. If an interviewer ask the canditate to write a simple addition of two numbers program without using scanner class, then what will be y...00B
SSSuresh Siripurapuinsureshjava.hashnode.dev·Jul 21, 2024 · 4 min readJava ArrayListInroduction: Java ArrayList uses the dynamic array for storing the elements. It is like an array but no size limit. We can add or remove elements at anytime. It is found in java.util package. It contains duplicate values Syntax for ArrayList D...02SR