Create an account to track your scores
and create your own practice tests:
Test: Computer Science
public static int foo(int[] arr, int x) {
int a = 0;
int b = arr.length - 1;
while(b >= a) {
int c = (a + b) / 2;
int v = arr[c];
if(v == x) {
return c;
} else if(v < x) {
a = c + 1;
} else {
b = c - 1;
}
}
return -1;
}
1. | What is the value of y in the code below: int[] vals = {1,3,4,5,6,31,41,51}; int x = 41; int y = foo(vals,41); |
41
5
6
-1
7
Ping
Certified Tutor
Certified Tutor
The University of Texas at Dallas, Bachelor of Science, Computer Science. University of North Texas, Master of Arts, Education.
James
Certified Tutor
Certified Tutor
Georgia Institute of Technology-Main Campus, Current Undergrad Student, Computer Science.
Computer Science Tutors in Top Cities:
Atlanta Computer Science Tutors, Austin Computer Science Tutors, Boston Computer Science Tutors, Chicago Computer Science Tutors, Dallas Fort Worth Computer Science Tutors, Denver Computer Science Tutors, Houston Computer Science Tutors, Kansas City Computer Science Tutors, Los Angeles Computer Science Tutors, Miami Computer Science Tutors, New York City Computer Science Tutors, Philadelphia Computer Science Tutors, Phoenix Computer Science Tutors, San Diego Computer Science Tutors, San Francisco-Bay Area Computer Science Tutors, Seattle Computer Science Tutors, St. Louis Computer Science Tutors, Tucson Computer Science Tutors, Washington DC Computer Science Tutors
Popular Courses & Classes
GMAT Courses & Classes in Philadelphia, GRE Courses & Classes in San Francisco-Bay Area, ISEE Courses & Classes in Miami, LSAT Courses & Classes in Denver, SAT Courses & Classes in Phoenix, ACT Courses & Classes in Atlanta, GMAT Courses & Classes in Denver, SSAT Courses & Classes in Houston, MCAT Courses & Classes in San Francisco-Bay Area, GRE Courses & Classes in Chicago
Popular Test Prep
GRE Test Prep in New York City, GRE Test Prep in Chicago, GRE Test Prep in Los Angeles, ISEE Test Prep in Philadelphia, LSAT Test Prep in Dallas Fort Worth, MCAT Test Prep in San Francisco-Bay Area, GMAT Test Prep in Philadelphia, LSAT Test Prep in Los Angeles, SSAT Test Prep in Philadelphia, SSAT Test Prep in Phoenix
