Using your reflective skills, write 4 sentences and consider the transferable skill you would like to further develop and how you plan to accomplish this goal.

Answers

Answer 1

Answer:

El desarrollo de la habilidad se produce cuando se inicia el proceso de ejercitación, o sea, se comienza a usar la habilidad recién formada en la cantidad necesaria y con una frecuencia adecuada, de modo que vaya haciéndose cada vez más fácil producir o usar determinados conocimientos y se eliminen errores.

Explanation:


Related Questions

Hey does anyone think nervegear would be possible? (Just asking)

Answers

Answer:

Depends

Explanation:

Technology is not advanced yet, so building a fully functional nerve gear is difficult. It could be possible in a few years though.

Answer:

No, the Nerve Gear cannot be possible at the moment. However, in Japan, they are creating the Nerve Gear and is to be released in May 2022 told by the creator, Kayaba Akihiko. So, the Nerve Gear cannot be possible in 2020 but in 2022. We just have to wait for two more years.

Explanation:

please choose me as brainliest if that is ok ;)

Why might an algorithm created to assist in hiring decisions be biased?

Previous decisions were flawed.

Previous data has no effect.

The algorithm used incomplete source data.

Answers

Answer:

Previous decisions were flawed

Explanation:

An algorithm depends entirely on the data input into the system in the decision making process.

As such, when there are conclusions in the data set used by the algorithm for decision making which are distorted, such as the association of less individuals that drink and drive in the rich cities than can be found in poorer communities due to the presence of less bars uptown and as such drivers from uptown areas are given preference may include a bias that is due to conclusion on which the previous decisions were made and used in the algorithm which may have been flawed or need more detailed analysis

Select three areas that should be included in a contract consultant’s business expense model.

Answers

Answer:

i dont really know but i tried

Explanation:

