Answer:
public static boolean beginsWithZ(String word){
if(string == null || string.length() == 0)
return 0;
if(word.charAt(0) == 'Z' || word.charAt(0) == 'z')
return 1;
else
return 0;
}
Explanation:
This method is a boolean method, meaning it returns true if the string begins with Z or z and false otherwise. So:
The Java command charAt() let's you find the character at each position of the string, so i use it.
public static boolean beginsWithZ(String word){
if(string == null || string.length() == 0)
return 0;
if(word.charAt(0) == 'Z' || word.charAt(0) == 'z')
return 1;
else
return 0;
}
The correct answer that would best complete the given statement above would be the word VIRUSES. Here is the complete statement. Viruses can only grow and multiply within the cells of another living thing, but they can remain active on a surface for several hours or days.
Answer:
b) False
Explanation:
The Change Control Authority in software development is a committee consisting Subject Matter Experts(SME) and Technical Chiefs.This committee makes decision whether the changes proposed should be implemented in the software or not.So the correct answer to the question is False.They have the rights to permit changes in the software.
I believe that the answer to the question provided above is that <span>people employed in digital media sales may have an educational background in IT or Computer Science.</span>
Hope my answer would be a great help for you. If you have more questions feel free to ask here at Brainly.