Which of the following behaviors is considered ethical?

A. copying another user’s password without permission
B. hacking software to test and improve its efficiency
C. using a limited access public computer to watch movies
D. deleting other user’s files from a public computer

Answers

Answer 1

Answer:

answer is c. using a limited access public computer to watch movies

Answer 2

Answer:

using a limited access public computer to watch movies

Explanation:

It is the only one that will not get you in big trouble


Related Questions

I need to know how to input this into python on zybooks. I've been stuck on this for days and I keep running into "invalid syntax" or "unknown word red" Summary: Given integer values for red, green, and blue, subtract the gray from each value. Computers represent color by combining the sub-colors red, green, and blue (rgb). Each sub-color's value can range from 0 to 255. Thus (255, 0, 0) is bright red, (130, 0, 130) is a medium purple, (0, 0, 0) is black, (255, 255, 255) is white, and (40, 40, 40) is a dark gray. (130, 50, 130) is a faded purple, due to the (50, 50, 50) gray part. (In other words, equal amounts of red, green, blue yield gray). Given values for red, green, and blue, remove the gray part. Ex: If the input is 130 50 130, the output is: 80 0 80 Find the smallest value, and then subtract it from all three values, thus removing the gray.

Answers

Answer:

Here is the C++ program:  

#include <iostream>   //to use input output functions  

using namespace std;   //to identify objects cin cout  

int main() {   //start of main method  

int red,green,blue,smallest;   //declare variables to store integer values of red,green, blue and to store the smallest value  

cout<<"Enter value for red: ";  //prompts user to enter value for red  

cin>>red;  //reads value for red from user  

cout<<"Enter value for green: ";  //prompts user to enter value for green  

cin>>green;  //reads value for green from user  

cout<<"Enter value for blue: "; //prompts user to enter value for blue  

cin>>blue;   //reads value for blue from user  

//computes the smallest value

if(red<green && red<blue) //if red value is less than green and blue values  

smallest=red;   //red is the smallest so assign value of red to smallest  

else if(green<blue)   //if green value is less than blue value  

smallest=green;   //green is the smallest so assign value of green to smallest  

else  //this means blue is the smallest  

smallest=blue;  //assign value of blue to smallest  

//removes gray part by subtracting smallest from rgb  

red=red-smallest;  //subtract smallest from red  

green=green-smallest;  //subtract smallest from green  

blue=blue-smallest;  //subtract smallest from blue  

cout<<"red after removing gray part: "<<red<<endl;  //displays amount of red after removing gray  

cout<<"green after removing gray part: "<<green<<endl;  //displays amount of green after removing gray

cout<<"blue after removing gray part: "<<blue<<endl;  } //displays amount of blue after removing gray  

Explanation:

I will explain the program using an example.  

Lets say user enter 130 as value for red, 50 for green and 130 for blue. So

red = 130  

green = 50  

blue = 130  

First if condition if(red<green && red<blue)   checks if value of red is less than green and blue. Since red=130 so this condition evaluate to false and the program moves to the else if part else if(green<blue) which checks if green is less than blue. This condition evaluates to true as green=50 and blue = 130 so green is less than blue. Hence the body of this else if executes which has the statement: smallest=green;  so the smallest it set to green value.  

smallest = 50  

Now the statement: red=red-smallest; becomes:  

red = 130 - 50  

red = 80  

the statement: green=green-smallest;  becomes:  

green = 50 - 50  

green = 0  

the statement: blue=blue-smallest; becomes:  

blue = 130 - 50  

blue = 80  

So the output of the entire program is:  

red after removing gray part: 80                                                                                                 green after removing gray part: 0                                                                                                blue after removing gray part: 80  

The screenshot of the program along with its output is attached.

does anyone or has anyone ever done it?? please help it’s for like skills!

Answers

Answer:

is this mathmatics

Explanation:

Which of the following are signatures for constructors in the Rectangle class?

----Choose all options that apply.-----


A. Rectangle(double len1, double len2, double len3, double len4)

B. Rectangle(double len)

