11
Select the correct answer from each drop-down menu.
What aspect do you need to keep in mind when you add images in a Word document?
Choose the appropriate
of
an image that supports the text. You should also make sure that the image is
Reset
Next

Answers

Answer 1

What aspect do you need to keep in mind when you add images in a Word document

Choose the appropriate ✓ context of an image that supports the text. You should also make sure that the image is

Reset

Next

To know more about Word document refer here

https://brainly.com/question/30490919#

#SPJ11


Related Questions

21
Select the correct answer.
Which task occurs just before the maintenance phase?
O A reviewing prerequisites
B.
final reviewing and deploying the product
C. training end users to operate the product
D.
site surveying
O E reviewing all manuals and plans
Edmentum/Plato

Answers

The task, final reviewing and deploying the product occurs just before the maintenance phase. The correct option is B.

The task that takes place just before the maintenance phase is the last review and deployment of the product.

At this step, the software or product is thoroughly examined to make sure it complies with all the prerequisites and quality standards. Before the product is deployed or made available to end users, any outstanding problems or faults are addressed and fixed.

Final testing, user acceptability testing, and preparing the product for deployment in the production environment are additional tasks included in this phase.

The product can be made available for usage by the intended end users after the final review is finished and it is determined that it is ready.

Thus, the correct option is B.

For more details regarding testing, visit:

https://brainly.com/question/31941684

#SPJ1

Select the correct answer from each drop-down menu.
Which two components help input data in a computer and select options from the screen, respectively?
✓inputs data into computers in the form of text, numbers, and commands. However, a
commands from the screen.
A
Reset
Next
✓selects options and

Answers

Which two components help input data in a computer and select options from the screen, respectively?

✓ Keyboard inputs data into computers in the form of text, numbers, and commands. However, a

✓ Mouse selects options and commands from the screen.

A

Reset

Next

To know more about input data refer here

https://brainly.com/question/30256586#

#SPJ11

XYZ is a well-renowned company that pays its salespeople on a commission basis. The salespeople each receive 700 PKR per week plus 9% of their gross sales for that week. For example, a salesperson who sells 4000 PKR worth of chemicals in a week receives 700 plus 9% of 5000 PKR or a total of 1060 PKR. Develop a C++ program that uses a Repetitive Structure (while, for, do-while) to manipulate each salesperson’s gross sales for the week and calculate and displays that salesperson’s earnings.

Answers

Answer:

#include<iostream>

#include<conio.h>

using namespace std;

float calculateGross(float sale)

{

return (sale/100*9) + 700;

}

main()

{

float sale[3] = { 5000,7000,9000}, Totalsale =0;

for(int i=0; i<=2; i++)

{

cout<<"Sales Person "<<i+1<<" Gross Earnings: "<<calculateGross(sale[i])<<" PKR\n";

Totalsale += calculateGross(sale[i]);

}

cout<<"Total Gross Sales Earnings for week: "<<Totalsale<<" PKR\n";

return 0;

}

Design two classes named Employee and PaySheet to represent employee and PaySheet data as follows: For the Employee class, the data fields are: int empNo; String name; double payRatePerHour, PaySheet[] PaySheet for four weeks (1 month), and Two other data fields of your choice. For the PaySheet class, the data fields are: String weekEndingDate; integer Array of size=5 for the five working days. Entries in this array will be integers from 0-8 where 0 means that the employee did not work that day and a value from 1 to 480 means the number of hours the employee worked in that day. All data fields should be declared as private, and associated getters and setters should be declared in each class. Create a driver class called Main, whose main method instantiates array of Employee objects and write the following methods: 1. A Method called printInfo that receives an array of Employees and prints all information about working days that looks like the following: Emp NO. Week Total Days/hours weekly Payment 1 1 1 2 2 1 2 3 1 2 4/32 5/37 3/12 1/8 3/15 400 500 300 150 450 2. Method called print WarnedEmployees that receives an array of Employees and prints the name of the employee who has a warning. An employee is warned if he is absent for two or more days in two consecutive weeks. 3. A method that receives an array of Objects and sorts unwarned Employees based on TotalPayment (in all weeks) method header must be: public static void sortEmps (Object[] o)​

