Computer Applications
A linear search
- can be used with sorted arrays only.
- can be used with unsorted arrays only.
- can be used with both sorted and unsorted arrays.
- cannot be used with arrays.
Related Questions
Operations like square root, sine and cosine are
- impure functions
- pure functions
- static functions
- class functions
Given array int x[ ] = {11, 22, 33, 44}; the value of x[1 + 2] is :
- 11
- 22
- 33
- 44
Method that converts a character to uppercase is
- toUpper()
- ToUpperCase()
- TOUPPERCASE()
- toUpperCase(char)
Give the output of the following code
System.out.println("Good".concat("Day"));
- GoodDay
- Good Day
- Goodday
- goodDay