Fixed price contracts. With a fixed price contract the buyer (that's you) doesn't take on much risk. ...

Cost-reimbursable contracts. With a cost-reimbursable contract you pay the vendor for the actual cost of the work. ...

Time and materials contracts

Before you add a picture to a webpage, what do you need to do?
Change the picture to HTML.
Change the picture to CSS
Upload the picture to REPL.it.
Upload the picture to html.it.

Answers

Answer:

Upload the picture to REPL (dot) it.

Explanation:

HTML is an acronym for hypertext markup language and it is a standard programming language which is used for designing, developing and creating web pages.

Generally, all HTML documents are divided into two (2) main parts; body and head. The head contains information such as version of HTML, title of a page, metadata, link to custom favicons and CSS etc. The body of the HTML document contains the contents or informations that a web page displays.

A website refers to the collective name used to describe series of web pages linked together with the same domain name while a webpage is the individual HTML document (single page) that makes up a website with a unique uniform resource locator (URL).

Before you add a picture to a webpage, you need to upload the picture to REPL (dot) it.

REPL is a free integrated development environment (IDE) which avails developers (users) the ability to write software codes or programs in various programming languages while providing the required resources. Also, REPL is an acronym for read, evaluate, print and loop.

The syntax for ________ requires you to use a colon after every if statement and while loop.
Java
Boolean
Python
programming

Answers

don't go yo the link

PLTW activity 2.1.5 PLEASE HELP I NEED STEP 5
FAKE ANSWER WILL NOT BE GIVEN POINTS

Answers

Answer:

Computing is any goal-oriented activity requiring, benefiting from, or creating computing machinery. It includes the study and experimentation of algorithmic processes and development of both hardware and software. It has scientific, engineering, mathematical, technological and social aspects.

Hope it helps u

Has the human population reached its carrying capacity? How do you know?

Answers

Answer:

..

Explanation:

.

The ability to retrieve previously published data and research rather than each organization paying for or collecting their own data to analyze is an example of?

Answers

Answer:

open access

Explanation:

11.5 Code Practice edhesive



In this code practice, we will continue to employ W3Schools tools to practice writing HTML. You should have already read through the tutorials for the four HTML topics below, found in Lesson 11.5. Now, complete the exercises linked below for each topic. Once you complete these exercises, move onto the next set of instructions below.

HTML Styles (Links to an external site.)
HTML Formatting (Links to an external site.)
HTML CSS (Links to an external site.)
HTML Links (Links to an external site.)
Create a web page that has two paragraphs. One of the paragraphs should be aligned to the center and have red text. The other paragraph should be aligned to the right and be in italics. Refer to the sample below for clarification.

11.5 Code Practice example

Your program should begin and end with the following tags:



# Insert your code here!


In the programming environment, you will notice that once you type one tag (for example, the html opening tag), the environment automatically populates the closing tag for you. Be careful not to double up on closing tags, otherwise your HTML will not run.

As you write your web page, you can click the "Run Code" button to view it in real time.


I really don't understand how to do this?

Answers

Answer:

<html>

<body>

<p style="text-align:center;color:red;">This is a paragraph.</p>

<p style="text-align:right;color:red;">This is a paragraph.</p>

<p><i> This text is italic</i></p>

</body>

</html>

Explanation:

i got a 100%

n this exercise we have to use the knowledge in computational language in HTML to write the following code:

We have the code can be found in the attached image.

So in an easier way we have that the code is

<html>

<body>

<p style="text-align:center;color:red;">This is a paragraph.</p>

<p style="text-align:right;color:red;">This is a paragraph.</p>

<p><i> This text is italic</i></p>

</body>

</html>

See more about HTML at brainly.com/question/15093505

What behavior do elements in a stack follow?

Answers

A stack operates on the LIFO (Last In First Out) principle, which states that the element inserted last is the first element to be removed. Inserting an element into the stack is known as a push operation, and removing an element from the stack is known as a pop operation.

Answer:

last in, first out, or LIFO behavior

Explanation:

B

five internal peripheral devices pls help​

Answers

Answer:

TV card, CD-R drive, Floppy Disk, Sound Card, and CD-ROM drive are examples of internal peripheral devices!(Basically hard drives and something like that)

Explanation:

here you go

1 ssd

2 CD-ROM drive

3 wifi extender or  antenna

4  CD-R drive

5 hhd

Hope this helped

-scav

Edhesive 11.1 lesson practice please

Answers

Answer:

1. Bits

2. Bitrate

3. The amount of time it takes for bits to travel from one place to another.

4. Used to send bits wirelessly.

5. Cables that carry light and dramatically increase the speed and accuracy of information over the internet.

6. 8

7. The number of bits per second a system can transmit.

Explanation:

hey lol

In this exercise we have to use the knowledge in computational language in java to write the code.

This code can be found in the attached image.

So we have the code in a simpler way like:

public class Person{

private String firstName,lastName;

public Person(String first,String last)

{

firstName=first;lastName=last;

}

public int throwDisc(int pow)

{

if(pow<1){pow=1;}if(pow>10){pow=10;

}

return pow*2;

}

public String toString(){return lastName+", "+firstName;

}

}

public class Coach extends Person{

private String role;

public Coach(String first,String last,String rol)

{

super(first,last);role=rol;

}

public String toString(){return super.toString()+"\n Role: "+role;

}

}

import java.util.*;

public class UltimateTeam

{

private ArrayList<UltimatePlayer> players=new ArrayList<UltimatePlayer>();

private ArrayList<Coach> coaches=new ArrayList<Coach>();

public UltimateTeam(ArrayList<UltimatePlayer> p,ArrayList<Coach> c)

{

for(UltimatePlayer up:p){players.add(up);}for(Coach co:c)

{

coaches.add(co);

}

}public String getCutters()

{

String list="";for(UltimatePlayer p:players){if(p.getPosition().contains("cutter")){list+=p.toString()+"\n";}}return list;

}

public String getHandlers()

{

String list="";for(UltimatePlayer p:players){if(p.getPosition().contains("handler")){list+=p.toString()+"\n";}}return list;

}

public String toString()

{

String list="COACHES\n";for(Coach c:coaches)

{

list+=c.toString()+"\n";

}

list+="\nPLAYERS\n";for(UltimatePlayer p:players)

{

list+=p.toString()+"\n";

}return list;

}

}

public class Captain extends UltimatePlayer

{

private boolean type;

public Captain(String f,String l,String p,boolean t){super(f,l,p);

type=t;

}

public int throwDisc(int pow)

{

if(pow<1){pow=1;}if(pow>10)

{

pow=10;

}

return pow*5;

}

public boolean getType()

{

return type;

}

public String toString()

{

String off="";if(getType())

{

off="offense";

}

else{off="defense";

}

return super.toString()+"\n Captain: "+off;

}

}

public class UltimatePlayer extends Person

{

private int jerseyNumber=-1;

private static int id=0;

private String position="";

public UltimatePlayer(String f,String l,String p)

{

super(f,l);

if(p.contains("cutter"))

{

position="cutter";

}

else

{

position="handler";

}

id++;

jerseyNumber=id;

}

public String getPosition()

{

return position

}

public int throwDisc(int pow)

{

if(pow<1){pow=1;

}

if(pow>10){pow=10;

}

return pow*4;

}

public String toString()

{

return super.toString()+"\n Jersey #: "+jerseyNumber+"\n Position: "+position;

}

}

See more about JAVA at brainly.com/question/12975450

What is the relationship between optical drives and WORMs?

Optical drives are advanced versions of WORMs.
WORMs do not affect optical drives.
Optical drives are susceptible to WORMs.
WORMs are types of optical drives.

Answers

Answer:

When data is written to a WORM drive, physical marks are made on the media surface by a low-powered laser and since these marks are permanent, they cannot be erased. Rewritable, or erasable, optical disk drives followed, providing the same high capacities as those provided by WORM or CD-ROM devices.

Explanation:

Good luck

Need answer ASAP

Vanessa is following a recipe to bake a simple cake. Arrange the steps in the below algorithm in order they must be performed

-be the butter and powdered sugar together until light and fluffy

-now add the flour and four in the sugar butter egg mixture

-sift The flour and baking powder together and set aside

-add eggs one at a time to the sugar butter mixture and whisk adding a few jobs a vanilla extract

-Grease a baking tray in line it with buttered parchment paper

-pour the cake mixture into the tray and top it with nuts and raisins

-preheat oven to 180° and bake the cake for 45 minutes

Answers

Answer:

step 1 - be the butter and powdered sugar together until light and fluffy

Step 2 - add eggs one at a time to the sugar butter mixture and whisk adding a few jobs a vanilla extract

Step 3 - now add the flour and four in the sugar butter egg mixture

Step 4 - Grease a baking tray in line it with buttered parchment paper

Step 5 - pour the cake mixture into the tray and top it with nuts and raisins

Step 6 - preheat oven to 180° and bake the cake for 45 minutes

Explanation:

The correct order is

step 1 - be the butter and powdered sugar together until light and fluffy

Step 2 - add eggs one at a time to the sugar butter mixture and whisk adding a few jobs a vanilla extract

Step 3 - now add the flour and four in the sugar butter egg mixture

Step 4 - Grease a baking tray in line it with buttered parchment paper

Step 5 - pour the cake mixture into the tray and top it with nuts and raisins

Step 6 - preheat oven to 180° and bake the cake for 45 minutes

Computer networks can consist of as few as computers.
Options are: 5, 10, 2, & 3

Answers

Answer: 2

Explanation:A computer network is a set of computers that are connected together.

The Scratch blocks are organized into 9 color-coded categories. Select all that apply.

Question 14 options:

Motion


Control


Group


Stack


Operators


Events


Sound


Loop


Looks


More Blocks


Data


Sensing

Answers

Motion,control,operators,events,sound,loop,looks, more blocks, and I think sensing!

Caden, Jacob, Lucas, and Michael, whose last names are Armstrong, Boothe, Gardner, and Robinson, live in four houses in a row.
From the clues below, find each person’s full name and house position (with house number 1 at the left).

1. Michael doesn’t live next door to Lucas.
2. Robinson’s house is after Gardner’s and before Michael’s.
3. Boothe’s house is just before Armstrong’s.
4. Lucas’ house, which is not first, is somewhere to the left of Caden’s.

Answers

Answer:

Jacob Gardner - Lucas Robinson - Caden Boothe - Michael Armstrong

Explanation:

According to clue 4, Lucas's house is not the first, and he has a house on his right, so it can only be house 2 or house 3. Therefore, Caden's house (which is on the right right of Lucas's), it can only be house 3 or house 4.

In turn, track 1 says that Michael's house is not next to Lucas's, so it can be 1 (if Lucas's house is 3) or 4 (if Lucas's house is in 2).

Track 2 says that there is a house before Michael's, which eliminates the possibility that Michael's house is number 1 (there would be no previous house). Thus, in addition, Lucas's house turns out to be 2 (Michael's house is not next door) and Caden's is 3, while Jacon's is house 1.

Jacob - Lucas - Caden - Michael

In turn, regarding surnames, clue 2 says that Robinson's house is after Gardner's and before Michael's. Thus, Robinson can be the last name of Jacob or Lucas, and Gardner that of Lucas or Caden. Now, since Boothe's house is just before Armstrong's, the order would be as follows:

Jacob Gardner - Lucas Robinson - Caden Boothe - Michael Armstrong

1. Samantha uses the RSA signature scheme with primes p = 541 and q = 1223 and public verification exponent e = 159853. (a) What is Samantha's public modulus? What is her private signing key? (b) Samantha signs the digital document D = 630579. What is the signature?

Answers

Answer:

Why is samantha asking us? She should find out herself smh

Explanation:

Which web design concept is most closely related to elements that symbolize the real world? A. node B. landmark c.metaphor IN D. way finding​

Answers

Answer:

landmark

Explanation:

Dropdown
Choose the word that matches each definition. Each term is only used once.
: to restart a device without powering it down

: to start a device from a powered-off state

: to reset a device back to factory configuration, losing all stored data and configuration

Answers

1-The volume and the home bottons

Answer:

Warm boot, Cold boot, hard reset

Explanation:

just did it on edge

What is the status of this account?
A)Current
B)Current, but closed
C)Potentially negative
D)Potentially negative, but closed

Answers

D)Potentially negative, but closed

we know this due to this

-scav

The given account is Potentially negative, but closed. Option D is correct.

What is the Potentially negative account?

A closed account with a “Potentially negative closed” designation has a history that a lender would find unfavorable.

Negative account are the information includes things like missed payments on credit cards and loans, charge-offs, collections, bankruptcies, short sales, deeds in lieu of foreclosure, and foreclosures.

The given image clearly indicated that the account is under the debt and it is called as the Potentially negative, but closed account. The section under “Potentially negative items” will contain a list of all accounts that could be seen negatively by lenders or other people looking at your credit history.

Therefore, option D is correct.

Learn more about the account, refer to:

https://brainly.com/question/29108212

#SPJ2

Python - Write a program to print the multiplication table as shown in the image by using for loops.

Answers

Answer:

Explanation:

The following python code creates the multiplication table for 10 rows and 10 columns. This code uses nested for loops to traverse the table and print out the product of each multiplication. The image attached shows the output of the code.

for x in range(1, 11):

       for y in range(1, 11):

           z = x * y

           print(z, end="\t")

       print()

The program to print the multiplication table as shown in the image by using for loops is in the Source code.

The Python program that uses nested for loops to print the multiplication table:

Source code:

for i in range(1, 11):

   for j in range(1, 11):

       if i == 1 and j == 1:

           print("x", end="  ")

       elif i == 1:

           print(j, end="  ")

       elif j == 1:

           print(i, end="  ")

       else:

           print(i * j, end="  ")

   print()

This program will iterate through the values of `i` from 1 to 10 and `j` from 1 to 10. It checks for special cases when `i` or `j` is equal to 1 to print the headers (x and the numbers 1 to 10).

For other cases, it calculates the multiplication of `i` and `j` and prints the result.

Learn more about Nested loop here:

https://brainly.com/question/33832336

#SPJ6

Thumbnail sketches have vanishing points and show a natural view of an image.True or False?

Answers

Answer:

False!

Explanation:

I'm an artist- thumbnail sketches are smaller, looser versions of a bigger drawing you're going to create. They can be of anything and don't need to have a vanishing point/natural view of an object.

To save your document to your hard drive in Word Online, you should choose which option?

Answers

Answer:

press file and then save to drive

Explanation:

Select the correct answer.
Raoul is an IT professional. His job involves identifying and mitigating threats to his employer's computer systems by controlling user access
Implementing risk management solutions.
Which certification would help Raoul advance his career?
О А.
Microsoft Office Specialist
B. Oracle Certified Professional
C. CompTIA Security
D. Cisco Certified Internetwork Expert

Answers

Answer:

D.

Explanation:

The Cisco Certified Internetwork Expert (CCIE) is a certification course offered by Cisco Systems. The certification is designed to assist senior networking professionals in building, designing, implementing, troubleshooting, and maintaining networking risks.

In the given case, Raoul would advance career by taking up the CCIE certification. As it will help him to tackle networking risks.

Therefore, option D is correct.

Answer:

CompTIA Security+

Explanation:

plato

Question 3 of 10 A compressed file containing visual data is called O A. a track O B. a video O C. an audio file . O D. an image file
it's called an image file​

Answers

[tex]\huge{\textbf{\textsf{{\color{pink}{An}}{\red{sw}}{\orange{er}} {\color{yellow}{:}}}}}[/tex]

D. An image file.

ThanksHope it helpsPls mark as brainliest

ced-vfrj-yiu
ev.eyo.ne joi.n.thro.ugh goog.le m.eet​

Answers

Answer:

n.o

Explanation:

n.o.

Which generation experienced a generation gap?
A.
the boom generation
B.
the silent generation
O C.
Generation X
D.
the millennial generation

Answers

Answer:

B. Baby boomers (the boom generation)

Explanation:

They went against everything their parents said. Also I took a test on it and got it right.

PLSSSSS HELPP!! Tropical rainforests are home to many kinds of birds, including parrots, toucans and eagles. Each different species of birds rely on different organisms as food sources. How does this help the birds survive in the rainforest?


A.It allows different birds to reproduce more often.

B.It allows different birds to escape from predators.

C.It reduces competition between different bird species.

D.It allows different birds to build better nests.

Answers

Answer:

C I believe

Explanation:

It is c
Because if the birds ate the same food, then the food would run out and the birds would fight.

WHATS A Video editor

Answers

Answer:

A video editor is involved in video production and the post-production of film making. ... Video editors usually use non-linear editing software to accomplish the task of editing. A video editor is a technically inclined individual that makes creative video editing decisions

A software that edits videos.

Some examples are: Capcut, Video star, and Filmora.

More advanced applications may cost money

Other Questions
Sable, Inc. has budgeted direct materials purchases of $400,000 in March and $500,000 in April. Past experience indicates that the company pays for 60% of its purchases in the month of purchase and the remaining 40% in the next month. Other costs are all paid during the month incurred. During April, the following items were budgeted: Wages expense $120,000 Purchase of office equipment 200,000 Selling and administrative expenses 126,000 Depreciation expense 18,000 Compute the amount of budgeted cash disbursements for April. 0. The mean of the numbers 4, 3, 3, x is 5Find x.A. 20B. 10C. 5.D. 4 In the diagram below, which flower part willbecome a seed?Structure AStructure DStructure BStructure C PLEASE HELP GEOMETRY PLEASE! SHOW WORK!! A recipe for lemonade requires 10 parts of water toevery 6 parts of lemon juice. How many cups ofwater should be added to 30 cups of lemon juiceto make the lemonade?Does anyone know this ?? What is not true about Johnny Appleseed he made his shirts out of empty coffee sacks he could pull old trees out of the ground with his bare hands he occasionally stuck pins through the skin of his feet to impress people he tended his own wounds with a piece of blazing hot iron Explain the meaning of the constant of proportionality What protects Earth's surface?O the atmosphereo the hydrosphereO the geosphereO the biosphere A(x): x+nx+m Hallar n y m para que A(x) admita raz -4 y el resto de dividir A(x) por (x-1) sea -20 Ester transfers land (basis of $200,000 and fair market value of $355,000) to a controlled corporation in return for stock in the corporation. However, shortly before the transfer, Ester mortgages the land and uses the $25,000 proceeds to meet personal obligations. Along with the land, the mortgage is transferred to the corporation. Ester has a realized gain on the transfer of_____and a recognized gain of_____. Triangle RST was dilated with the origin as the center of the dilation to create triangle R'S'T'. The triangle was dilated using a scale factor of 34.The lengths of the sides of triangle RST are given.Enter the lengths of the sides of the triangle R'S'T' below.(Decimal values may be used.)RS=8 unitsR'S'= unitsST=10 unitsS'T'= unitsRT=12 unitsR'T'= unitsNO SCAMMERS ALLOWED What is the value of x?Enter your answer in the box. Marc is a pharmacist and has documented the number of pills for the last 20 prescriptions he has filled. The data he recorded is in the table below. Assuming that Marc continues to fill prescriptions with number of pills that follow the same proportions, which of the following statements are true? Number of pills Prescriptions 101010 444 202020 444 303030 444 404040 555 505050 333 Total 202020 Choose all answers that apply: Choose all answers that apply: (Choice A) A In the long run, Marc can expect to fill prescriptions with 40 pills more often than he fills prescriptions with 50 pills. (Choice B) B The most likely number of pills in the next prescription that Marc fills is 40. (Choice C) C The expected number of pills in the next prescription that Marc fills is 29.5, point, 5. (Choice D) D The expected total number of pills in the next 20 prescriptions that Marc fills is 680. Article VI of Georgias constitution established theoffice of governor.general assembly and senate.executive branch of government.judicial branch of government. Could it be possible to have the same species of penguin living in more than one geographic location? Why or why not? WILL GIVE BRAINLIESTTTT and 13 pointsHELPPPPPPPONLY QUESTION B) how many electrons does each cl atom gain? Plot the value(s) on the number line where this function is equal to zero:f(x) = (x + 5)(x 1). !!!!I REALLY NEED HELP!!!!!Which of the following statements uses communicative property of multiplication? A.8x4=4x8B.2x(9x5)=(2x9)x5C.1x10=10D.7x0=0 Find the missing angle.