Answers

You may quickly calculate the wage using the ready-to-use wage salary Sheet template for Excel, Sheets, OpenOffice Calc, and Apple Numbers.

Thus, This payroll document allows you to enter payroll information for many employees as well as a salary slip that is generated in accordance with employment laws in India and contains provident fund and employee allowances.

A salary sheet is a document that contains all the information regarding the payment due to an employee for work completed during a specific time period. It also includes information on things like the employees' base pay, bonuses, deductions, overtime, etc.

The HR document that businesses use to determine employee compensation is the payroll or salary sheet.

Thus, You may quickly calculate the wage using the ready-to-use wage salary Sheet template for Excel, Sheets, OpenOffice Calc, and Apple Numbers.

Learn more about Salary sheet, refer to the link:

https://brainly.com/question/15014451

#SPJ1

There are various evaluation methods. Do you think accuracy metrics are sufficient to evaluate classification results? Explain why

Answers

Accuracy metrics unique concede possibility not answer to evaluate categorization results efficiently. While veracity is a usually secondhand rhythmical to measure categorization performance, it has sure restraints that need expected deliberate.

What are evaluation methods?

Imbalanced Datasets: Accuracy maybe deceptive when handling unstable datasets, where the number of instances indifferent classes is considerably various.

In specific cases, a classifier that absolutely thinks the plurality class for all instances can achieve a extreme veracity, but it abandons to capture the accomplishment on the youth class, that maybe more important.

Learn more about   evaluation methods from

https://brainly.com/question/25907410

#SPJ1

Can someone help me out by coding this c into HLA(High Level Assembly)language. I am having so difficulty writting in HLA. That would be appreciated.
program crazy_8s;
#include ("stdlib.hhf");

static
num1: int16;
num2: int16;
num3: int16;
tens: int16;
eight_found: boolean;

begin crazy_8s;

eight_found := false;

while (1)
{
stdout.put("Gimme a number: ");
stdin.get(num1);

tens := num1 / 10 * 10;

if (tens == 8)
{
stdout.put("One of them ends in eight!");
eight_found := true;
break;
}

stdout.put("Gimme a number: ");
stdin.get(num2);

tens := num2 / 10 * 10;

if (tens == 8)
{
stdout.put("One of them ends in eight!");
eight_found := true;
break;
}

stdout.put("Gimme a number: ");
stdin.get(num3);

tens := num3 / 10 * 10;

if (tens == 8)
{
stdout.put("One of them ends in eight!");
eight_found := true;
break;
}

if (!eight_found)
{
stdout.put("Sorry Charlie! You lose the game!");
break;
}
}

end crazy_8s;

Answers

Below is the provided C code translated into HLA (High Level Assembly) language:

program crazy_8s;

#include ("stdlib.hhf")

static

num1: int16;

num2: int16;

num3: int16;

tens: int16;

eight_found: boolean;

begin crazy_8s;

   eight_found := false;

   while (1) {

       stdout.put("Gimme a number: ");

       stdin.gets(num1);

       tens := num1 div 10 * 10;

       if (tens = 8) then

           stdout.put("One of them ends in eight!")

           eight_found := true;

           break;

       endif

       stdout.put("Gimme a number: ");

       stdin.gets(num2);

       tens := num2 div 10 * 10;

       if (tens = 8) then

           stdout.put("One of them ends in eight!")

           eight_found := true;

           break;

       endif

       stdout.put("Gimme a number: ");

       stdin.gets(num3);

       tens := num3 div 10 * 10;

       if (tens = 8) then

           stdout.put("One of them ends in eight!")

           eight_found := true;

           break;

       endif

Thus, this can be the code asked.

For more details regarding HLA, visit:

https://brainly.com/question/13034479

#SPJ1

what is your research study all about?

Answers

One could say, ""Research studies are conducted to discover new information or to answer a question about how we learn, behave, and function in order to benefit society."

What is research?

"Creative and systematic work undertaken to increase the stock of knowledge" is what research is. It entails gathering, organizing, and analyzing information to get a better knowledge of a subject, with a special focus on mitigating sources of bias and inaccuracy.

Scientific study is vital because it enables us to comprehend how things function. Furthermore, it advances numerous fields of study including as biology, chemistry, psychology, medicine, and others. Furthermore, scientific research aids in the resolution of both present and potential future issues.

Learn more about research at:

https://brainly.com/question/968894

#SPJ1

Full Question:

Although part of your question is missing, you might be referring to this full question:

How do you respond to the question "what is your research study all about?"

Juliet grew up in a small town with limited access to the internet, so she knew how challenging that was. After receiving an email about an organization needing computer programming tutors, Juliet decided to volunteer for the organization, which provides technology for classrooms. Based on this paragraph, what factors can influence a person to donate? Choose two answers.

Answers

Answer:

Based on this paragraph, two factors that can influence a person to donate are:

1. Personal experience or empathy: Juliet's experience growing up in a small town with limited access to the internet may have influenced her decision to volunteer for an organization that provides technology for classrooms.

2. Receiving an email or other form of communication: Juliet's decision to volunteer was based on receiving an email about the organization needing computer programming tutors, which suggests that communication can be a factor in motivating people to donate or volunteer.

Explanation:

Based on this paragraph, two factors that can influence a person to donate are:

1. Personal experience or empathy: Juliet's experience growing up in a small town with limited access to the internet may have influenced her decision to volunteer for an organization that provides technology for classrooms.

2. Receiving an email or other form of communication: Juliet's decision to volunteer was based on receiving an email about the organization needing computer programming tutors, which suggests that communication can be a factor in motivating people to donate or volunteer.

Which of the following queries can have a fully Meets result?

Answers

Answer: we need the awnser key

Explanation:

Which of the following accurately describes a user persona? Select one.

Question 6 options:

A user persona is a story which explains how the user accomplishes a task when using a product.


A user persona should be based only on real research, not on the designer’s assumptions.


A user persona should include a lot of personal information and humor.


A user persona is a representation of a particular audience segment for a product or a service that you are designing.

Answers

A user persona is a fictionalized version of your ideal or present consumer. In order to boost your product marketing, personas can be formed by speaking with people and segmenting them according to various demographic and psychographic data and user.

Thus, User personas are very helpful in helping a business expand and improve because they reveal the various ways customers look for, purchase, and utilize products.

This allows you to concentrate your efforts on making the user experience better for actual customers and use cases.

Smallpdf made very broad assumptions about its users, and there were no obvious connections between a person's occupation and the features they were utilizing.

The team began a study initiative to determine their primary user demographics and their aims, even though they did not consider this to be "creating personas," which ultimately helped them better understand their users and improve their solutions.

Thus, A user persona is a fictionalized version of your ideal or present consumer. In order to boost your product marketing, personas can be formed by speaking with people and segmenting them according to various demographic and psychographic data and user.

Learn more about User persona, refer to the link:

https://brainly.com/question/28236904

#SPJ1

An organization that has fewer than ten employees all working in the same building will probably have this type of network. LAN WAN DAN MAN

Answers

An organization with fewer than ten employees, all working in the same building, will most likely have a Local Area Network (LAN).

A LAN is a network that connects computers, servers, printers, and other devices within a limited geographical area, such as a building or a campus. In this case, since all the employees are working in the same building, it makes sense to have a LAN to facilitate communication and resource sharing among them.

A LAN typically utilizes Ethernet cables or Wi-Fi connections to interconnect the devices within the network. It may be set up using a router or a switch to manage the network traffic. A LAN allows for fast and reliable communication, file sharing, and access to shared resources, such as printers or shared storage devices.

On the other hand, WAN (Wide Area Network) is a network that covers a large geographical area, typically connecting multiple LANs or remote locations. Since the organization in question has all its employees in the same building, a WAN is not necessary.

As for DAN (Desk Area Network) and MAN (Metropolitan Area Network), these are less commonly used network types. DAN refers to a network that connects devices on a desk or workstation, typically using technologies like USB or Thunderbolt. MAN, on the other hand, connects devices over a larger geographical area, such as a city. These network types are not typically used for small organizations with fewer than ten employees.

Therefore, in the given scenario, a LAN would be the most appropriate network type.

Answer:

Local area Network (LAN)

Explanation:

Local area Network (LAN)

Your organization sometimes needs to securely share information with three clients organizations. What will you use so your clients get partial access to resources on your organization’s network?

Answers

Answer:

Personnellement j'utiliserai un logiciel qui permet de paramétrer la limite d'accès aux organisations sur des ressources partagées.

Explanation:

Complete the code to change the label to black text on a yellow background. w = tk.Label(root, text="Movies", ="yellow", ="black")

Answers

Answer:

To change the label to black text on a yellow background, you need to specify the foreground and background colors using the fg and bg attributes, respectively. Here's the updated code:

w = tk.Label(root, text="Movies", fg="black", bg="yellow")

Other Questions
Given the data below, compute the standard deviation for Stock B. Enter your answer in percentages rounded off to two decimal points. Do not enter % in the answer box.EventProbabilityReturnsPessimistic25%7%Most Likely50%15%Optimistic25%23% why does the third-party payment system increase healthcare costs when a method does not modify the object on which it is invoked it is called A special tax that is applied to imported products which are also produced domestically is:Group of answer choicesnon-tariff barriersimport quotasrevenue tariffprotective tariff The majority opinion in the Simmons case listed three significant differences between adults and juveniles. They were:a.Juveniles are more vulnerable to peer pressureb.Juveniles have less developed personality traitsc.Juveniles lack the intellectual and emotional maturity of adultsd.All of the above identify three reasons why there may be ethical leadership failures and explain why failed leadership occurs. an opinion based on personal preferences and value judgments is called in the past year, 13% of business have eliminated jobs. if five businesses are selected at random, what is the probability that at least three have eliminated jobs during the last year? how did joint stock companies help colonize north america find the node voltage v1 .express your answer to three significant figures and include the appropriate units. Identify the three activities best suited to email marketing.a. Newsletters, alerts and reminders, lead generation b. Promotions and discounts, newsletters, alerts and reminders c. Newsletters, interstitials, promotions and discounts Help... Why should you review the details in your written report and prioritize the ones you will use in your oral report?You may find that some of the details in your written report were not accurate enough for a speech.Listeners do not want to listen to you speak for longer than 5 minutes because your oral report would become too long and boring.Some kinds of details are easier to write about than they are to talk about.You may not have time to describe or explain all of the details in your written report without rushing. [(3/4) is to -6 / (3/4) is to 3]is to x = (3/4) is to -9 powerpoint ____ text that exceeds the width of the placeholder 50. Write the given expression as the sine of an angle. sin 105cos 35 + sin 35 cos 105 a. sin(-70) b. sin(140) (350) d. sin(70) e. sin(105) Indicate if each of the polymers described below would be expected to be an elastomer, a thermoset (nonelastomer), or a thermoplastic polymer at room temperature. A random and lightly crosslinked copolymer that has a glass-transition temperature of -40C. A branched and isotactic polypropylene that has a glass-transition temperature of -10C. A heavily crosslinked polyethylene that has a glass-transition temperature of 0C. Linear polyvinyl chloride that has a glass-transition temperature of 100C. The best line is the Least Squares Line because it has the largest sum of squares error (SSE) A. True B. False A manufacturer knows that their items have a lengths that are skewed right, with a mean of 12.6 inches, and standard deviation of 0.6 inches. If 37 items are chosen at random, what is the probability that their mean length is greater than 12.3 inches? (Round answer to four decimal places) create a toowindy variable inside aq, which is a logical variable that is true if wind is greater than 10, and false otherwise. the venn diagram below shows the preferred location for the school field trip of 130 students. the venn diagram shows that 50 students prefer no places, 40 students prefer zoo, 20 students prefer water park, and 20 students prefer both zoo and water park. if a student is chosen at random, what is the probability that the student prefers the zoo or the water park? a. b. c. d.