Classify the following skills: communication, creativity, and independence.

Hard skills
Interpersonal skills
People skills
Soft skills

Answers

Answer 1

Answer:

Communication, creativity, and independence are people skill

Explanation:

Soft skills depict the quality of a person and classify his/her  personality trait or habit.

Communication - Interpersonal skill

Interpersonal skill allows one to interact and communicate with others effortlessly.

Both soft skill and interpersonal skill comes under the umbrella term i.e people skill.

Hence, communication, creativity, and independence are people skill

Answer 2

Answer:

It's not people skills I got it wrong on my test

Explanation:


Related Questions

Need the answer rn!!!!

Answers

Answer:

what language is this? english or no

Explanation:

Input a list of positive numbers, terminated by 0, into an array Numbers[]. Then display the array and the largest and smallest number in it.

Answers

Answer:

hope this helps and mark my ans brainliest if it helped.

Explanation:

def main():

Numbers = []

n = input("Enter the number: ")

while n != 0:

Numbers.append(n)

n = input("Enter the number: ")

if len(Numbers) > 0:

max = Numbers[0]

min = Numbers[0]

for i in range(0, len(Numbers)):

if max < Numbers[i]:

max = Numbers[i]

if min > Numbers[i]:

min = Numbers[i]

print Numbers

print "Largest: ", max

print "Smallest: ",min

  

main();

Manny wants to create a new database. He has opened the database software and he has selected a new blank database. He has also named the database. What should he do next?


A. Enter field names.

B. Save the database.

C. Open the table.

D. Create a primary key.

Answers

B is the answer to the question

"Cookies cannot reliably identify individual users." Which of the following is the reason for the statement shown above? Group of answer choices Cookies assigned by Web servers are prone to duplication. The US government has banned the use of cookies for user identification. The explosion in Internet-enabled mobile devices has resulted in an acute shortage of IP addresses. Internet service providers assign arbitrary IP addresses to devices accessing the Internet from the same network. Individual users use different browsers on the same computer to surf the Web.

Answers

Answer: Individual users use different browsers on the same computer to surf the Web.

Explanation:

Cookies are referred to as the text files that contains small pieces of data such as username and password which can be used in the identification of the computer of the user when the user uses a particular network.

The main reason why cookies cannot reliably identify individual users is due to the fact that individual users use different browsers on the same computer to surf the Web.

Who clarified the binary system of algebra​

Answers

Answer:

Really good mine Bella

Explanation:

Yes it is it’s c with a L

PLEASE HELP!!!
I was trying to create a superhero class code, but i ran into this error

File "main.py", line 3
def_init(self, name = "", strengthpts = 0, alterego = "", villain "", powers = "", motto = ""):
IndentationError: expected an indented block

Here is my actual code:
class superhero:

def_init(self, name = "", strengthpts = 0, alterego = "", villain "", powers = "", motto = ""):

# Create a new Superhero with a name and other attributes

self.name = name

self.strengthPts = strengthPts
self.alterego = alterego
self.powers = powers
self.motto = motto
self.villain = villain

def addStrengthPts(self, points):

# Adds points to the superhero's strength.

self.strengthPts = self.strengthPts + points



def addname(self):

if(self.name == "Dr.Cyber"):
print("My hero's name is Dr.cyber!")
elif(self.name == "Mr.cyber"):
print("My hero's name is Mr.cyber!")
elif(self.name == "Cyber Guy"):
print("My hero's name is Cyber Guy!")
else:
print("My hero doesn't have a name")



def addalterego(self):

if(self.alterego == "John Evergreen"):
print("Dr.Cyber's alter ego is John Evergreen")
elif(self.alterego == "John Silversmith"):
print("Dr.Cyber's alter ego is John Silversmith.")
elif(self.alterego == "Johnathen Grey"):
print("Dr.Cyber's alter ego is Johnathen Grey.")
else:
print("Dr.Cyber Does not have an alter ego")



def addpowers(self):

