Answer:
public class Main
{
public static void printString(String strText, int intNumber) {
for(int i=0; i<intNumber; i++){
System.out.println(strText);
}
}
public static void main(String[] args) {
printString("Brainly", 3);
}
}
Explanation:
- Define a function called <em>printString</em> that takes two parameters - a String and an int. Since the function will print out the given String, it's type will be <u>void</u>.
- Use <em>for loop</em> to iterate according to the given number and print the given string
- In the main, call the <em>printString </em>function with some parameters.
Answer:
Start off with an interesting introduction (add questions) make it interesting.
The Zoom slider will allow users to change the way the document appears on the screen
Answer:
In spreadsheet software, the automatic recalculation feature ensures that the results in every cell are accurate for the information currently entered in the worksheet.
Explanation:
Entering new data in spreadsheets and calculating the changes has been made a lot easier due to the automatic recalculation tool of spreadsheets. One can simply enter a data, organize it and even make modifications with the right calculations every time by this feature. Spreadsheets like excel are programmed to recalculate the formulas after every single change made in the spreadsheets. This capability of spreadsheets has helped a lot to maintain data consisting of huge amounts of complex mathematical formulas.