Answer:
Explanation:
>>> def print_countdown(begin)
>>> i = begin
>>> while i < 1:
>>> print(i)
>>> i = i - 1
>>>print_countdown(0)
Answer:
The laws and regulations will often define sensitive or protected data and the reporting requirements in the case of a data breach. Failure to follow the prescribed process can often result in fines or other penalties.
Explanation:
These data security laws should be standardized worldwide in order to stop internet abuses.
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
The answer is a. 20xx
when you enter a 2 digit year that is less than 30, excel will assume that it's a 20th century and changes the year to 20xx. To change how excel interpret this, you should select 'assume the 21st century for 2 digit years before' check box