if(self.powers == "flight, super strength, code rewrighting, electronics control, psychic powers"):
print(fly. He is super strong. He can rewrite the genetic code of any object around him to whatever he wants.He can control surrounding electronics to do what he wants. He can move objects with his mind.")
else:
print(Fly. He can rewrite the genetic code of any object around him. he can move objects with his mind.")



def addmotto(self):

if(self.motto == "error terminated!"):
print("rewritting the code!")
else:
print("error eliminated!")



def addvillain(self):

if(self.villain == "The Glitch"):
print("Dr.Cyber's Arch nemisis is The Glitch.")
elif(self.villain == "The Bug"):
print("Dr.Cyber's Arch nemisis is The Bug.")
else:
print("Dr.Cyber has no enemies!")

def main():

newhero = superhero("Dr.Cyber", "John Evergreen", "fly. He is super strong. He can rewrite the genetic code of any object around him to whatever he wants.He can control surrounding electronics to do what he wants. He can move objects with his mind.", "The Glitch", "error terminated!", "0")

print("My Superhero's name is " + newhero.name + ".")

print(newhero.name + "'s alter ego is " + newhero.alterego + ".")

print(newhero.name + " can " + newhero.powers + ".")

print(newhero.name + "'s arch nemisis is " + newhero.villain + ".")

print("when " + newhero.name + " fights " + newhero.villain + ", he lets out his famous motto " + newhero.motto + ".")

print(newhero.name + " defeated " + newhero.villain + ". Hooray!!!")

print(newhero.name + " gains 100 strengthpts.")

main()

PLEASE ONLY SUBMIT THE CORRECT VERSION OF THIS CODE!!! NOTHING ELSE!!!

Answers

Answer:

you need to properly indent it

Explanation:

align your codes

Mark the other guy as brainliest, I'm just showing you what he meant.

I'm not sure if that's all that's wrong with your code, I'm just explaining what he meant.

Answer:

def_init(self, name = "", strengthpts = 0, alterego = "", villain "", powers = "", motto = ""):

# Create a new Superhero with a name and other attributes

self.name = name

self.strengthPts = strengthPts

self.alterego = alterego

self.powers = powers

self.motto = motto

self.villain = villain

def addStrengthPts(self, points):

 

   # Adds points to the superhero's strength.

   self.strengthPts = self.strengthPts + points

def addname(self):

   if(self.name == "Dr.Cyber"):

       print("My hero's name is Dr.cyber!")

   elif(self.name == "Mr.cyber"):

       print("My hero's name is Mr.cyber!")

   elif(self.name == "Cyber Guy"):

       print("My hero's name is Cyber Guy!")

   else:

       print("My hero doesn't have a name")

def addalterego(self):

   if(self.alterego == "John Evergreen"):

       print("Dr.Cyber's alter ego is John Evergreen")

   elif(self.alterego == "John Silversmith"):

       print("Dr.Cyber's alter ego is John Silversmith.")

   elif(self.alterego == "Johnathen Grey"):

       print("Dr.Cyber's alter ego is Johnathen Grey.")

   else:

       print("Dr.Cyber Does not have an alter ego")

def addpowers(self):

   if(self.powers == "flight, super strength, code rewrighting, electronics control, psychic powers"):

       print(fly. He is super strong. He can rewrite the genetic code of any object around him to whatever he wants.He can control surrounding electronics to do what he wants. He can move objects with his mind.")

   else:

       print(Fly. He can rewrite the genetic code of any object around him. he can move objects with his mind.")

def addmotto(self):

   if(self.motto == "error terminated!"):

       print("rewritting the code!")

   else:

       print("error eliminated!")

def addvillain(self):

   if(self.villain == "The Glitch"):

       print("Dr.Cyber's Arch nemisis is The Glitch.")

   elif(self.villain == "The Bug"):

       print("Dr.Cyber's Arch nemisis is The Bug.")

   else:

       print("Dr.Cyber has no enemies!")

def main():

   newhero = superhero("Dr.Cyber", "John Evergreen", "fly. He is super strong. He can rewrite the genetic code of any object around him to whatever he wants. He can control surrounding electronics to do what he wants. He can move objects with his mind.", "The Glitch", "error terminated!", "0")

   

   print("My Superhero's name is " + newhero.name + ".")

   print(newhero.name + "'s alter ego is " + newhero.alterego + ".")

   print(newhero.name + " can " + newhero.powers + ".")

   print(newhero.name + "'s arch nemisis is " + newhero.villain + ".")

   print("when " + newhero.name + " fights " + newhero.villain + ", he lets out his famous motto " + newhero.motto + ".")

   print(newhero.name + " defeated " + newhero.villain + ". Hooray!!!")

   print(newhero.name + " gains 100 strengthpts.")

main()

Tell the story, step by step, of how your computer finds the CodeHS server,

Answers

Answer:

huh .......................................

Explanation:

You are an intern at Lucerne Publishing.
The company needs to use multiple versions of Microsoft Once on each machine in the editing department.
Which virtualization strategy should the company use?

Answers

Answer:

jvgbicgbvhkvfvuncj gjvfjvfk fj

4. Describe how changes in society's attitude toward people in wheelchairs may
have led to changes in the wheelchairs available to people who need them.
Were these changes made using science or technology or both?​

Answers

I don’t really know but peoples attitude towards people in wheelchairs is a great change for people that actually need them it went to being push or half to roll you self with the metal on the wheels and sure we still have those but that’s permanent most of the time.now people have battery powered wheel chair that make peoples life’s a lot easier

A website asks the user to enter his or her date of birth with the month first and then the day of the month. Describe what you could do to prevent problems with the code if a user enters the information in the wrong order by placing the day of the month before the month.

Answers

Answer:

Oh this is quite the good question, you could perhaps add a select or multiple choice box instead, or you could add boxes in the order that you want them to input.

Rachel wants to minimize project risks. Arrange the steps in an order that will correctly help Rachel and her team to minimize project risks.

Answers

identify, evaluate, prioritize, and then control

Answer:

identify, evaluate, prioritize, and then control

Explanation: I got a 100% on my test.

The history of the Internet dates back to the 1960s, when a group of scientists at Stanford University were entrusted to design which of the following as part of the competition between the US and its then Cold War enemy, the USSR?


a main frame to siphon information

a super computer for the US government

a network of sophisticated computers

a computer to control weapons

Answers

Answer:

a network of sophisticated computers

Explanation:

This is an easy and simple read if you want to as well

https://cs.stanford.edu/people/eroberts/courses/soco/projects/2001-02/distributed-computing/html/history.html

You are an intern at Lucerne Publishing.
The company needs to use multiple versions of Microsoft Oce on each machine in the editing department.
Which virtualization strategy should the company use?

Answers

Answer:

Microsoft Application Virtualization (App-V)

Explanation:

Cloud computing can be defined as a type of computing that requires shared computing resources such as cloud storage (data storage), servers, computer power, and software over the internet rather than local servers and hard drives.

Generally, cloud computing offers individuals and businesses a fast, effective and efficient way of providing services.

In cloud computing, virtualization can be defined as a process which typically involves creating a virtual storage device, servers, operating system, desktop, infrastructure and other computing resources. Thus, virtualization is considered to be a building block (foundational element) of cloud computing as it powers it.

In this scenario, multiple versions of Microsoft Office are required to be used on each machine in the editing department. Thus, the virtualization strategy which the company should use is Microsoft Application Virtualization (App-V).

Microsoft Application Virtualization (App-V) refers to a virtualization and streaming software acquired by Microsoft from Softricity on the 17th of July, 2006. It is designed to avail software developers the ability to run, update and deploy (stream) software applications remotely to end users.

This ultimately implies that, end users could use multiple versions of a software application such as Microsoft Office 2013, 2016, etc., on each machine without having to worry about physically installing them on their Windows computer systems.

Mateo wants the words “It’s snowing!” to appear in the interpreter and typed print (It's snowing). This didn’t work. What needs to be added to the code?
quotation marks
a backslash
a period
a functional code

Answers

Answer:

print("It's snowing")

Explanation:

since it a string you need put quotation marks the code does not understand just (It's snowing) because it thinks it variable which it is not

The purpose of data analysis is to filter the data so that only the important data is viewed.


False

True

Answers

Answer:

YES IT IS TRUE!

Explanation:

How many slides would be in a PowerPoint presentation based on the formatting of the Word outline?
A. two
B. Three
C. Eight
D. Eleven

Answers

Answer:

A. two

Explanation:

can i have brainliest please

Answer:

Explanation:

It depends on how the presentation is organized.  If there is one slide for each major section, then the answer is B. Three as there are 3 sections.

But if each outline has its own slide, then there will be D. Eleven slides.

how to get bing with any node unblocker

Answers

Answer:

rawr xD broooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooooo

Explanation:

UwUOwO<3

Where does Reiner take eren after they have a fight?

Answers

Answer:

So Reiner And Bertoldt wanted to take Eren and Ymir to Marley, a nation on the other side of the ocean so they can be devoured and there power can be given to a warrior canidate.

Answer:

what season tho?

Explanation:

Reiner took eren to the Forest

Why do we need to get the minimum and maximum resistance value of resistors?

Answers

To determine if the circuit using them will function probably when the resistor has the related tolerance.

Pleassseeeee helppp!!!!

Answers

Answer:

html

Explanation:

John is directing a television series. He has to shoot a scene that presents the lead character in a dominating and commanding position.

What
shooting technique should he use?

(NO LINKS!!!!)

A low angle
B. high angle
C. Dutch tilt
D. front angle

Answers

The answer is D hope this helped.

Answer:

it is A or B

Explanation:

I know it is either A or B because I took the test and tried Dutch tilt n front angle, got them both wrong on my 1st and second try.

Consider the following code:
a = 3
b = 2
print (a ** b)
What is output?
O 8
O9
O 1
6

Answers

Explanation:

I think the output is 6

am not sure tho hope my answr helps

convert this hexadecimal number to binary :. A07F​

Answers

Answer:

101000000111

Explanation:

Using the drop-down menus, correctly complete the sentences.
A(n)
vis a set of step-by-step instructions that tell a computer exactly what to do.
The first step in creating a computer program is defining a(n)
the next step is creating a(n)
v problem that can be solved by a computer program.
A person writing a computer program is called a(n)

Answers

Answer:

It is  computer program , Problem, Logic, Programmer

Explanation:

on edge

Explain benefits and disadvantages of using BNC over F-Type connectors on coaxial cables

Answers

Answer:

The benefits and disadvantages of using BNC over F-Type connectors on coaxial cables are;

The benefits of the BNC includes;

1) Easy connect and disconnect for a more rapid connection unlike the F-Type connector which is a screw connector

2) Reduction on stress on the termination of the coaxial cable

3) Appropriate in systems that see frequent reconfiguration unlike te F-Type connector that is permanently attached

4) Prevent unwanted disconnection ensuring image consistency by locking into place

5) Can extend to 300 ft.

The disadvantages of the BNC connectors are;

1) A separate power supply for the cable is required

