Coding Questions ::
array sorting with only array and without collections framework - done
if an array finds duplicate values return true -- done
find duplicate of values or character to return only duplicated values and count
done with list and map - done
list of array to sort with java 8 code -- done
list of array to sort & reverse with java 8 code -- done
SQL query Questions :
create index query -- done
find 2nd highest salary -- select max(salary) from table where salary < select
max(salary) from table;
order by salary and only 2 records need to show in result - query be like limit 2
order by salary desc;
Interview Questions ::
java questions:
Arraylist vs linkedlist difference -- done
what is difference between list vs set -- done
What is HashMap vs HashSet -- done
What is HashMap vs HashTable -- done
what is ConcurrentHashMap -- done
Difference between HashMap vs ConcurrentHashMap -- done
What is HashMap internal mechanism -- done
what is collections framework -- done
Which is follows LiFO principle -- done
Which is follows FIFO principle -- done
what is oops concepts and explain its all -- done
what is encapsulation -- done
how to create encapsulation -- done
what is polymorphism -- done
what is compile time polymorphism -- done
what is run time polymorphism -- done
what is method overloading -- done
what is method overriding -- done
what is interface -- done
what is abstract class -- done
what are different types of inheritences - multi level and mutiple inheritance --
done
what is multi-threading -- done
how to create multi threading -- done
difference between wait and sleep method -- done
how will you use synchronization in multi threading -- done
difference between run and start method -- done
what is runnable interface -- done
what is design pattern and types -- done
what is singleton design pattern -- done
what is synchronization -- done
what is asynchronous -- done
what is differnce between synchronization and asynchronous -- done
explain about exceptions and those types -- done
what is run time exception and those are -- done
what is compile time exception and those are -- done
what is difference between throw, throws and throwable -- done
how to create custom exception -- done
what is throw and throws difference -- done
what is transient keyword -- done
what is the try with resources -- done
can we create try block without catch block -- done
what if System.exit add in catch block if finally block executes ? -- done
java8 questions :
what are the main features in java8 -- done
what is lamda expression -- done
what are the functional interfaces -- done
can we create default methods in classes or java 1.7 java version -- in java8 only
default method is introduced and default methods can't create in classes only
interface can able to create default methods
how to iterate the map data using lamda expression -- pending for code logic
What is difference between lambda expression vs stream api -- done
spring boot questions :
what is spring boot
what is difference between spring and spring boot
what is spring actuator
what is @springbootapplication annotation
what is difference between @controller and @restcontroller
how to specify or change the profiles in properties in spring boot application
how the spring internally create beans
what is @autoWired annotation
what is @Service annotation used for
what is @Primary annotation what is the use of it.
what is difference between application.properties and application.yaml files
what is the difference between @Qualifier and @Primary annotations and what is the
use of it
How to handle exceptions in spring boot
how to connect database from spring boot application
what is lombok and explain the use of it
what is the spring bean life cycle and explain
how to create a api in spring boot explain the process
what is spring security
micro services :
what is micro services
what is the difference between monolithic and micro service application
what are the issues faced while making monolithic to micro services application
how to contact each other micro service
what is histric dashboard
what is service registry
what is api gateway
what is the main benefit with the micro services
how to create micro services application and what are the main components need for
it.