Java Program for Linear Search.
Linear search is a searching algorithm which sequentially searches element in an array.
In this algorithm, elements of array is scanned one by one and check if it is matching with element to search and if found return...
Home
»
Archives for October 2017
Java Program for Linear Search.
in
Algorithm,
Array,
Datastructure,
Interviews,
Linked List
- on 02:09:00
- No comments
Top 10 Matrix Interview Questions in Java
in
Algorithm,
Datastructure,
Interviews,
Matrix
- on 23:12:00
- No comments

Top 10 Matrix Interview Questions
We will look at Most commonly asked Top 10 Matrix interview questions on Java.
Matrix interview questions are frequently asked in Amazon, Microsoft and many other companies.
Frequently asked Top 10 Matrix Interview...
Top Binary Tree Interview Questions.
in
Algorithm,
Binary Search Tree,
Binary Tree,
Datastructure,
Interviews
- on 22:52:00
- No comments

Binary Tree Interview Questions.
Binary tree questions is very common during interviews. In this post we will focus on Top Binary tree and Binary Search tree interview questions and answers.
In this post we will look at,
1. Basic Interview...
Resolve java.net.BindException: Address already in use: bind
in
Miscellaneous,
Windows
- on 06:44:00
- No comments

Resolve java.net.BindException: Address already in use: bind.
Resolve java.net.BindException: Address already in use: bind. address already in use. port 8080 already in use. address already in use jvm_bind tomcat eclipse.java.net.bindexception: address...
Kill process on port 8080 in Windows
in
Miscellaneous,
Windows
- on 00:09:00
- No comments

Kill process running on port 8080 in Windows.
Kill process on port in Windows. how to kill process running on port 8080 in Windows or linux. find processes listening on port 8080. stop service on specific port..
kill process running on port 8080...
How Hashmap works internally in Java with Diagram
in
Datastructure,
Interviews,
Java,
Miscellaneous
- on 07:32:00
- No comments

How HashMap works in Java.
This is the famous interview question for the beginners as well as for experienced, So Let's see what it is all about.
Hashmap
is very popular data structure and found useful for solving many
problems due to O(1) time...
How Hashcode and Equals works in Java Hashmap
in
Datastructure,
Interviews,
Java
- on 07:07:00
- No comments

How Hashcode and Equals works in Java Hashmap.
This is the famous interview question for the beginners as well as for experienced, So Let's see what it is all about.
Hashmap
is very popular data structure and found useful for solving many
problems...
What is Thread in Java with example.
in
Interviews,
Java,
Multithreading
- on 23:03:00
- No comments

What is Thread in Java with example.
Java Thread is an independent path of execution within a program which can run in parallel with other existing Threads.Lets try to understand above line with simple scenario and it will be more clear: Threads...