C. Rectangle(int len)

D. Rectangle(int len, int wid)

E. Rectangle()

F. Rectangle(double len, double wid)

Answers

Answer to this answer is B because

constructor is a special method that's also called once memory is allocated for a freshly constructed object to initialize it, and further  discussion can be defined as follows:

It has the same identity as the class or struct, so it normally sets up the new object's data members.In the Rectangle class if it calculates the area. so, it takes two parameters that are "length, width", that is equal to "Rectangle(int len, int wid)".

Therefore, the final answer "Option D".

Learn more:

brainly.com/question/14239397

Which phrase best describes a scenario in Excel 2016?

Answers

Answer:

what are the phrases?

Explanation:

IT professionals should help to protect users’ personal information, such as bank account information or Social Security numbers, to prevent

A.software piracy.

B.identity theft.

C.moonlighting.

D.corporate espionage.

Answers

Answer:

B

Explanation:

Answer:

b

Explanation:

idk just anwser this and get get some points lol

Answers

Answer:

ok thxxxxx :)

Explanation:

Answer:

thank you

Explanation:

Each Main Tab in the Ribbon has different Groups containing icons.
True Or False

Answers

Answer:

i think true

Explanation:

So this is not exactly a question but I can’t find the answer anywhere else. Also if you answer this, please do, I will give you brainliest.



What does the blue circle with the i in it mean on EBay?

Answers

Answer: Well, in transit means "in the process of being transported" according to Merriam Webster, so I would think that would mean that it is being shipped from China over to America (Or wherever you may live) currently. Hope this helped!

Explanation:

He made me so angry when he didn’t let me make my point that I had to stalk after him.
a.
follow
c.
stem
b.
shoot
d.
branch

Answers

Answer: follow

Explanation:

Answer: A) follow

Explanation:

Which utility causes the computer to run slow? defragmentation utility OR compression utility?

Answers

Answer:

compression

Explanation:

how has input device helped u

Answers

Answer:

Today, input devices are important because they are what allows you to interact with and add new information to a computer. For example, if a computer had no input devices, it could run by itself but there would be no way to change its settings, fix errors, or other various user interactions

Explanation:

Answer: well it allows u to ad new info to your pc/ basically an easier way to transfer from one device to another

Explanation: i would give a better answer but i'm feeling lazy today srry

Write a program Gas.java that computes and displays the price a person will pay for gas at the gas station. The program takes three command-line arguments: two double arguments referring to the price per gallon, and the number of gallons of gas, and one boolean argument referring to whether the person pays cash or credit (true for cash, false for credit). If the person pays with a credit card, there is an extra charge of 10% of the total price. Gas is never free. A person stopping to buy gas will always buy some amount of gas. Print the error message "Illegal input" if any of the double inputs is zero or negative, and end the program.

Answers

Answer:

double price, number, total;

boolean payment;

Scanner input = new Scanner(System.in);

System.out.print("Enter Amount of Gas: ");

price = input.nextDouble();

I've added the full source file as an attachment.

Where I used comments to explain difficult line

Explanation:

what is a document you can create with word processing software________?

Answers

Answer:

I think like Microsoft Word, Google Docs/Slides, or maybe other Microsoft writing services.

Explanation:

hope this helps!

whats the answer to 9? i really need help with this in the next 20 minutes. ty if u help me!

Answers

Answer:

A very precise number B

Explanation:

Hope you pass

SOMEONE HELP PLZZZZ!!!!

Answers

Answer:

D

Explanation

LAN = Local Access Network

The IT worker works on networks.

does anyone have a pdf of the greatest by eddie van der meer????

Answers

Answer

aight' so im finding it but i have to asnwer before someone else so look in the comments for it.

Explanation:

Just wait i getting it rn

What is the technical term of a native programming language?​

Answers

Native Code Or Machine Language

When was JavaScript founded?
Write in this format:
mm/yy

Answers

Answer:

It was founded in 09/95

Explanation:

Answer: 09/1995

JavaScript was founded in the September of 1995, in early fall. It is a very common dynamic computer programming language.

