Answer:
5 steps to writing an email-
Salutation
Subject
Professional
Sign
Keep it to the points
<span>public static String compress (String original)
{
StringBuilder compressed = new StringBuilder();
char letter = 0;
int count = 1;
for (int i = 0; i < original.length(); i++) {
if (letter == original.charAt(i)) {
count = count + 1;
}
else {
compressed = count !=1 ? compressed.append(count) : compressed;
compressed.append(letter);
letter = original.charAt(i);
count = 1;
}
}
compressed = count !=1 ? compressed.append(count) : compressed;
compressed.append(letter);
return compressed.toString();
}</span>
He experienced phishing
Phishing is a method of trying to gather personal information using deceptive e-mails and websites.
Here are some measures to avoid phishing. You can pick up the one you liked the most
- Always check the spelling of the URLs in email links before you click or enter sensitive information
- Watch out for URL redirects, where you're subtly sent to a different website with identical design
- If you receive an email from a source you know but it seems suspicious, contact that source with a new email, rather than just hitting reply.
- Don't post personal data, like your birthday, vacation plans, or your address or phone number, publicly on social media
<h2>
Answer:</h2><h3>Reversing switch</h3><h2 /><h2>
Explanation:</h2><h3>A device on a power drill that enables a user to back out a drill bit that is stuck in the work material is called a(n) <u>Reversing switch</u>.</h3>
A power drill is a electrical component that is used to drill or fast screw tightening and it maybe cordless or with cord. So, when the power drill is used to make hole then by using reverse switch it can be back out by rotating in opposite direction.
- It is a simple switch operated electrically.
- It used to reverse the direction in which current is flowing.
- Reversing switch has four terminals.
- These terminals can be connected in such a way that when the switch is triggered then the direction or current is reversed and so the rotation of the motor of the power drill is also reversed.
<h3>I hope it will help you!</h3>
def missing_num(lst):
for n in range(1,11):
if n not in lst:
print(n)
lst = (1,3,4,5,6,7,8,9,10)
missing_num(lst)
I hope this helps!