Write a program to print the power of 7 raised to 5.
SIKSHAPATH Latest Questions
Length and breadth of a rectangle are 5 and 7 respectively. Write a program to calculate the area and perimeter of the rectangle?
The float class is a wrapper class for the primitive type float which contains several methods to effectively deal with a float value like converting it to a string representation, and vice-versa. An object of the Float class can hold ...
Design a simple calculator (called SwingCalculator). Hints: Set the ContentPane to BorderLayout. Add a JTextField (tfDisplay) to the NORHT. Add a JPanelw (panelButtons) to the CENTER. Set the JPanel to Grid Layout of 4×4, and add the 16 buttons. Operator buttons “+”, “-“, ...
Given two strings first and second, consider occurrences in some text of the form “first second third”, where second comes immediately after first, and third comes immediately after second. Return an array of all the words third for each occurrence ...
Given array of intergers,print the sum of elements sqaring/cubing as per the power of their indices. //answer= sum=sum+a[i]^i; eg:input:{2,3,5} Output:29