java programs Find first largest number and second largest number in unsorted array in java Technical Explorer 11:34 Edit package com.technicalexplorer; public class SecondLargest { public static void main(String[] args) { int a[] = {5, 10, 2, 4, -2}; ... Read More
java programs find minimum and maximum values in array java Technical Explorer 10:52 Edit There are many ways to find out minimum and maximum of an array. Though it is very basic question, I am posting it with possibility of aski... Read More
java programs Interview Questions on Polymorphism in java Technical Explorer 11:59 Edit 1. What is polymorphism in java ? The word polymorphism means that occurring many forms. In Java polymorphism is an OOPS concept. The ... Read More
Top interview questions on Static keyword in java? Technical Explorer 12:54 Edit 1. What is static in java? What is the use of the static in java? OR what is the importance of static in java? Static is a keyword in j... Read More