Answer:
Samsung note 20 or iPhone but i think Samsung
Explanation:
Answer:
the answer is spreadsheet application. I hope it helps
Answer:
- They write step by step instructions for a computer to follow.
- They create a logic problem that the computer program can solve.
Answer:
See Explaination
Explanation:
This assume that input is a file and is given on command line. Please note this will ot print lines with frederick as thats what I feel question is asking for
#!/usr/bin/perl -w
open(FILE, $ARGV[0]) or die("Could not open the file $ARGV[0]");
while ($line = <FILE>){
if($line=~/\s+fred\s+/)
{
print $line;
}
}
close(FILE);