Examples of email use that could be considered unethical include _____.


sending a quick message to your friend about last weekend

sharing a funny joke with other employees

denying receiving an e-mail requesting that you work late

sending your boss the monthly sales figures in an attachment

forwarding a chain letter asking for donations to a good cause

setting up a meeting with your co-worker

Answers

Answer 1

Answer:

"Denying receiving an e-mail requesting that you work late "

"Sending a quick message to your friend about last weekend "

"Sharing a funny joke with other employees"

Explanation:

Based off of the questions, I assume it means while you are at work. If you're at home or something, all of these are fine.

Answer 2

Answer:

"Denying receiving an e-mail requesting that you work late "

"Sending a quick message to your friend about last weekend "

"Sharing a funny joke with other employees"

Explanation:


Related Questions

Which of these is NOT a way that technology can solve problems?
Group of answer choices

sorting quickly through data

storing data so that it is easily accessible

making value judgments

automating repetitive tasks

Answers

Answer:

making value judgements

Explanation:

honestly this is just a guess if there is any others pick that but this is just what I'm thinking

Please help me for this question - Computer Science

Answers

Answer:

# F F F F 0 0

# F F 0 0 F F

# 0 0 F F F F

Explanation:

Hex values are your friend.

The first two digits represent red.

# F F 0 0 0 0 - Red

The second two digits represent green.

# 0 0 F F 0 0 - Green

The third two digits represent blue.

# 0 0 0 0 F F - Blue

If you know yellow is a combination of red and green, you express the corresponding digits.

# F F 0 0 0 0 - Red

# 0 0 F F 0 0 - Green

+

-------------------------------

# F F F F 0 0 - Yellow

Similarly,

If you know magenta is a combination of red and blue, you express the corresponding hex digits.

# F F 0 0 0 0 - Red

# 0 0 0 0 F F - Blue

+

-----------------------------

# F F 0 0 F F - Magenta

And finally,

If you know cyan is a combination of green and blue, you express the corresponding hex digits.

# 0 0 F F 0 0 - Green

# 0 0 0 0 F F - Blue

+

----------------------------

# 0 0 F F F F - Cyan

What does it mean to "express the digits"?

If you know anything about how color works on a computer, you'll know that you can express a certain amount of red, green and blue to get almost any color. These are known as "RGB" values. In RGB, the red, green or blue can individually go from 0 - 255. Think of it like a slider for how much you want of each color.

In RGB:

RGB (255, 255, 255) - White

Hex is just a really convenient and shorthand way to write the RGB color values.

In Hex:

#FFFFFF - White

how do we add questions on sam Blockly?​

Answers

Answer:

I do not know that answer

What function does an extranet perform?

Answers

Answer:

An extranet is a private network that uses Internet technology and the public telecommunication system to securely share part of a business's information or operations with suppliers, vendors, partners, customers, or other businesses.

In order to create a chart, which of the following must be selected?
O Data tools
O Worksheet tab
O Data source
O Table styles

Answers

A chart is the graphical presentation of data and is a part of the data visualization. The data is represented by the symbols and bars in a bar chart.

They are often sued to show large quantities of data in a simple and understandable form. For making a chart first we need to select data tools and then design tools.

Hence the option A is correct.

Learn more about the order to create a chart.

brainly.com/question/22004535.

3.2 code practice question 2. Not in a rush.​

Answers

Answer:

value = float(input("Enter a number: "))

if (value >= 90):

   print("Great!")

Explanation:

a 0.600 kg dynamics trolley has 1.5 kg load added. It is launched with a force of 10.n what is the acceleration

Answers

Answer:

acceleration = 4.76 m/s²

Explanation:

Given that"

the mass of the dynamic trolley = 0.6 kg

the mass of the load  = 1.5 kg

total mass = (0.6 + 1.5) kg = 2.1 kg

the force = 10 N

Thus;

using the formula of force which is;

Force = mass × acceleration

10 = 2.1  × acceleration

acceleration = 10/2.1

acceleration = 4.76 m/s²

What is the difference between Beat and Rhythm?
A
Rhythm stays the same and steady and the beat changes
B
The beat stays the same and steady and the rhythm changes

C
There is no difference between the two
D
A beat is slow while a rhythm is fast

Answers

Answer:

I think it will option b may it help yu

Answer:

B

Explanation:

The beat stays the same and steady and the rhythm changes.

Can someone help me plz

Answers

Answer:

O two one

O Not;And;Or

I hope its help for you

have a great day

If you have a 99% and you got a 50 on a test what is the grade please I will give brainless

