Which of these is a good example of a user persona?

a
"Clippy, the Microsoft Word mascot"

b
"Teenage power-gamer who plays competitively 10+ hours a day"

c
"The U.S. government"

d
"Mom"

Answers

Answer 1

Answer:

The answer is "Option a".

Explanation:

The consumer is a sub-personality based on the real customer (or perfect). The people were created to improve marketing activities, through speaking to consumers and dividing up the different demographic and geographic data. In the creation of the user persona, it uses Clippy as the symbol for Microsoft Word.

Answer 2

Answer:

The answer is B

Explanation:


Related Questions

1. Hypothesis: It is easier to establish an ethical work environment in a non-profit organization than in a for-profit organization. Provide three facts or opinions that support this hypothesis. Provide three facts or opinions that refute the hypothesis.

Answers

Answer:

Explanation:

Nonprofit organizations may have more possibilities to remain ethical because their work is not aimed at capital, but at the welfare of something or some situation.

When money is not involved in organizations, things become more honest and simple.

Usually people involved in nonprofit organizations have a different worldview and want to change reality.

In a non-profit organization, a social good is sought, as opposed to an organization that aims at money, but there are people who only use non-profit organizations as status.

Even though the environment aiming at a change in reality can become a work without ethics and that breaks the social rules.

What makes people truly ethical are people, a for-profit organization can be a more ethical environment than a non-profit organization.

HURRY PLEASE
Maria is creating a game that will need a random number. Which line of code should be included in this program?
import random
print(random number)
1num = random
create random

Answers

Answer:

import random

Explanation:

Using the random module in python you could generate a random number.

Answer: Import

Explanation:

It is not really important to organize your photos because you know that they are on your computer. (TRUE/FALSE)

Answers

Answer:

It is important

Explanation:

if not it'll be hard to find them in a cluttered mess of scattered photos

Answer: FALSE

Explanation: it is false because you can lose all those photos or even just misplace some photos that are gonna be lost.

FASTTTT
which function calculates the arithmetic mean of list values?
Max
count
average
self​

Answers

the excel AVERAGE function. so answer is average

which web design concept is most closely related to elements that symbolize the real world​

Answers

Answer:

it is A A metaphor

Explanation:

enumerate the the risk in the preparation and cooking in starch and cereal dishes and other food​

Answers

———————————————————.

The OR operator displays a record if any conditions listed are true. a. Trueb. False

Answers

Answer:

True

Explanation:

I will answer using the following illustration (in python)

a = 2

b=3

if a ==2 or b == 4:

  print("Good!")

When the above program is run, the program will print Good!

Why?

Because according to the OR operator, only one condition (in this case; a = 2) has to be true

The other condition may or may not be true.

Hence, the anwer to your question is true

_____ are labels for data, while _____ tie values together into one entity.

Answers

Answer:

Rows and Columns

Explanation:

My teacher told

Create a function called makePositive that accepts a single argument: an integer array. The function should walk through the array and change any negative numbers to positive. You can assume that the array passed to the function will have a 0 at the end of the array. In other words, you do not know the size of the array; you instead know that a certain condition will be true at the end of the array.

Answers

Answer:

This solution is implemented in C++

void makePositive(int arr[]){

   int i =0;

   while(arr[i]!=0){

       if(arr[i]<0){

           arr[i] = abs(arr[i]);

       }

       i++;

   }

   i = 0;

   while(arr[i]!=0){

    cout<<arr[i]<<" ";

    i++;

}  

}

Explanation:

This defines the function makePositive

void makePositive(int arr[]){

This declares and initializes i to 0

   int i =0;

The following iteration is repeated until the last element in the array

   while(arr[i]!=0){

This checks if current array element is negative

       if(arr[i]<0){

If yes, it changes it to positive

           arr[i] = abs(arr[i]);

       }

The next element is then selected

       i++;

   }

This sets i to 0

   i = 0;

The following iteration prints the updated content of the array

   while(arr[i]!=0){

    cout<<arr[i]<<" ";

    i++;

}  

}

See attachment for full program which includes the main

PLS HELP Select the correct answer from each drop-down menu.
Nina is writing an assignment on JavaScript. Help her complete the following sentences.

If the property “length” of a string object is applied to the string “JavaScript", the result would be {blank} (10, 5, or 8.)
For date object, the initial value of the newly created object “mydate” is the {blank} (previous', current, or next day's) date and time.