2) Is used only for video transmission

3) Cannot be used for audio

4) The center wire is not easily visible like those of the F-Type connector which serves as a pin

5) The BNC connector is not watertight like the F-Type connectors

6) There are no provision for properly and securely attaching the cable to the camera for field work such that it can be easily disconnected while in use unlike the F-Type connectors

7) It is not as easy to manufacture like the F-Type connector and it is more expensive

8) The installation of the BNC connector on a coaxial cable is more intricate and the center cable is hidden from view after the BNC is attached thereby making it not possible to see if there is an error in installation which is unlike the F-type connector that takes less than 30 seconds to be attached to a cable

9) The F-Type connector provides more cost savings during installation than the BNC connector

Explanation:

The BNC connector is a type of bayonet connector used more frequently on CCTV systems. The benefits of the BNC includes;

The F-Type connectors are usable on SATV, CATV, and Digital TV where they are used together with RG6 or RG11 cables

Explain the principle of a Kimball as a data input device

Answers

Answer:

k

Explanation:

bc i need points

Answer:

p=35

Explanation:

hoped this helped

why do computer architects prefer memory dump to be in base 16​

Answers

Answer:

We use hexadecimal numbers primarily because they provide a more human-friendly representation and it is much easier to express binary number representations in hex than in any other base number system.