Answers

Answer:

you would have a C

Explanation:

depends on your other grades. you can relax, ask your teacher for extra credit

Which of the following is a drilling cycle available with CAM software?
Point
Straight
Through
All of the above
None of the above

Answers

Answer:

straight just like me

Complete each sentence

To complete step 3, select ____ under table tools.
In step 5, each existing column is split in ____. In this table, the ____ rows cells are blank.
To use the options listed in step 9, click ____

Answer choices: first sentence (design,layout,merge) second (sixths,thirds,half) and (first,second,third) last sentence (design,layout,merge)

Answers

Answer:

Complete each sentence.

To complete Step 3, select LAYOUT under Table Tools.

In Step 5, each existing column is split in HALF In this table, the SECOND

row’s cells are blank.

To use the options listed in Step 9, click DESIGN.

Hope this helped. Please Mark me Brainliest!

Pseudocode to java

Can you write this in Java program

Binary Search

Answers

Answer:

class Main {

 public static void main(String[] args) {

   int[] values = {11,12,15,16,112,118,123,145};

   int target = 15;

   int min = 0;

   int high = values.length-1;

   boolean found = false;

   int answer = 0;

   int mid;

   while(!found && min <= high) {

     mid = (min + high) / 2;

     if (values[mid] == target) {

       found = true;

       answer = mid;

     } else if (target > values[mid]) {

       min = mid + 1;

     } else {

       high = mid - 1;

     }

   }

   if (found) {

     System.out.printf("%d FOUND AT ARRAY INDEX %d", target, answer);

   } else {

         System.out.printf("%d was not found", target);

   }

 }

}

Explanation:

I altered the while expression to make the code work.

Answer: class Main {

public static void main(String[] args) {

  int[] values = {11,12,15,16,112,118,123,145};

  int target = 15;

  int min = 0;

  int high = values.length-1;

  boolean found = false;

  int answer = 0;

  int mid;

  while(!found && min <= high) {

    mid = (min + high) / 2;

    if (values[mid] == target) {

      found = true;

      answer = mid;

    } else if (target > values[mid]) {

      min = mid + 1;

    } else {

      high = mid - 1;

    }

  }

  if (found) {

    System.out.printf("%d FOUND AT ARRAY INDEX %d", target, answer);

  } else {

        System.out.printf("%d was not found", target);

  }

}

}

Explanation:

I altered the while expression to make the code work.

The window snipping tool will let you take a screenshot of any part of the screen true or false

Answers

Answer:

True

Explanation:

Answer:

true

Explanation:

it is supposed to take screenshots of your screen.

PLEASE HELP

This is your code.

>>> A = [21, 'dog', 'red']

>>> B = [35, 'cat', 'blue']

>>> C = [12, 'fish', 'green']

>>> E = [A, B, C]

What is the value of E[0][1]?


21

35

cat

dog

Answers

Answer:

dog

Explanation:

The python program has four lists, A, B, C, and E which is a list of the first three lists. Lists are unordered indexed data structures, it is accessed by an index starting from 0 to n (which is the length of the list minus one).

The E list is a list of lists with three list items starting from index zero to two. E[0][1] is used to access the item "dog" in the first list item of the E list.

Answer:

dog

Explanation:

i type the code in to python

HELP ASAP!!! Prompt
What is word processing?

Answers

Answer:

Word processing refers generally to the creation, editing, formatting, storage, and output of both printed and online or electronic documents.

A system consumed 0.4 seconds of processor time, 0.3 seconds accessing the network, and 0.5 seconds accessing the disk drive to execute the task. Where is the bottleneck in this network

Answers

Answer:

the disk drive

Explanation:

A bottle neck in a network is the condition through which the data flows becomes limited by the network of the computer system. It occurs in the user network or within the servers where there are contention for any internal server resources.

In the context, a system that consumes 0.4 seconds for the processor time and time 0.3 seconds for accessing the network. The system also takes 0.5 seconds for accessing disk drive for executing the task. So the bottle neck in this system is the disk drive.

Which finger types the highlighted keys?

Answers

Answer:

Index

Explanation:

The index finger lays positioned upon the 4 key.

Pointer finger. It is by columns, and your pointer finger occupy those

PLLZX help NEEED HELP HLPP NOWWW pleze

...What time is it

Answers

Answer:

12:10

Explanation:

i looked at the time

I said it is 12:10..........

Python exercise grade 10

Write a program that determines which dates comes earlier on the calendar. The user

may enter any number of dates. The user will enter 0/0/0 to indicate that no more dates

