Selecting the button assigned
Using the shortcut Keys assigned
Explanation:
By clicking the assigned button one can run a macro and we can assign a short cut key to macro which we created.
So, the two options we can use to run a macro.
Answer:
output, process, input, and feedback
Explanation:
I belived its true is the answer
Answer:
Integer.parseInt( stringVariable );
Explanation:
This function is used to convert the string into integer in java .Following are the program that convert the string into integer in java .
public class Main
{
public static void main(String[] args) // main method
{
String num = "1056"; // string variable
int res = Integer.parseInt(num); //convert into integer
System.out.println(res); // display result
}
}
Output:1056
Therefore the correct answer is:Integer.parseInt( stringVariable );