Explanation:

What is the main difference between cell phone and mobile phone?

Answers

Answer:

A Cell Phone is, therefore, a mobile phone that works utilizing radio cells, which is an area of radio coverage. Cell phones can typically be used while moving from one cell to another without losing coverage or dropping the connection. Satellite phones are not cell phones, although they are mobile phones.

Explanation:

Cell phones are less sophisticated than mobile phones because they are older and more primitive.

4. What is the difference between trademarks and copyrights? ​

Answers

Answer:

Generally, copyrights protect creative or intellectual works, and trademarks apply to commercial names, phrases, and logos. ... Trademarks protect the use of a company's name and its product names, brand identity (like logos) and slogans.

Explanation:

which operating systems have both workstation and server editions?
-ios
-android
-ubuntu
-windows

Answers

Answer:

WINDOWS

Explanation:

The operating system that have both workstation and server editions is windows. The correct option is D.

What is an operating system?

The operating system (OS) controls all of the computer's software and hardware. It basically manages files, memory, as well as processes, handles input along with output, and controls peripheral devices such as disk drives and printers.

The most chief software that runs on a computer is the operating system. It is in charge of the computer's memory, processes, as well as all software and hardware.

Several computer programs typically run concurrently, all of which require access to the computer's processor (CPU), memory, and storage.