will be entered

Example:
Enter a date (month): 3

Enter a date (date): 6

Enter a date (year): 2008

03/06/2008

Enter a date (month): 5

Enter a date (date): 17

Enter a date (year): 2007

05/17/2007

Enter a date (month): 6

Enter a date (date): 3

Enter a date (year): 2007

06/03/2007

Enter a date (month): 0

Enter a date (date): 0

Enter a date (year): 0

5/17/2007 is the earliest date

Answers

earliest = ""

while True:

   month = int(input("Enter a date (month): "))

   day = int(input("Enter a date (date): "))

   year = int(input("Enter a date (year): "))

   if month == 0 and day == 0 and year == 0:

       break

   if month < 10:

       month = "0"+str(month)

   if day < 10:

       day = "0"+str(day)

   string_date = str(month)+"/"+str(day)+"/"+str(year)

   print(string_date)

   if earliest == "":

       earliest = string_date

   else:

       year,month,day=int(year),int(month),int(day)

       lst = list(map(int,earliest.split("/")))

       if year < lst[2]:

           earliest = string_date

       elif year == lst[2] and month < lst[0]:

           earliest = string_date

       elif year == lst[2] and lst[0] == month and day < lst[1]:

           earliest = string_date

print(earliest,"is the earliest date")

I wrote my code in python 3.8. Best of luck.

Top/Bottom Rules allow a user to apply conditional formatting to cells that fall within the top or bottom numbers or percentile. How many items will it allow the user to include in the rule?

the top or bottom 10 items or top or bottom 10% only
the top 10 items and top 10% only
the top or bottom 100 items only
any logical number of items or percentages in top or bottom value frames

Answers

C. TRUST

Explanation:

Answer:

*clears throat* ......... its c....... thank you for your time :).............. *standing ovation*

Explanation:

PLZ HELP What is the problem with this program?

name = "Jenny"

name = input("What is your name?")

A.
the variable name has to begin with a capital letter

B.
input should be output

C.
the first line should be omitted because the second line defines the variable

D.
the variable needs to begin with a number to distinguish it from other variables

Answers

Answer:

B

Explanation:

the answer is B imput should be output

Answer: I think the answer is (C)

I'm doing the exam rn and that what i think

Explanation:

What does the “MIN” and “MAX” functions allow you to do when inserted in a spreadsheet?

Answers

Answer:

The MIN and MAX functions are just what the names imply. MIN will find the lowest number in a range, while MAX finds the largest number in a range. One advantage to these functions is that they can be combined with the IF function.

Explanation:

Group of answer choices When declaring a variable, you also specify the type of its values. Variables cannot be assigned and declared in the same statement. Variable names can be no more than 8 characters long. Variable names must contain at least one dollar sign.

Answers

Complete Question:

Which of the following statement is true?

Group of answer choices.

A. When declaring a variable, you also specify the type of its values.

B. Variables cannot be assigned and declared in the same statement.

C. Variable names can be no more than 8 characters long.

D. Variable names must contain at least one dollar sign.

Answer:

A. When declaring a variable, you also specify the type of its values.

Explanation:

In Computer programming, a variable can be defined as a placeholder or container for holding a piece of information that can be modified or edited.

Basically, variable stores information which is passed from the location of the method call directly to the method that is called by the program.

For example, they can serve as a model for a function; when used as an input, such as for passing a value to a function and when used as an output, such as for retrieving a value from the same function. Therefore, when you create variables in a function, you can can set the values for their parameters.

For instance, to pass a class to a family of classes use the code;

\\parameter Name as Type (Keywords) = value;

\\procedure XorSwap (var a,b :integer) = "myvalue";

Hence, the true and correct statement is that when declaring a variable, you also specify the type of its values such as integers, string, etc.

The _____ contains lists of commands used to create presentations.
Outline view
Menu bar
Slide pane
Title bar

Answers

Answer:

The menu bar is correct

Explanation:

EDG2021

Who am I
1.I am the law established by the intellectual property organization
2.I am an application used to illegally harm online and offline computers users
3.I am the crime through the Internet
4. I impose restrictions on incoming and outgoing information to and from networks

Answers

1. Patent law or copyright
2. Malware
3. Cybercrime
4. Firewall

Yuri, a medical assistant, has been asked to send an account of a patient's last office visit to another doctor's office. The technology that she will most likely use is _____.

the Internet
a cell phone
HDTV
a facsimile

Answers

The technology that Yuri will most likely use to send the information is: D. a facsimile.

What is a technology?