Answers

Answer:

i think its 5 then current

Explanation:

Answer:

10, current

Explanation:

Just took the test and got it right

happy to help !!

Write the line of Python code that calculates and prints the answer to the following arithmetic expressions.

a. 5 to the 3th power
b. The sum of 4 and 6 multiplied by the quotient of 34 and 5 using floating point arithmetic.

Answers

Answer:

Explanation:

If the chosen programming language for this is Python and you only want the code to calculate the expression and print it then these are the following codes

a.   print(5**3)

b.  print((4+6) * (34 / 5))

Each one of these lines of code will calculate the arithmetic expressions and print the answer to the screen.

Tips to identify email scams.

Answers

Answer:

Explanation:

dont open or sign up to anything that seems to good to be true

Your internet is out, and devices connected by WiFi and ethernet will not connect. You check several websites, and all your packets fail. You then ping a website with an IP address, and to your surprise, it's a success. Which would you do next? a) Open the DNS settings on your router and try using a different DNS b) Open the DHCP settings on your router and try using a different pool of private IP addresses c) Open the Port Forwarding settings on your router and try turning on UPnP d) Open the Network settings on your router and try adjusting the default gateway e) Open the Network settings on your router and try turning off your firewall

Answers

Answer:

a) Open the DNS settings on your router and try using a different DNS.

Explanation:

The DNS or domain name service is a protocol that majorly assigns a URL string to an IP address. This is because the IP address as a number is easily forgotten.

In the question above, the operator could not access the websites with the URL name but can confirm connectivity to the site with its IP address. This means that the IP address can be used to access the websites directly, so, the DNS protocol is either not configured or is down.

Anna is creating a digital portfolio, including her professional work showcasing the designs she created. What should she add to each work?

A. brief description of the work and project details
B. only title of the work
C. only date and title of the work
D. only project details of the work

Answers

A. Brief description of the work and project details.

Using a while loop, create an algorithm extractDigits that prints the
individual digits of a positive integer.
For instance, extractDigits(54321); would create the output:
1
2
3
4
5
Hint: The % and the / operators are going to be very useful in this program.
How can you use these to extract the last digit of the glven number?

Answers

Answer:

Follows are the code to this question:

#include <stdio.h>//defining header file

void extractDigits (int n)//defining a method extractDigits that holds

{

int x;//defining integer variable

   while (n > 0)//defining while loop for check value is greater than 0

   {

       x = n % 10;//holding remainder value

    n = n / 10;// holding quotient value

       printf("%d\n", x);//print remainder value

   }

}

int main ()//defining main method

{

extractDigits (54321);//calling above method by passing integer value

}

Output:

1

2

3

4

5

Explanation:

In the above-given code a method "extractDigits" is defined that accepts an integer parameter, and inside the method an integer variable is declared, that use while loop to check value is greater than 0, and calculate the individual digits, and print its values, and inside the main method we call the above method.    

What tool should be used to remove fields and format data when importing?

A.)Power Query Editor

B.)Relationship builder

C.)3D Maps (Power Map)

Answers

Answer:

A.)Power Query Editor

Explanation:

Power Query editor is a Microsoft Office application, it can be utilized to remove fields and format data when importing files.

To remove fields, a user will click on the fields he wants to remove, then right-click to select Remove Columns on the menu, and under the same menu select Remove Columns from the sub-menu.

It is also used in formating data in the table created.

According to Debevec, what has been one of the biggest challenges in computer graphics?

Answers

Answer:

making the computer-generated models move realistically.

Explanation:

Paul Ernest Debevec is a known personality in the world of computer graphics. As a researcher in computer graphics development, he realized that there are many challenges facing graphics development, and one of the biggest challenges in computer graphics is the ability to make the computer-generated models or human face move realistically.

Hence, in this case, the correct answer is "making the computer-generated models move realistically."

While rendering the homepage of a website, it takes a lot of time due to the thread being blocked in processing JS/CSS. What are the options that can be employed to better the performance in this situation?
a) Pick ONE OR MORE options Using code-splitting for JS files.
b) Compressing the JS files on the server-side.
c) Using preloading for CSS files.
d) Having important pages as static files.

Answers

Answer:

