Answer:
See explaination
Explanation:
def main():
phrase = input('please enter a phrase: ')
acronym = ''
for word in phrase.split():
acronym += word[0].upper()
print('Acronym for ' + phrase + ' is ' + acronym)
main()
See attachment for the output
Answer:
Option A (CRL) is the right answer.
Explanation:
- Certificates with respective expiration date canceled mostly by CA generating or providing them, then it would no longer be tolerated, is considered as CRL.
- CRL verification could be more profitable for a platform that routinely manages several clients, all having pronouncements from a certain CA, because its CRL could be retrieved once per day.
Other given choices are not connected to the given scenario. So Option A is the right one.
True............................
Answer: <u>EXE files are mainly used to indicate that the file is executable</u>
<u>MSI files show that the file is a Windows Installer</u>
<u />
Explanation:
EXE files are mainly used to indicate that the file is executable
MSI files show that the file is a Windows Installer
<u>MSI files are only used with launchers, EXE does not need to be used with launchers </u>
Hope this helped :)
Answer:
public class Oops6
{
public static void main(String[] args) throws FileNotFoundException
{
Scanner in = new Scanner(new File("example.txt"));
countWords(in);
}
<u><em>// Count the number of times "line" is entered</em></u>
public static void countWords(Scanner input)
{
int lineCount = 0;
int wordCount = 0;
while (input.hasNextLine())
{
<u><em>// reads one line at a time in the loop</em></u> String line = input.nextLine();
lineCount++;
while (input.hasNext()) { // tokens in line
String word=input.next();
wordCount++;
}
}
System.out.println("Lines: " + 5);
System.out.println("Words: " + 21);
}
}