Technology can be defined as a branch of knowledge or field of science which typically involves the process of creating, applying, and managing scientific knowledge and ideas, so as to effectively and efficiently proffer solutions to various problems and improve human life.

In this scenario, the technology that Yuri will most likely use to send an account of a patient's last office visit to another doctor's office is a facsimile because it creates an exact copy.

Read more on technology here: brainly.com/question/25885448

Answer:

its D facsimile machine :)

Explanation:

Plz help
You want Excel to automatically apply “stripes” in an alternating pattern to existing raw data in your spreadsheet. Describe the precise steps you could take to do so. What other function would be added when you apply this change, assuming you have a header row and leave the default options selected?

Answers

Answer:

1)Select the cells you want to shade.

2)On the Home tab of ribbon select Conditional Formatting > New Rule

3)Select 'Use a formula to determine which cells to format' > enter your formula in the 'Edit the Rule Description' field.

4)Click the Format button and from the Format Cells dialog box select the Fill tab > choose your weapon (colour, pattern, fill effect etc.):

Explanation:

HELP ASAP PLEASE!!!

Answers

Answer:

Click and drag the mouse to select the cells

Explanation:

Imagine that a you and a friend are exercising together at a gym. Your friend suddenly trips and falls, and it is clear that he or she has suffered an ankle sprain. Luckily you know exactly what has happened. Explain how your friend sustained the injury and, assuming you had the necessary supplies, including a first aid kit and a phone, explain what steps could you take to stabilize your friend's injury.
Name each of the five steps in the PRICE treatment.

Answers

Answer:

The sprain happened when the friend fell and the ligaments (in the ankle)  stretched, twisted or possibly tore. Sprain is manifested by pain, swelling, bruising and inability to move.

Explanation:

Here the appropriate steps to stabilize the injury:

1.       Call for help.

2.       Rest the injured area to avoid further damage.

3.       Put ice ( for 15 to 20 minutes) to help limit the swelling.

4.       Apply compression bandage to prevent more swelling.

5.       Elevate the injured ankle above the heart to limit swelling.

Hope this helps UvU

Other Questions
A farmer has decided to divide his land area in half in order to plant soy and corn. Calculate the area of the entire area so he knows how much soil is needed.A parallelogram with a height of 6 yards and side length 9 yards. The height forms a triangle with the slanted side of the rhombus with a base of 2.5 yards. Rhombus is split into a soy half and a corn half.Each bag of soil covers 20 square yards. How many bags should the farmer purchase? All East Asians are either ethnic Chinese or ethnic Japanese.True or false Which percentage of the students finish sixth grade in Chile?30%40%20%10% - (3 x 100) + (7 x 10) + (4 x D) + (2 x 100) 2. Many people believe thata mutation will always resultin the formation of a deadlytumor, or the developmentof a major body defect.Explain why this is incorrect. A message can be...........differently by different people. what is the range of these numbers: 79 72 78 -71 -91 65 Please answer the following question in a complete French sentence using "il y a" Quest-ce quil y a sur ton bureau? Which governing body falls under the rules and regulations of Article 1 of the Constitution? Legislative (makes laws) B. Senate A. governor C. Executive Branch D. state judge 5 Things about the legislative branch The equations of three lines are given below. Line 1: y = - 3/4 x + 3 Line 2/8 x - 6y = 2 Line 3/- 3y = 4x + 7 For each pair of lines, determine whether they are parallel, perpendicular, or neither. look at picture and answer pls Which one of the following symbols is a quarter rest?A BCD Help Please Giving Brainliest to the correct answer please explain your answer:D "Every man a king" conveys the great plan of God and of the Declaration of Independence, which said: "All men are created equal." It conveys that no one man is the lord of another, but that from the head to the foot of every man is carried his sovereignty.Huey Long,February 5, 1934What does Long mean when he says "every man a king? Check all that apply.Men are ruled only by God.No man is the ruler of another.Men rule only over women.Men are rulers of themselves.Men are independent.All men are equal. In 2 full paragraphs what advice would you give Romeo? From Romeo and Juliet Be sure to include evidence. just got the new jerusalem 10's jesus just realseas them The energy lost during transformation is always in the form of:chemicalheatsunlightmechanical Use the drop-down menu to identify the type of verb mood in each example. Did you walk the dog today? (imperative,indicative,interrogative) Walk the dog before dinner. (imperative,indicative,interrogative) I took the dog for a half-mile walk.(imperative,indicative,interrogative) PLEASE HURRY ITS A TEST The cost of a party is $250. The price per person is 13.50 how many people attend the party.