General Java Questions which one can see over the Internet.
Java Engineer Interview Questions
27,715 java engineer interview questions shared by candidates
Online screen sharing interview questions Q) Remove html tags in a string Sample Input: <h1>Hello World!</h1> <p>something</p> Output: Hello World! something My Solution: public static String stripHtmlTags(String html){ html = html.replaceAll("<.*?>", " ");//replace tag with space html = html.replaceAll(" +", " ");//replace multi-spaces with a single space return html; } Q) Given an integer input array A, you need to create an integer output array B of same size such that each entry at index i, is stated as B[i] = A[0]*A[1]*....A[i-1]*A[i+1]*A[i+2]*.... So, it means we have to multiply all the numbers excluding the value at that index i. Sample Input: {3,1,6,4} Output: [24, 72, 12, 18] B[0] = 1*6*4, B[1] = 3*6*4, B[2] = 3*1*4, B[3] = 3*1*6 My Solution: /** * Assumptions: zero is not present in the numbers. * @param input int numbers * @return output int array */ public static int[] product(int[] input){ int prod = 1; int[] res = new int[input.length]; for(int ele:input) { prod *= ele; } for(int ind=0; ind<res.length; ind++) { res[ind] = prod/input[ind]; } return res; }
3.write an sql query to get second largest scorer in a student table
Technical Question: Given the following list of integers, how would you sort it the most efficiently and weed out duplicates at the same time?
The number of lilies in a pond double every day. So, on the first day of the month there is one lily. On the second day, two lilies. Then the next day four lilies, then eight, sixteen, thirty two, etc. If the pond is full on the 30th day of the month, what day is it half full?
Ed Round( Given an interface with 3 methods AddEmployee(int empid, String department); updateEmployee(int empid, String department); Collection<Integer> reportEmployees(String Department);
What is runtime polymorphism? Give example.
they ask subjective question in screening like what is instanceof in java?
Main method , constructor ....all basic of core java
how JVM works.
Viewing 121 - 130 interview questions