Flexplace and telecommuting are similar in that both allow you to work in a different location four days a week.
The program that ask the user to type there first name and then print out how many letters that is in there name is as follows:
x = input("what is your first name: ")
y = len(x)
print(f"There are {y} letters in your name")
<h3>Code explanation;</h3>
The code is written in python.
- Firstly, we store the users name in the variable x.
- Then, we find the length of the users inputted name and store it in a variable y.
- Finally, we print the length of the users name using the print function.
learn more on python here: brainly.com/question/26738945
Answer:
MacBook or a Dell computer in my opinion
Explanation:
Answer:
Affective
Explanation:
Affective Component − This is the second model of customers attitude. This consists of a person’s feelings, sentiments, and emotions for a particular brand or product. They treat them as the primary criteria for the purpose of evaluation. The state of mind also plays a major role, like the sadness, happiness, anger, or stress, which also affects the attitude of a consumer.
Answer:
x = input ("Enter a word: ")
y = input ("Enter a word: ")
print ( x, " ", y)
Explanation:
This is the simplest way to write it using Python.