I wrote the answer in mm/yy format, so this answer should meet the requirements.

Hope this helps! Best of Luck!

When would you use database software instead of spreadsheet or word processing software?​

Answers

Answer: When I need to see table relationships and sort data by custom fields.

Explanation:

Answer: When I need to see table relationships and sort data by custom fields.

Explanation: took the quiz

What Information Technology is Walt Thomas responsible for?

Answers

Proactive designing i think

Answer:   employee productivity and activity management, selling the vast.

Explanation:

Do the binary numbers 001101 and 00001101 have the same value or different values

Answers

Answer:

Yes, the both have the same value.

Explanation:

This is the answer because:

001101 = 13

00001101 = 13

Hope this helps! :D

A struggle between opposing forces or characters is

Answers

Answer:

Conflicts

Explanation:

The struggle between two opposing forces or characters in a story. Conflicts can exist between two people, between a person and nature or a machine or between a person a whole society. a conflict can be internal, involving opposing forces within a person's mind.

Answer:

Conflict

Explanation: Took the test

Often used in connection with a business
A: fair use
B: copy right
C: public domain
D: commercial use
E: Creative Commons

Answers

Answer:

I would have to say public domain (but i am not sure)

how dependent are we on technology? ​

Answers

very independent  : ) we use it for everything

Which graphic file format would you choose if you needed to make an animated graphic for a website?

ai

png

gif

py
please help

Answers

Answer:

The answer to this question is given below in the explanation section.

Explanation:

The correct option for this question is gif.

Gif is a series of images that are used as animated graphics for a website. A gif is the file format of an animated image. You may have seen many animated images on websites like stickers etc.

other options are not correct because:

ai: is adobe illustrator file format

png: png is an image file format but not for an animated image

py: py is a file extension of the python file.

Answer:

gif

Explanation:

true or false Output is a tool with a power system that takes advantage of certain scientific laws that make the tool work better

Answers

Answer: True

Explanation: While digital evidence exploitation is a relatively new tool for law investigation when digital evidence is limited or does not exist. Do with the disappearance and death; searches found some mies; in fact, he was well-liked and often left his home open could take particular advantage, given the more limited poten.

when four consecutive numbers are added the sum is 46 find the integers plss anyone help me​

Answers

Answer:

The integers are 10,11,12,13

Explanation:

At first form an equation,

Let,

x = first number

x + x+1 + x+2 + x+3 = 46

Now solve the equation and youll get the answer,

x=10

For the other numbers,

x+1=11

x+2 = 12

x+3 = 13

What type of data is the result of each of the following lines of code?
str(2.34)

int('2')

float(2)

Answers

Answer:

snag

Explanation:

This program outputs a downwards facing arrow composed of a rectangle and a right triangle. The arrow dimensions are defined by user specified arrow base height, arrow base width, and arrow head width.(1) Modify the given program to use a loop to output an arrow base of height arrowBaseHeight. (1 pt)(2) Modify the given program to use a loop to output an arrow base of width arrowBaseWidth. Use a nested loop in which the inner loop draws the *’s, and the outer loop iterates a number of times equal to the height of the arrow base. (1 pt)(3) Modify the given program to use a loop to output an arrow head of width arrowHeadWidth. Use a nested loop in which the inner loop draws the *’s, and the outer loop iterates a number of times equal to the height of the arrow head. (2 pts)(4) Modify the given program to only accept an arrow head width that is larger than the arrow base width. Use a loop to continue prompting the user for an arrow head width until the value is larger than the arrow b

Answers

Answer:

Here is the JAVA program:

import java.util.Scanner; // to get input from user  

public class DrawHalfArrow{ // start of the class half arrow  

public static void main(String[] args) { // starts of main() function body  

   Scanner scnr = new Scanner(System.in); //reads input  

int arrowBaseHeight = 0; // stores the height of arrow base  

int arrowBaseWidth  = 0; // holds width of arrow base  

int arrowHeadWidth = 0; // contains the width of arrow head  

// prompts the user to enter arrow base height, width and arrow head width  

System.out.println("Enter arrow base height: ");  

arrowBaseHeight = scnr.nextInt(); // scans and reads the input as int  

System.out.println("Enter arrow base width: ");  

arrowBaseWidth = scnr.nextInt();  

/* while loop to continue asking user for an arrow head width until the value entered is greater than the value of arrow base width */  

while (arrowHeadWidth <= arrowBaseWidth) {  

   System.out.println("Enter arrow head width: ");  

   arrowHeadWidth = scnr.nextInt(); }  

//start of the nested loop  

//outer loop iterates a number of times equal to the height of the arrow base  

for (int i = 0; i < arrowBaseHeight; i++) {  

//inner loop prints the stars asterisks  

     for (int j = 0; j <arrowBaseWidth; j++) {  

         System.out.print("*");        } //displays stars  

         System.out.println();          }  

//temporary variable to hold arrowhead width value  

int k = arrowHeadWidth;  

//outer loop to iterate no of times equal to the height of the arrow head  

for (int i = 1; i <= arrowHeadWidth; i++)  

{     for(int j = k; j > 0; j--)     {//inner loop to print stars  

      System.out.print("*");    } //displays stars  

  k = k - 1;  

  System.out.println(); } } } // continues to add more asterisks for new line  

Explanation:  

The program asks to enter the height of the arrow base, width of the arrow base and the width of arrow head. When asking to enter the width of the arrow head, a condition is checked that the arrow head width arrowHeadWidth should be less than or equal to width of arrow base arrowBaseWidth. The while loop keeps iterating until the user enters the arrow head width larger than the value of arrow base width.  

The loop is used to output an arrow base of height arrowBaseHeight. So point (1) is satisfied.  

The nested loop is being used which as a whole outputs an arrow base of width arrowBaseWidth. The inner loop draws the stars and forms the base width of the arrow, and the outer loop iterates a number of times equal to the height of the arrow. So (2) is satisfied.  

A temporary variable k is used to hold the original value of arrowHeadWidth so that it keeps safe when modification is done.  

The last nested loop is used to output an arrow head of width arrowHeadWidth. The inner loop forms the arrow head and prints the stars needed to form an arrow head. So (3) is satisfied.  

The value of temporary variable k is decreased by 1 so the next time it enters  the nested for loop it will be one asterisk lesser.  

The screenshot of output is attached.

What does Tristan need to do to add a row at the bottom of the table shown?

He needs to put the insertion point at the end of 8.8 and press the Tab key.
He needs to put the insertion point at the end of 8.8 and press the Enter key.
He needs to put the insertion point at the end of freezers and press the Tab key.
He needs to put the insertion point at the end of freezers and press the Enter key.

Answers

Answer:

He needs to put the insertion point at the end of 8.8 and press the Tab key.

Explanation:

Answer:

A

Explanation:

Other Questions
I will give you brainlist if you answer it. Motown session musician Earl Van directed the funk Brothers as a heavy handed can you plzz help me what options do students have to improve their work in school? What is the slope of the line? Which molecule is the most polarizable?NO2CH4CO2 Which statement accurately describes the atoms of a specific element? *An indium, In, atom contains 115 protons inside the nucleus and 49 neutrons outside the nucleus.A scandium, Sc, atom contains 45 electrons outside the nucleus and 21 neutrons inside the nucleus.An aluminum, Al, contains 27 electrons and 27 protons inside the nucleus.A zinc, Zn, atom contains 30 protons inside the nucleus and 30 electrons outside the nucleus which statement correctly describes the relationship between genes, proteins, and traits? 4Solve the following equation: *3x + 7 = 5x - 15Enter your math answer5Solve the following equation: *3(2x - 5) = 9x + 24Enter your math answer ASAP HELP NOW I'M DOING A UNIT TEST And only nowa solid, panic-stricken, gut-wrenching, heart-palpitating ten minutes by clock but feeling like an eternity laterdid it sink in for John Coursen, Tom Kelly, and a lot of the other Grumman folks who had poured years of their lives into building the lunar module: Their baby was on the moon. Let the cheering begin!When the lunar module lands at 4:18 p.m. EDT, only 30 seconds of fuel remain. Armstrong radios "Houston, Tranquility Base here. The Eagle has landed." Mission control erupts in celebration as the tension breaks, and a controller tells the crew "You got a bunch of guys about to turn blue, we're breathing again."What information is presented in both excerpts?Both excerpts give information about the exact time the lunar module sets down on the moon.Both excerpts give information about the amount of fuel remaining when the lunar module lands.Both excerpts give information about Armstrongs communication when the lunar module lands.Both excerpts give information about the moment when the lunar module lands on the moon. What does HB stand for on a pencil An icy wind teetered trash cans and turned my cheeks to marble. What does the imagery in this sentence tell the reader about the weather?in seedfolks You want to go to Puerto Rico this summer and you decide to ask your friend Ricardo for help. He is from San Juan, and he tells you everything he does to plan his trips to Puerto Rico. To find out what he said, complete the paragraph by writing the appropriate word or phrase from the list. In some cases, you must conjugate the verb. aeropuerto| boletos | agencia de viajes | horario| ventanilla | agente | escala | asiento | viaje Cuando hago mis planes para viajar a Puerto Rico, siempre voy a la Enter Text , donde compro los Enter Text . Lola, mi Enter Text , es excelente. Siempre sabe encontrar los mejores precios. Yo le digo las fechas de mi Enter Text y despus ella consulta el Enter Text de los vuelos. Aunque vivimos ms cerca de San Diego, siempre salgo del Enter Text de Los ngeles, porque los precios son mucho ms baratos. El nico problema es que de ninguno de los sitios tiene vuelos directos. Todos hacen una Enter Text en Chicago o en Miami. Lola siempre me consigue un Enter Text especfico en el avin. A m me gusta ver el paisaje desde el avin y por eso siempre me siento en la Enter Text . Assessment question Continued Complete the paragraph by writing the appropriate word or phrase from the list. In some cases, you must conjugate the verb. abordar | bajarse | equipaje de mano | facturar las maletas | hacer las maletas | inmigracin | pasaporte | pasillo | recoger Pero a mi novia le gusta mucho caminar por el avin durante el vuelo. Por eso ella siempre se sienta del lado del Enter Text. Ahora, t sabes que yo tengo miedo de volar en avin. Est bien. Pero me ayuda mucho hablar con mis padres antes de Enter Textel avin. Ellos me ayudan a sentirme ms tranquilo. Antes del viaje siempre estoy muy ocupado con los preparativos. Siempre hago una lista de todo lo que tengo que empacar (pack). As (Therefore), cuando Enter Text, no me olvido de nada esencial. Nunca llevo Enter Text porque nunca hay suficiente espacio en el avin. Cuando llego al aeropuerto siempre tengo que Enter Text, pero no es gran cosa. Voy cmodo en el avin y, al llegar a Puerto Rico, Enter Text del avin, Enter Text el equipaje y listo! Bueno, creo que lo vas a pasar superbin en Puerto Rico. Recuerda que no necesitas un Enter Text necesitas un Enter Text y que no tienes que pasar por la oficina de Enter Text, porque Puerto Rico es parte de los Estados Unidos. Y, obviamente, no olvides llevar el traje de bao! I will give Brainliest to the first person to get this right. (this question is pretty easy but I can't figure it out.) Originating in central Asia, the Black Death was carried by Which of the figures is a concave polygon? If there are 12 eggs per carton, then how many eggs do we have in 5 cartons? Which of the following best characterized the prosecution of youth in America during the nineteenth century? A. a tendency to punish children like adults B. an focus on rehabilitation for the offending child C. an emphasis on community service for the offending child D. children were not prosecuted for crimes in the nineteenth century If a section of DNA experiences base mutation at a predictable rate, then ________________. the image below show how a river can change over time which natural process most likely contributes to the bending of the riverA. deposition B. water current C. sedimentationD. mechanical weathering