a) Pick ONE OR MORE options Using code-splitting for JS files.

b) Compressing the JS files on the server-side

Explanation:

Javascript is a multi-purpose programming language, it is used in web development as a scripting language for programming the interactiveness of the web application.

Loading and running the script from the server can take a lot of time, so, the file is compressed and split for faster loading.

What is the name given to a value that does NOT change when used within a formula? *



A. Address

B. Reference

C. Constant

D.Function​

Answers

The answer is C. constant.

Formulars can contain different values, which may be variables or constants. Hence, values which does not change when used within a formula are called constants.

Constant are some times referred to as hard-coded values, as they cannot be aytwrwd within a formula.

Variables, on the other hand coukd taken up any specified value within the formula, as they are designed to be subject to change.

Learn more : https://brainly.com/question/14826269

When two well-informed people have different perspectives on a problem, it is often because they are focusing on a different approach to the problem, not that one side is right and the other is wrong.

a
False

b
True

Answers

Answer:

B. True.

Explanation:

The problem-solving process can be defined as the systematic approach used to identify and determine the solution to a particular problem.

The steps involved in the problem-solving process are;

1. Identify and define the problem: this is the first step to be taken in solving a problem. This is to ensure that, the focus is on the main issue or situation and all efforts is channeled in the right direction rather than the symptoms.

2. Gathering of information: this helps to consider the options available in solving a problem effectively.

3. Consider your options: this helps to compare the available and viable solutions to the problem.

4. Weigh disadvantages and evaluate a solution: you weigh the disadvantages of each solution, before choosing the one with the least disadvantages.

When two well-informed people have different perspectives on a problem, it is often because they are focusing on a different approach to the problem, not that one side is right and the other is wrong. Considering the fact that, all humans and intellectuals have different perspectives on a problem, the technique or approach that would be adopted by them to proffer a solution to the problem is most likely to differ. Thus, it's possible to have more than one approach to proffer a solution to the same problem.

A structure, in C, has been given by: struct MYSTRUCT { char buf[15] shorts S int i; } * Select the proper keywords in the proper order) needed to declare, in C, an array of 8 structures (called MYSTR) of type MYSTRUCT. * Choose the following the expression for accessing Element 4 (i.e., index 4) of the char array (BUF) in the third element (i.e., index 3) of MYSTR. * Choose the statement to declare, in C, a pointer called MYSPTR that points to a structure of type MYSTRUCT. * Select the proper method to access the short, S, in a structure pointed to by MYSPTR by de-referencing the pointer.*Select the proper method to access the short, S, in a structure pointed to by MYSPTR by using the shorthand notation.

Answers

Answer:

MYSTRUCT myStruct[8]; // statemnt to create an array of struct variables

myStruct[3].buf[4] // statement to access the fourth element of the array of the struct variables.

struct * MYSPTR = &myStruct; // This statement creates a pointer.

To dereference and access the S variable of the struct data structure in the array;

(*MYSPTR).S and its shorthand notation MYSPTR -> S

Explanation:

A structure is a data structure in C language that is used to hold descriptive data of an object. The keyword struct is used to create the structure. An array of struct holds instances of a struct variable, where each struct can be accessed using the regular array indexing and the variables of the structs in the array can be accessed using dot notation.

The______ process of NLP normalizes words into base or root from

Answers

Answer:

stemming and lemmatization

Explanation:

i said so

PLZ HELP THIS ENDS TODAY
During slide show mode, hitting the B key will do which of these?

End your presentation

Blank the screen with black screen

Move back one page

Move to the first page of your presentation

Answers

Answer:

B or Period. Pressing the B key or period key pauses the slideshow and displays a black screen, which you can write on. Press the B or period key again to resume the slideshow.

Answer: It blanks the screen black.

You should use the arrow keys.

Explanation:

I tried it.

What is an example of a functional requirement?

a
The software will be marketed to parents of colorblind children.

b
Schools will pay for the software.

c
The software will run on iPhones.

d
The software will allow users to apply a filter to simulate colorblindness to images.

Answers

Answer:

d. The software will allow users to apply a filter to simulate colorblindness to images.

Explanation:

A functional requirement can be defined as a description of the process or service that a system and all of its components is required to offer and perform, in order to support an end user's task.

Simply stated, a functional requirement is a description of the intended functions of a computer system.

