Advertisements
Advertisements
Question
What is the value stored in variable res given below?
double res = Math.pow (“345”.indexOf(‘5’), 3);
One Line Answer
Solution
res = 8.0
shaalaa.com
Is there an error in this question or solution?
APPEARS IN
RELATED QUESTIONS
Identify the correct array declaration statement.
Define a class to declare an integer array of size n and accept the elements into the array. Search for an element input by the user using the linear search technique, display the element if it is found, otherwise display the message “NO SUCH ELEMENT".
Define a class to declare a character array of size ten, accept the character into the array and perform the following:
- Count the number of uppercase letters in the array and print.
- Count the number of vowels in the array and print.
Define a class to declare an array of size 20 of the double datatype, accept the elements into the array and perform the following:
- Calculate and print the sum of all the elements.
- Calculate and print the highest value of the array.