<h2>
<u>ANSWER</u><u>:</u></h2>
- <u>TRUE</u>
- <u>FALSE</u>
- <u>FALSE</u>
- <u>TRUE</u>
- <u>TRUE</u>
<h2>
<u>_</u><u>_</u><u>_</u><u>_</u><u>_</u><u>_</u><u>_</u><u>_</u><u>_</u><u>_</u><u>_</u><u>_</u><u>_</u><u>_</u><u>_</u><u>_</u><u>_</u></h2>
<u>CARRY</u><u> </u><u>ON</u><u> LEARNING</u>
<u>CAN</u><u> </u><u>YOU</u><u> BRAINLEST</u><u> ME</u><u> PLEASE</u>
Answer:
sed '/march/{d;}' birthdays.txt > result
.txt
Explanation:
sed syntax is basically:
<em>sed '/expression/{command;command;...;}' inputfile > outputfile</em>
- First, for the expression part, we use /march/ to match all lines containing that string.
- Then for the command part, we only use {d} command to delete every matching line found.
- The third part contains the input file to process, I have named it birthdays.txt, but it could have been any other file needed.
- Finally "> result
.txt" makes the script output to be saved into a file named result.txt
Answer:
D. All are true.
Explanation:
All the given statements about CAD are true.
V = √P*R
RED
It doesn't really do anything active wise but it is used to reduce current flows, adjust signal levels, and to divide voltage.
Answer:
public class TextMessage
{
private String message;
private String sender;
private String receiver;
public TextMessage(String from, String to, String theMessage)
{
sender = from;
receiver = to;
message = theMessage;
}
public String toString()
{
return sender + " texted " + receiver + ": " + message;
}
}