The output of a system under certain input (conditions) is based on the functional requirement of the system and as such determines its behavior.

The various types of functional requirement are business rules, reporting requirements, certification requirements, transaction handling, audit tracking, external interfaces, administrative functions etc.

An example of a functional requirement is that, the software will allow users to apply a filter to simulate colorblindness to images.

Consider the following Java program. Which line implements an interface method?import java.awt.event.*;import javax.swing.*;public class MouseWhisperer extends JFrame implements MouseListener { MouseWhisperer() { super("COME CLOSER"); setSize(300,100); setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); addMouseListener(this); setVisible(true); } public void mouseClicked(MouseEvent e) { setTitle("OUCH"); } public void mousePressed(MouseEvent e) { setTitle("LET GO"); } public void mouseReleased(MouseEvent e) { setTitle("WHEW"); } public void mouseEntered(MouseEvent e) { setTitle("I SEE YOU"); } public void mouseExited(MouseEvent e) { setTitle("COME CLOSER"); } public static void main(String[] args) { new MouseWhisperer(); }}Select one:a. addMouseListener(this);b. public class MouseWhisperer extends JFrame implements MouseListener {c. public static void main(String[] args) { new MouseWhisperer(); }d. public void mouseEntered(MouseEvent e) { setTitle("I SEE YOU"); }e. setVisible(true);

Answers

Answer:

ok your1 one is your answer

Explanation:

happy new year 2021 please mark me brainlist

Imagine that you are in the market for a digital camera. Would it be better for you to purchase a high-quality digital camera or a mobile camera? Explain your answer by providing three reasons why your choice suits your needs.

Answers

Answer:

HI

I would be choosing digital camera

Explanation:

Reasons

1 the picture quality is amazing

2 mobile camera is also good but I already have

3 I don't have any 3rd reason

To take pictures that should be of high quality to capture the interest of readers. So, if I am in the market to purchase a camera, I would go for a camera that is of high quality. Even though a mobile camera would be less expensive, a high-quality digital camera has features that can be manipulated to get a quality photo that would also last.

What is the difference between mutex lock and race condition​

Answers

Answer:

The answer is below

Explanation:

Mutex is an exclusion key or synchronization tool that allows users in securing their data or other resources files from concurrent entry. This method ensures critical regions are secured during their stays in the critical section.

On the other hand, the race condition is a situation in which the same access data are simultaneously processed and operated, such that the result from its execution is based on the order of process access.

Which of the following had already existed in Africa before the Portuguese arrived?
A. Widespread practice of Christianity
B. The Triangle trade
C. European colonialism
D. Extensive trade networks

Answers

Answer:

D. Extensive trade networks

Explanation:

Trade in in raw materials as well as manufactured goods and other items was already established in Africa before the coming of the Europeans. There were already many trade routes by which African Kingdoms traded in diverse commodities in many renowned kingdoms of Africa before the Trans-Atlantic slave trade.

Trading was carried out on land and by waterways, these existing trade network enabled the Europeans to have access to Africa . Without these existing trade routes, the penetration of the Europeans would have been more challenging.

Answer:

The answer is D. Exstensive trade networks

Explanation:

I just took the test it is correct :)

to display only rows and columns that meet the specified condition or criteria computer​

Answers

Is there a question or is this a fact

True or false The List interface defines a collection for storing elements in a sequential order.

Answers

Answer:

True

Explanation:

A list is a collection where the elements are stored in the ordered sequence and it allows access to each of he elements by its position in the sequence. It allows duplicate values to be stored. It also allows insertion of elements and positional access.

A list is one of the three major categories of the Java collections. The other two categories are maps ans sets.

