Answer:
The <u>Split</u> option under the <u>view</u> tab.
Explanation:
Click the <u>View</u> tab on the Ribbon, then select the <u>Split</u> command. The workbook will be <u>split into different panes</u>. You can scroll through each pane separately using the scroll bars, allowing you to <u>compare different sections of the workbook.</u>
(a) To run a software => RAM
(b) To store a software => ROM
Answer:
import java.util.ArrayList;
import java.util.List;
public class Vowels {
public static void main(String[] args) {
String word = "I am David from Nigeria";
System.out.println(which_vowels_present(word));
}
public static List which_vowels_present(String enteredWord){
List<Character>list = new ArrayList<>();
String word = enteredWord.toLowerCase();
for (int i =0; i<word.length(); i++){
if (word.charAt(i) == 'a' || word.charAt(i) == 'e' || word.charAt(i) == 'i'
|| word.charAt(i) == 'o' || word.charAt(i) == 'u') {
list.add(word.charAt(i));
}
}
return list;
}
}
Explanation:
- Using Java programming Language
- Import java.util.ArrayList; and java.util.List
- Create the method which_vowels_present which accepts a string parameter
- Within the method create a list object
- Use a for loop to iterate the string. within the for loop use an if statement to check individual characters of the string if any is a vowel, add it to the list
- return the list
- In the main method, create a test string, call the method and pass the string as parameter
During the boot process. You hold down a certain key (usually F2 or F8 (Function keys)), the beginning of the boot process checks for the keypress, and if it's detected, launches the utility.
Answer:
what is briefly tell me also