Operating systems now use networks to connect to one another as well as to servers for access to file systems and print servers. MS-DOS, Microsoft Windows, and UNIX are the three most popular operating systems.

Thus, the correct option is D.

For more details regarding operating system, visit:

https://brainly.com/question/6689423

#SPJ2

Other Questions
what is a cell mention any one function of it Enter the value of p so the expression 12 - 5n is equivalent to p(6 - 2.5n describe your childhood in 10 sentences. Make sure that you are understood, demonstrate your knowledge of Spanish, andflow well INTRODUCE yourself: Hola, Buenos das / Buenas tardes. Yo soy [Nombre Apellido) del primer, segundo, tercer, octavo periodo de espaol dos.Cuando yo era nio(a)......Era (describe your childhood, yourself).Tena (talk about you used to have).Preferia (what you used to prefer).Coma (what you used to eat).Me gustaba [what you used to like).Iba a (tell where you used to go).Jugaba (tell which sports or games you used to play).Tocaba (what music or instrument you used to play).Vela (what you used to see/watch).Other actions: araba, er/irla (Trabajaba, Estudiaba, Escribia, Escuchaba) If a triangle has sides of lengths 15 cm, 36 cm, and 48 cm, is it a right triangle? Show all algebraic workfor credit AND explain in a full sentence. Find the value of XA12BXC16D10ABCD ~ QRST Q6R4S8T5 (40 Points) A Bag contains 7 green marbles and 35 blue marbles. If a representative sample contains 3 green marbles, then how many blue marbles would you expect it to contain? (SEE PICTURE) Amanda identifies as a homosexual. She has come to accept her sexual orientation, but her friends do not understand. How might her interactions with her friends impact her self-concept? help asap and get brainliest Under her cell phone plan, Autumn pays a flat cost of $66 per month and $5 pergigabyte, or part of a gigabyte. (For example, if she used 2-3 gigabytes, she wouldhave to pay for 3 whole gigabytes.) She wants to keep her bill under $80 per month.What is the maximum whole number of gigabytes of data she can use while stayingwithin her budget? 30 points! how many students are expected to wear boots? Question 13: I need help please find the y intercept of the following equation. simplify your answer. y=3\4x+4\7 Where is the object pronoun located in a sentence Can a pronoun be separated from the verb?What are the French pronouns for it?In a negative sentence in the Pass Compos, where is the object pronoun located? What is the circumference of a circle with a diameter of 10 inches? These sentences are from the passage. "Most Saint Bernards are gentle and friendly. They are good with children and do not get too rowdy." (Paragraph 5) Based on the sentences, what does "rowdy" mean? 1. cold 2. sleepy 3. thin 4. wild (X-5)^2 in quadratic standard form Find x. Round the nearest tenth What is Epidemiology of cervical cancer What does Capulet tell Paris about the two families ability to keep the peace? Is he confident that they can do so? 3. In a triangle, two angles have measures of 45and 85. What is the measure of the third angle inthis triangle?