Advertisements
Advertisements
प्रश्न
What is the value stored in variable res given below?
double res = Math.pow (“345”.indexOf(‘5’), 3);
एक पंक्ति में उत्तर
उत्तर
res = 8.0
shaalaa.com
क्या इस प्रश्न या उत्तर में कोई त्रुटि है?
APPEARS IN
संबंधित प्रश्न
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.