Answer:
I don't understand this either sorry
Explanation:
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
Answer:
<h3>Using search engines</h3>
Explanation:
<h3>With billions of websites online today, there is a lot of information on the Internet. Search engines make this information easier to find. Let's look at the basics of using a search engine, as well as some techniques you can use to get better search results.</h3>
A person that is known to have contribute to Forensics is Mathieu Orfila
<h3>Who is known as the father of forensic toxicology and why?</h3>
Mathieu orfila is said to be called the father of toxicology due to the fact that he was the onw who was known to have published his work as the first scientific treatise on the act of knowing of poisons and as well as their effects on animals.
He is known to have done the work that set up forensic toxicology as a legitimate scientific discipline.
Hence, A person that is known to have contribute to Forensics is Mathieu Orfila
Learn more about Mathieu Orfila from
brainly.com/question/21073600
#SPJ1
Answer:
hi! can you please leave the symbol so I can help you??
Explanation: