The industry I chose is the fashion industry and how web design has made an impact on that industry are:
- It often impact the visual style of cloths.
- It has helped in making of nice and good cloth design.
- It aid in design and visual effect of its product.
<h3>What is the impact of web design?</h3>
Web design is known to be a key parts of Internet marketing strategy as it helps in digital customer experience in a lot of ways.
The skill needed are:
- Visual design
- The use of Design software.
- HTML.
- JavaScript, etc.
Therefore, The industry I chose is the fashion industry and how web design has made an impact on that industry are:
- It often impact the visual style of cloths.
- It has helped in making of nice and good cloth design.
- It aid in design and visual effect of its product.
Learn more about fashion industry from
brainly.com/question/27318787
#SPJ1
The answer is (C) IT careers are found in a wide variety of industries.
Nowadays, all types of industries in various different parts of the world will have an IT (information technology) department because it is needed, since most businesses operate using some form of IT equipment, which, most commonly found is a computer. It is a particularly lucrative field because of the wide array of job availability.
<span>The answer is algorithm, because computer programmers need a programming language that's more similar to their native language. They then write specific steps a computer must take to complete the task at hand. Machine code is not easily memorized and is foreign to most people.</span>
Hi, you haven't provided the programing language, therefore, we will use python but you can extend it to any programing language by reading the code and the explanation.
Answer:
n1 = int(input("First numeber: "))
n2 = int(input("Second numeber: "))
for i in range(5):
r1 = n1%10
r2 = n2%10
print(r1+r2)
n1 = n1//10
n2 = n2//10
Explanation:
- First, we ask for the user input n1 and n2
- We create a for-loop to calculate the sum of each place-value of two numbers
- We obtain the last number in n1 by using the mod operator (%) an the number ten this way we can always take the last value, we make the same for n2
- Then we print the result of adding the last two numbers (place value)
- Finally, we get rid of the last value and overwrite n1 and n2 to continue with the process