Other Questions
What does E=Mc2 mean simplified, and what does NASA mean? Spider monkeys in Costa Rica live in rain in the rain forest where they eat fruit and nuts from big forest trees the trees also protect them from predators like jaguars and large snakes the trees are the spider monkeys question 1Read the excerpt from "Atalanta, the Fleet-Footed Huntress."With the warriors from the south came Atalanta, armed with bow and arrows and a long hunting spear.My daughters are having a game of ball in the garden, said the king to the huntress. Would you like to put away your arrows and your spear and go play with them? Atalanta shook her head and lifted her chin in disdain.Perhaps you would rather stay with the queen, and look at the women spin and weave, said the king.No, answered Atalanta. I am going with the warriors to hunt the wild boar in the forest.The men gasped. They had never heard of such a thing as a girl going out with heroes to hunt wild boars. If she goes, then I will not, muttered one. Nor will I, said another, a little more loudly. Why, the whole world would laugh at us, and we should never hear the end of it. Nor will I, exclaimed a third. The hunt is for heroes, not for girls.Many of the men guffawed and hooted at the young huntress. But Atalanta only grasped her spear more firmly and stood tall and straight in the gateway of the palace.Which detail best supports the inference that Atalanta struggles to overcome gender stereotypes?A. "With the warriors from the south came Atalanta, armed with bow and arrows and a long hunting spear."B. "Atalanta shook her head and lifted her chin in disdain."C. But Atalanta only grasped her spear more firmly and stood tall and straight in the gateway of the palace."D. 'The hunt is for heroes, not for girls.' I need this in the next 10 minutes Organelle A mitochondria B nucleus C. Cell membraneD. Cell wall E vacuole F chloroplast G cytoplasm name the functions of the organelles?i We've all heard the saying, "Money can't buy happiness." Even thoughwe know money can't buy actual happiness, maybe it can buy otherthings that lead to happiness. Or maybe stability and contentment aremore important than happiness. How much does money contribute to aperson's stability? Write a paragraph or two explaining your answer tothis question. Please HelpYou are part of a desert plant research team trying to discover crops that will be productive in arid climates. You discover a plant that exhibits multiple drought responses. What can you conclude about the molecules responsible for these responses? They alter the amount of energy available to the plant. They respond to air temperature changes. They can reset the biological clock. They are modified by changes in moisture. Theof-6 is 6, because it is 6 units from zero onthe number line. !!!WILL GIVE BRRIAANLLIEESST!!! In which organ of the digestive system does most of the digestion and absorption occur?A. MouthB. StomachC. Large intestineD. Small intestine A manufacturer determines that the number of drills it can sell is given by the formula 4p 60p 05 , where is the price of the drills in dollars and D is the number of 2 + 1 3 = D pdrills it sells.a) At what price will the manufacturer sell the maximum number of drills?b) What is the maximum number of drills that can be sold? Archie BainesArthur is organising his collectionof DVDs. He has 56 altogether.The ratio of comedy films toaction to horror is 2 : 7:5 PLEEAASSEE ANNSSWWEER I WILL GIVE BRAINLIEST AND 50 POINTS TO THE PERSON WHO ANSWERS FIRSTTT Which of the following methods uses the decay of atomic particles in an object to find its exact age? (3 points) A. Fossil dating B. Geologic dating C. Radioactive dating D. Relative dating The differences between civil and criminal cases is _____________________.Group of answer choicesCriminal cases involve violations of law.Civil cases are usually before a jury.In civil cases the state is the plaintiff.Criminal cases involves two or more persons. Prompt Read Changes on Farth and Changes in Life. Explain how changes in Earth's systems affect the growth of life on Earth. Use evidence from the text to support your answer 5. What percentage of energy generation isproduced by fossil fuels? sc.7.P.11.2to(A) 19.5%B) 33.2%66.9%D 86.4% 10.187 electric poles were fixed along a road at a regular interval of 20m. What was the totaldistance fixed with the poles in km? Sandra was trying to water the flowers with the hose, but even with the water turned up to full force she could not get it to reach the farthest flowers. Her sister told her to cover part of the end of the hose mouth with her thumb. When she did this, the water shot out farther. Why did putting her thumb over the end of the hose make a difference?A. The thinner stream of water could travel farther because it was lighter.B. Sandra added more energy to the water by making it swirl inside the hose.C. The same amount of energy in the water was forced through a smaller space.D. The warmth of Sandra's thumb increased the amount of energy in the water. Over half of the refugees seeking entrance to the United States in 2007 came from __________.A.Africa and AsiaB.Oceania and North AmericaC.Africa and North AmericaD.Oceania and AsiaPlease select the best answer from the choices provided.ABCD Intakes of ______ have been associated with reduced risk for age-related macular degeneration and cataracts. What is the value of x in the equation 6(x +11)= -300? What is the equation of the line with points represented in the table? What can yoy conclude about the line represented in the table? Select all that apply? Steam Workshop Downloader