Core Java - Interview Questions and Answers for 'Find max number in an array' | Search Interview Question - javasearch.buggybread.com
Questions
Search
List By Company
List By Topic
Legacy
Tests
Repository
DashBoard
Java
Java 8
Java 7
Java Abbreviations
OCJP / SCJP
Class List
New in Java 8
Java Exceptions
Spring Exceptions
Java Enums
Java 8 Lambda
Java 8 java.time
Big Data
Best Of Java
Discussion
Search
Subscribe
Search Interview Questions
More than 3000 questions in repository.
There are more than 900 unanswered questions.
Click here
and help us by providing the answer.
Have a video suggestion.
Click Correct / Improve and please let us know.
Label / Company
Label / Company / Text
Search
Submit Question
Core Java - Interview Questions and Answers for 'Find max number in an array' - 1 question(s) found
- Order By Newest
Q1.
Implement the following method ?
int findMax(int[] items)
Core Java
Ans. int findMax(int[] items){
int maxNumber = 0;
for(int x:items){
if(x > maxNumber){
maxNumber = x;
}
}
return maxNumber;
}
Help us improve. Please let us know the company, where you were asked this question
:
Like
Discuss
Correct / Improve
 coding  code  find max number in an array
Asked in 1 Companies
Correction
Duplicate of Another Question
Company where this question was Asked
Suggestion
Related Questions
How does volatile affect code optimization by compiler?
Which keyword is used to provide explicit access of a code block to single thread ?
a. Transient
b. Final
c. Explicit
d. Synchronized
Will this code give error if i try to add two heterogeneous elements in the arraylist. ? and Why ?
What is the difference between the following two code lines ?
1. new OuterClass().new InnerClass();
2. new OuterClass.InnerClass();
Which String class does not override the equals() and hashCode() methods, inheriting them directly from class Object?
If you are given a choice to implement the code to either Insert a Record or Update if already exist, Which approach will you follow ?
Which of the following is not the advantage of Mocking frameworks ?
If arrays cannot be resized , Why is this code valid
String[] strArray = new String[2];
strArray = new String[5];
How can we make sure that a code segment gets executed even in case of uncatched exceptions ?
What is the difference between these two approaches of creating singleton Class ?
//Double Checked Locking Code
public static Singleton createInstance() {
if(singleton == null){
synchronized(Singleton.class) {
if(singleton == null) {
singleton = new Singleton();
}
}
}
return singleton;
}
//Single checked locking code
public static Singleton createInstance() {
synchronized(Singleton.class) {
if(singleton == null) {
singleton = new Singleton();
}
}
return singleton;
}
Help us and Others Improve. Please let us know the questions asked in any of your previous interview.
Any input from you will be highly appreciated and It will unlock the application for 10 more requests.
Company Name:
Questions Asked: