PLEASE HELP!!!!!!!!!!IT professionals have strict legal and ethical standards because of
A. the credentials they hold to perform their job.
B. the oath they took when they began their career.
C. the pressure put on them to behave a certain way.
D. the strategic role they play in an organization.

Answers

Answer 1
Answer:

IT professionals have strict legal and ethical standards because of the credentials they hold to perform their job. Hence, option A is correct.

What are ethical standards?

Other moral virtues that ethical norms promote include loyalty, compassion, and honesty. In addition, moral standards protect rights including the right to life, the right to privacy, and the right to be safe from harm.

Autonomy, justice, beneficence, nonmaleficence, and faithfulness are the five guiding principles, and each of them stands by itself as an unflinching truth. By examining the difficulty in light of these ethical standards, one may be better able to understand the conflicting concerns.

Respect for people, beneficence, and justice—three essential concepts that ethical standards are widely recognised in our cultural tradition—are especially crucial to the ethics of research involving human beings.

Thus, option A is correct.

For more information about  ethical standards, click here:

brainly.com/question/28295890

#SPJ6


Related Questions

DTP programs are able to import this type of text regardless of the program used to create it.a. ASCII b. bold c. formatted d. plain underlined
true or false? security professionals seeking cisco certification must begin at the entry level and may work their way through the associate, professional, specialist, and expert levels.group of answer choices
The object-oriented techniques to manage errors such as dividing a value by 0 comprise the group of methods known as
Norman is looking into an IDS/IPS solution for his command. The network engineers recommended he select a solution that requires packets to pass in and out of the device, and that it be connected in series with the outbound traffic flow. Norman should tell the sales engineer that he is interested in a __________________ IDS/IPS solution
Write a program in pascal to solve a quadratic equation

Television is more effective than radio in influencing public opinion because on the television you can see the speaker and observe his movements and gestures, all the little tricks of public speaking. a. True
b. False

Answers

its true.... on the radio you can only hear them... TV is much more effective

Joe runs a handyman service. He enjoys writing and keeping up on the latest trends. He wants to share this information with his clients. He decides that he would like to create an online community where he can frequently post information. He'd like his readers to be able to add to and comment on his entries. Although Joe knows his way around the Internet, he is not a programmer, by any means, so he is looking for a simple solution. In 5–10 sentences, describe the points that Joe needs to consider when choosing a telecommunications technology to meet his needs.

Answers

Joe should start a facebook page, it is free and requires no programming. He could also start a twitter account, same concept. He really does not need to program a web page. But, however, there are plenty of services like squarespace.com or wix.com that allow you to create websites for a small cost that require little to no programming. 

I’d suggest that Joe should open a blog. Opening a blog these days has become cheap and almost free. He can always start with a blog and then move on to other platforms immediately he establishes himself fully. Joe needs to be aware of a number of things before jumping into blogging or any other platforms that might be able to push his content online. He should be able to identify his niche and define his target audience. He should focus more on quality rather that quantity. Content is King. He should also consider ways in which he can increase traffic through social media platforms.


What are candid shots? What are posed shots? Compare and contrast some of the advantages and disadvantages to these two approaches.

Answers

Candid Shots are those which are made  without the knowledge of the subject whereas Posed Shots have planned setting and subject knows that photo is being taken.
Advantages of candid shots are that they usually produce natural alive picture as people do not expect they are being captured. On the other hand, it can show person in awkward pose and spoil the shot.
Posed shots usually seem plastic.

Answer:

Candid shots are shots that are taken without the knowledge of the subject. Which means posed shots are shots that have a planned subject and setting. Candid photos seem to be good because they can come out natural. And posed photos can come out decent and not baad. Though together they can both come out either plastic or just goofy looking.

Explanation:

Just did it. Got full credit. Wrote in own words. Shouldn't come out plagiarized. Hope this helped:)

The home keys on the numeric keypad are _____. 123 456 789 0+-

Answers

The home keys for the numeric keypad are 4 5 6

The fingers (Index, middle, and ring), on your right hand should always start on the 4 5 6 keys respectively. These keys are the home row keys for your numeric keypad. Each finger placed is responsible for a column of keys. For example, the middle finger is responsible for all the keys that lie in that column.


you are supposed to rest your fingers on 456.

Explain how this transfer observes the conservation of change

Answers

Answer:

The law of conservation of charge states that charge is always conserved. ... Charge is neither created nor destroyed; it is simply transferred from one object to another object in the form of electrons.

Explanation:

Assume that an int variable age has been declared and already given a value. Assume further that the user has just been presented with the following menu: S: hangar steak, red potatoes, asparagus T: whole trout, long rice, brussel sprouts B: cheddar cheeseburger, steak fries, cole slaw (Yes, this menu really IS a menu!) Write some code that reads the String (S or T or B) that the user types in into a String variable choice that has already been declared and prints out a recommended accompanying drink as follows: if the value of age is 21 or lower, the recommendation is "vegetable juice" for steak, "cranberry juice" for trout, and "soda" for the burger. Otherwise, the recommendations are "cabernet", "chardonnay", and "IPA" for steak, trout, and burger respectively. Regardless of the value of age, your code should print "invalid menu selection" if the character read into choice was not S or T or B. ASSUME the availability of a variable, stdin, that references a Scanner object associated with standard input.

Answers

Answer:

Hi!

The method in Java:

public void chooseMenuAndDrink(int age) {

     String menu;

     Scanner stdin = new Scanner(System.in);

     menu = stdin.next().charAt(0); //read the char and save the value on menu.

     

     if ( menu.equals("S") ) {  // if menu is S

           if(age > 21) { // and age > 21

          System.out.println("cabernet");  // prints cabernet

          } else { System.out.println("vegetable juice"); } // else prints vegetable juice

      }

      if ( menu.equals("T") ) {

           if(age > 21) {

         System.out.println("chardonnay");

     } else { System.out.println("cranberry juice"); }

  }

           if ( menu.equals("B") ) {

           if(age > 21) {

            System.out.println("IPA");

     } else { System.out.println("soda"); }

  }      

  if (!menu.equals("B") & !menu.equals("T") & !menu.equals("S")) { // if menu is not B, T or S

          System.out.println("invalid menu selection"); // prints invalid menu selection

     }

}