Why is the software development life cycle significant?

A.
It guarantees that error-free software will be produced.

B.
It ensures that the team will complete the software within the projected time and budget.

C.
It provides a framework for planning the phases of production that software needs to go through.

D.
It provides the specifications for a prospective app or program.

Answers

Answer 1

The reason the software development life cycle is significant is simply because: C. it provides a framework for planning the phases of production that software needs to go through.

What is SDLC?

SDLC is an abbreviation for software development life cycle and it can be defined as a strategic methodology that defines the key steps, phases, or stages for the design, development and implementation of high quality software programs.

In Computer technology, there are seven (7) phases involved in the development of a software and these include the following;

PlanningAnalysisDesignDevelopment (coding)TestingDeploymentMaintenance

In conclusion, we can logically deduce that software development life cycle (SDLC) provides a software developer with the framework to plan the phases of production that a software must pass through.

Read more on software development here: brainly.com/question/26324021

#SPJ1


Related Questions

Who is Visiting Wolfieland? (8 points) You are the proud owner of Wolfieland, once the most popular amusement park in New York. But due to fierce competition from other parks, Wolfieland's revenues are starting to decline. You want to get a better idea of who your customers are, and so you start collecting age information about your customers each day. Complete the funcion age_dist, which takes a list of customer ages and returns a dictionary that counts how many customers in a given day fall into the age brackets 1-9, 10-19, 20-29, 30-39, ..., 70-79, 80 and up. Store the age demographics in a dictionary, in which the keys represent the age ranges, and the values represent the counts for those ranges. Specifically,• the key is mapped to the number of customers in the range 1-9 • the key 1 is mapped to the number of customers in the range 10-19 • the key 2 is mapped to the number of customers in the range 20-29 • the key 7 is mapped to the number of customers in the range 70-79 • the key 8 is mapped to the number of customers in the range 80 and up Do not create a key for an age range if the count for that age range is 0.

Answers

Wolfieland, once New York's most well-liked amusement park, is proudly owned by you. However, Wolfieland's sales are beginning to fall as a result of the intense competition from rival parks.

Possibly not permanently, but you never know, wolves are hibernating. However, you may read more about our fantastic two years on the site's reviews page. Additionally, keep an eye out for the current bands by Wolfie members Get Crucial, Xup, Fanfarlo, and Kasms!

On the radio, Wolfie! John Kennedy has aired our music on Xfm (104.9fm) at least twice already. This is his playlist. A few days before Christmas, Wolfie performed live on Resonance (104.4 fm) with Shimmy Rivers And And Canal. We even gave a brief performance of Wendy Wack a cappella.

Last month, Delia wrote about us in "Delia's Diary" in Artrocker magazine, and we received another mention in NME.

To know more about playlist click here:

https://brainly.com/question/15686223

#SPJ4

Malicious code that secretly watches your computer activity and sends the information over the internet.
Spyware can secretly capture your keystrokes (including passwords) and can compromise your identity.
Spyware

Answers

Spyware is generally understood to be harmful software intended to infiltrate your computer system, collect information about you, and send it to a third party against your will.

Legitimate software that tracks your data for business purposes like advertising is also referred to as spyware. Malware is computer software that has been installed without the user's permission and carries out evil tasks, such stealing passwords or cash. Malware can be found in many different ways, but the most popular is to scan the computer for dangerous programs or files. Any code in any component of a software system or script that is intended to have undesirable effects, compromise system security, or otherwise cause harm to a system is referred to as malicious code.

Learn more about system here-

https://brainly.com/question/14253652

#SPJ4

________ requires that a user prove his or her identity for each service invoked and, optionally, requires servers to prove their identity to clients. A. FIM B. Kerberos C. X.509 D. PKI

Answers

Option a is correct. Prior to the CA providing a certificate or certificates for an end entity, the end entity must first register or be certified in order to be recognized by the CA.

Authentication is the process of entering a system, while two-factor authentication is the process of entering a token to enter a system. Server identity and trust are established and verified using private keys, digital certificates, and trusted certificate authorities. Public key encryption method is used by SSL for authentication. A public key and a private key are generated for a server when using public key encryption. Unmistakably connected to this certificate is an integer value that is distinct within the CA (Certification Authority) that issued it. Identification of the algorithm that signed the certificate, along with any additional parameters.

Learn more about server here-

https://brainly.com/question/3211240

#SPJ4

Which is developed during the process of technological design?solutionexperimentconclusionsummary.

Answers

SOLUTION is the developed during the process of the said technological design.

What is the need of Technological design?

When there is a need to solve or find a solution to a specific or identified problem, a technological design is frequently used. The technological design process is frequently required in order to develop technologically driven products capable of solving a perceived problem.

The steps are as follows:

Identifying the problem at hand, conducting additional and thorough research on it, and proposing potential solutions from which the best approach is chosen. The solution is then modeled, the model is tested, and refinements are made based on the results of the test. Testing will have to be repeated as the model is refined before the final outcut is communicated.

To know more about Technological design, visit: https://brainly.com/question/18129233

#SPJ4

What color is typically used for coins in games? A. blue B. green C. orange D. yellow

Answers

Answer:

All i could find is Blue and green

For each of the following parts, write a single C++ statement that performs the indicatedtask. For each part, assume that all previous statements have been executed (e.g., whendoing part e, assume the statements you wrote for parts a through d have been executed).
a. Declare a pointer variable named cat that can point to a variable of type double.
b. Declare mouse to be a 5-element array of doubles.
c. Make the cat variable point to the last element of mouse.
d. Make the double pointed to by equal to 25, using the * operator.cat
e. Without using the cat pointer, and without using square brackets, set the fourth element (i.e., the one at position 3) of the mouse array to have the value 54.
f. Move the cat pointer back by three doubles.
g. Using square brackets, but without using the name mouse, set the third element (i.e., the one at position 2) of the mouse array to have the value 42.
h. Without using the * operator or the name mouse, but using square brackets, set the double pointed to by cat to have the value 27.
i. Using the operator in the initialization expression, declare a bool variable named band initialize it to true if the double pointed to by cat is equal to the double immediately following the double pointed to by cat, and false otherwise. Do not use the name mouse.
j. Using the ==named d and initialize it to true if cat points to the double at the start of the mouse array,operator in the initialization expression, declare a bool variable and false otherwise.

Answers

a= string*fp, b= char fish, c= fp=&fish, d= *fp= "salmon", e= *(fp-1)= "yellowtail", f= fp= fp-3, h= fp[2]= "tuna", i= if (fp==&fish[0] d=true, else d= false.

Like the variable declarations and expressions covered in earlier sections, a simple C++ statement is each of a program's individual instructions. They are executed in the same order that they appear in a program and always conclude with a semicolon (;).

Programs, however, are not constrained to a linear order of assertions. A program may repeat sections of code, make decisions, or split up while running. C++ offers flow control statements that serve to specify what needs to be done by our program, when it needs to be done, and under what conditions.

A generic (sub)statement is frequently a necessary component of the syntax of the flow control statements described in this section. This statement could either be a straightforward C++ statement.

To know more about C++ click here:

https://brainly.com/question/1516497

#SPJ4

You can use the Object Dependencies dialog box of the Management Studio to do all but one of the following. Which one is it?a.Review the stored procedures and views that depend on a specific tableb.Review the stored procedures and views that a specific table depends onc.Review the tables that a specific table depends ond.Review the tables that depend on a specific table

Answers

The one, it is to review the stored procedures and views that a specific table depends on. The correct option is b.

What is a dialog box?

A program can build a temporary window called a dialogue box to collect user input. Typically, dialogue boxes are used by applications to ask the user for further details on menu items.

A dialogue box is a tiny window that a program opens to ask the user for input. For instance, Word will open a dialogue box asking you to name the file and specify where to save it if you click the Save icon while the document hasn't yet been given a name.

Therefore, the correct option is b, review the stored procedures and views that a specific table depends on.

To learn more about dialog box, refer to the link:

https://brainly.com/question/28445405

#SPJ1

before continuing, look at the bits. what do you think is encoded? how different are the bits in different areas of the bitstring?

Answers

It is impossible to figure out what these bits mean unless a method for decoding them is developed. They could be an ASCII-encoded message, a Peerless Fabio Twins save file, or a portion of an image.

They could be any of these or others. Assuming they are ASCII, mapping each set of eight is simple; simply convert them from one encoding to another.

What is Encoding?

Encoding is the process of converting data into a format that is required for a variety of information processing needs, such as:

Compilation and execution of a programTransmission, storage, and compression/decompression of dataFile conversion is an example of application data processing.

Encoding can take two forms:

Encoding is the process of applying a specific code, such as letters, symbols, and numbers, to data in order to convert it into an equivalent cipher.Encoding in electronics refers to analog-to-digital conversion.

To learm more about Encoding, visit: https://brainly.com/question/27178394

#SPJ4

but no such file exists because of the typo in name. will an error be generated if the file is opened with the write mode?

Answers

Yes, an error will be generated if the file is opened with the write mode since the file does not exist.

The Consequences of Typos in File Names

Typos can have a wide range of consequences in any context, from minor inconveniences when submitting an email address to major disruptions in business operations. When it comes to file names, typos can be particularly problematic, as errors in the name of a file can lead to an inability to access the file or to data loss.

Typos in file names can occur in a variety of ways. It could be as simple as mistyping a single letter or as complex as transposing an entire word. In either instance, if the file name is incorrect, the file cannot be opened.

This is particularly problematic for files stored on a computer or other digital device, as the only way to access the file is by searching for it via the file name.

Learn more about Typos in File Names:

https://brainly.com/question/24242283

#SPJ4

bertie wants to show data labels inside a text bubble shape. which option can she click on after clicking on the arrow next to data labels under chart elements?

Answers

The option that can she click on after clicking on the arrow next to data labels under chart elements is data Callout. The correct option is A.

What is data callout?

Click Data Callout to display your data label inside a text bubble form. You can move data labels inside the data points or even outside the chart to make them easier to read.

Drag a data label to the desired location to move it. When created with Excel's drawing tools, callouts are graphic objects with a "connection" that can be positioned wherever you wish. This makes them ideal for pointing out the anomaly you wish to describe in your chart.

Therefore, the correct option is A, Data Callout.

To learn more about data callout, refer to the link:

https://brainly.com/question/11814913

#SPJ1

The question is incomplete. Your most probably complete question is given below:

Data Callout

data bars

Pie Chart

page layout view

The method addItUp(m, n) is intended to print the sum of the integers greater than or equal to m and less than or equal to n. For example, addItUp(2, 5) should return the value of 2 + 3 + 4 + 5.
/ missing precondition /
public static int addItUp(int m, int n)
{
int sum = 0;
for (int j = m; j <= n; j++)
{
sum += j;
}
return sum;
}
Which of the following is the most appropriate precondition for the method?

Answers

/* Precondition: n <= m * / is the most appropriate precondition for the method.

What is precondition?

Precondition is defined as a requirement or predicate that, in a formal specification, must always hold shortly before an action or before some code portion is executed. Precondition is frequently used negatively; for example, when world leaders gather to discuss a matter, they can demand that there be no preconditions.

Printing the sum of the integers more than or equal to m and less than or equal to n is what the method addItUp(m, n) is designed to do. For instance, the formula addItUp(2, 5) should produce the number 2 + 3 + 4 + 5.

Thus, /* Precondition: n <= m * / is the most appropriate precondition for the method.

To learn more about precondition, refer to the link below:

https://brainly.com/question/24131079

#SPJ1

Gray box approach is the most appropriate approach in testing web applications. Briefly explain the difference between gray box approach with respect to black box and white box testing.

Answers

Gray box testing is the combination of both black box and white box testing.

Explanation:

It combines the testing techniques of both to provide an efficient method of web application testing. The tester has access to some internal data or code, but does not have full access to the application or the source code. This allows the tester to focus on the functionality of the application from the user’s point of view, while still having access to some parts of the application. Black box testing is where the tester does not have any access to the internal code or structure of the application.

To know more about testing
https://brainly.com/question/27794277
#SPJ4

in Scratch, when programming a laser to move upward, what can you play around with to make the laser move faster or slower? A. the y-values B. the z-values C. the values in the enemy broadcast D. the forever block values

Answers

Answer:

Explanation:

To make it go faster, you could double it, to make it move 20 steps, or if that's too fast, change it to move 15 steps. For the repetition block, repeating 25 times is for 10 steps. For example, if you want it to go the same distance, just faster, you could make it 20 steps, which would be repeat 12.5 times, which is divide by 2.


What is a step in scratch?

A step is equal to a one-pixel length. The Default Valueis 10 and can be replaced by any number. The block actually uses Trigonometryto move in the proper direction, as this is how a computer handles it. The block was known as "forward ()" in Scratch 0.1before being renamed to "move () steps" in Scratch 0.3. Example Uses


Why learn how to code in scratch?

Learning how to code in Scratch is the perfect introduction to computer science, and will make learning other programming languages much more intuitive. This is the perfect article to start your journey into computer science, as movement is one of the easiest things to code in Scratch! What is Movement?

2. Demonstrate your knowledge of binary code: Write a three-digit number of your choice using
binary code. Show the "math" behind this number creation.

Answers

The three-digit number : 126

Binary code : 01111110

Here the detail

We can do the exponential thing to solve the binary code

Multiply the binary digit by two to the power of its place number, but we start from rigth to left and the first place of the power is 0 (zero)

Binary code = 0     1    1    1    1    1       1       0

places =          8th     ......           3rd   2nd   1st

The formula is

0 x 2^0 = 0

1 x 2^1   = 2

1 x 2^2  = 4

1 x 2^3  = 8

1 x 2^4  = 16

1 x 2^5  = 32

1 x 2^6  = 64

0 x 2^7  = 0

Then add all the result

= 0 + 2 + 4 + 8 + 16 + 32 + 64 + 0

= 126

Read more about the binary code here

https://brainly.com/question/28222245

#SPJ1

kevin formatted the values in a pivottable by selecting the values and then clicking the accounting number format button on the home tab. when he changed the layout of the pivottable, he lost the number formatting. which dialog box should he use instead?

Answers

The dialog box that he should use instead is the format Cells dialog box. The correct option is b.

What is the format cell dialog box?

To change the format of a single cell or a group of cells in the spreadsheet, use the Format Cells dialogue. The options for number, alignment, font, border, fill, and protection are found in the format cell dialogue box.

To change the formatting of cell numbers in Excel without changing the actual number, use the format cells function. We can modify the number, alignment, font style, border style, fill options, and protection with the aid of the format cells.

Therefore, the correct option is b. Format Cells dialog box.

To learn more about the format cell dialog box, refer to the link:

https://brainly.com/question/15975191

#SPJ1

The question is incomplete. Your most probably complete question is given below:

a. PivotTable Format dialog box

b. Format Cells dialog box

c. Value Field Settings dialog box

d. Value Properties dialog box

what is the running time of bfs if we represent its input graph by an adjacency matrix and modify the algorithm to handle this form of input?

Answers

Using adjacency matrix representation will change the time of scanning through neighbours from O(E) to O(V²).

Therefore, total running time becomes O(V² + V), that is, O(V²).

What is adjacency matrix?

An adjacency matrix, which is a square matrix used to represent a finite graph, is a tool in graph theory and computer science. If two sets of vertices in the graph are adjacent or not, it is indicated by the matrix's elements.

A (0,1)-matrix with zeros on its diagonal makes up the adjacency matrix in the special case of a finite simple graph. The adjacency matrix is symmetric if the graph is undirected, which means that every edge is directed in only one direction. In spectral graph theory, it is investigated how a graph's adjacency matrix's eigenvalues and eigenvectors relate to one another.

It is important to distinguish a graph's adjacency matrix from its degree matrix and incidence matrix, which both represent matrices differently and contain elements that indicate whether or not vertex-edge pairs are incident.

Learn more about adjacency matrix

https://brainly.com/question/29538028

#SPJ1

to set a pointer named testptr to point to the first element in the tests array, you would code it like this: testptr

Answers

The solution can be expressed as *(a + 3) in pointer notation is equivalent to a[3] in C.

The addresses of dynamically allocated arrays and arrays supplied as parameters to functions are stored using pointers. We must add 1 to the array's first row in order to access the second element: (Matrix[0] plus 1) The address of the first member of the array's first row is returned by the expression matrix[0]. This address is the location of an integer array. The components in this program are kept in the integer array data[]. The array's components are then accessed using the pointer notation. By the way, data[0] and &data[0] are equivalent to data and *data, respectively.

Learn more about address here-

https://brainly.com/question/16011753

#SPJ4

after lightning caused an electrical power surge and damaged his computer, damon no longer turns his computer on during thunderstorms. this change in damon's behavior is the result of:

Answers

This change in Damon's behavior is the result of positive reinforcement. Positive reinforcement occurs because of the awareness about the hazardous things that you don't want it to reoccur in your life.

Positive reinforcement can be described as behavior that leads you to positive things. Positive reinforcement means the introduction of a desired or pleasurable stimulus after a behavior. The desired stimulus reinforces the behavior, making it more likely that the behavior will occur again. Positive reinforcement happens because you've experienced things that made you sad and you don't want that to happen in your life again. Positive reinforcement can also be said as a way to prevent bad things from happening.

Learn more about positive reinforcement, here https://brainly.com/question/14838159

#SPJ4

denise works for a company where the it department charges her department for actual usage of a sharepoint server, determining how often users log in and how much storage space her department consumes. what type of it funding model is the company deploying?

Answers

Chargeback. The return of credit card payments used to make a purchase to the customer is referred to as a chargeback or reversal.

What is chargeback?A chargeback is the return of funds to the original payer of a transaction, particularly one involving a credit card. The payer is typically a consumer. A chargeback cancels a financial transaction from a customer's bank account, credit limit, or credit card.The average chargeback to transaction ratio for all industries is 0.60%. This means that there will be chargebacks on 6 out of every 1000 purchases. Chargeback rates in the retail and travel sectors are around 0.50%. Chargeback ratios for retailers who sell tangible things are typically at or below 0.5%.Criminal fraud, friendly fraud, and merchant error are the three categories under which chargebacks can be categorised. Banks will treat each of them differently because they each come from unique circumstances.

To learn more about chargeback refer :

https://brainly.com/question/3832103

#SPJ4

Which network layer protocol is used if a host without an ip address tries to obtain an ip address.

Answers

The network layer protocol, which is used if a host without an IP address tries to obtain an IP address, is The Dynamic Host Configuration Protocol (DHCP).

Since, it is a client/server protocol that automatically provides an Internet Protocol (IP) host with its IP address and other related configuration information, such as subnet mask and default gateway.

Advantages of the dynamic host configuration protocol

DHCP can be complex to configure and maintain: DHCP requires a certain level of technical expertise to set up and maintain, including knowledge of IP addressing, subnetting, and DNS.DHCP requires additional network resources: requires a DHCP server and additional network resources to function properly.DHCP can be vulnerable to security threats: DHCP can be a security risk if not configured properly, as it can allow malicious users to gain access to your network.DHCP can cause IP address conflicts If two devices on a network are assigned the same IP address, it can cause conflicts and network outages.

Learn more about The Dynamic Host Configuration Protocol:

https://brainly.com/question/14234787

#SPJ4

____ computing means the organization owns their it infrastructure and maintains it in their data centers.

Answers

Cloud computing means the organization owns its IT infrastructure and maintains it in its data centers.

Cloud computing refers to the delivery of computing services, including servers, databases, networking, software, storage, analytics, and intelligence, over the Internet ('the cloud') to offer flexible resources, faster innovation, and economies of scale.  In cloud computing infrastructure companies, rather than owning their own data centers or IT infrastructure, can rent access to anything (such as storage, applications, etc.) from a cloud service provider.

One advantage of using cloud-computing services is that companies can avoid the upfront cost and complexity of owning and maintaining their own IT infrastructure, and rather simply pay for what they use when they use it.

You can learn more about cloud computing at

https://brainly.com/question/26972068

#SPJ4

an employee compiled sales data for a company once each month. the scatter plot below shows the sales (in multiples of $1000) for the company over time (in months). the equation represents the linear model for this data. y

Answers

The following scatter plot displays the company's sales over time (in multiples of $1000). (in months).

Consequently, $51,000 in sales were made by the company after 40 months. Click the following link to learn more about linear equations.

The following scatter plot displays the company's sales over time (in multiples of $1000). (in months). The linear model for these data is represented by the equation. The company's sale after 40 months is determined by the formula y = 0.94x + 12.5: y = 50.1 x 1000y = $ 50,100. When the independent variable, x, is 0, the amount when data collection first started is that amount. Also known as the y-intercept, this.

Learn more about variable here-

https://brainly.com/question/13375207

#SPJ4

what term is used to describe the average amount of time that will pass for a device before a failure is expected to occur?

Answers

Answer:

MTBF

Explanation:

means time between failure,is the average time between repairable failures of a technology product.

you are using a device that does not have onedrive installed. you need to get access to some of the files in your onedrive account. which option would you use?

Answers

Answer:

If you can sign in to OneDrive online, but not on your computer, check for updates. If your computer is up to date, reset OneDrive. Resetting Microsoft OneDrive can sometimes resolve sync issues and resets all OneDrive settings. OneDrive will perform a full sync after the reset.

Explanation:

This method takes a list of strings called list. Implement it so that it returns the total number of vowels ('a', 'e', 'i', 'o', and 'u') in all strings in the list.For example, given ["ear", "prune", "plot", "try"], it should return 5.

Answers

In Java, a string is a series of characters, and char is a single digit used to store variables. In Java, the char takes up two bytes. BufferedReader and InputStreamReader are used in Java to read user input from the keyboard. Then readLine() is called to read a line. In Java, the java.io package provides input and output via data streams, serialization, and the file system.

Coding Part:

/*

Iterative Java program for counting the number of vowels in a string

*/

import java.io.*;

public class vowel {

   public static void main(String[] args)

       throws IOException

   {

       String str = "Brainly.com";

       str = str.toLowerCase();

       int count = 0;

       for (int i_01 = 0; i_01 < str.length(); i_01++) {

           // check if char[i] is vowel

           if (str.charAt(i) == 'a' || str.charAt(i) == 'e'

               || str.charAt(i) == 'i'

               || str.charAt(i) == 'o'

               || str.charAt(i) == 'u') {

               // char[i]

               count++;

           }

       }

       // show the total number of vowels in the string

       System.out.println(

           "Total number of vowels in the given string are: " + count);

   }

}

To learn more about Iteration in Java, visit: https://brainly.com/question/14523631

#SPJ4

which compression model scans the input data stream continuously, updating the encoding rules when the probability for the symbols changes. the receiver performs the same process, eliminating the need for the transmitter to send the encoding rules to the receiver.

Answers

The compression model that scans the input data stream continuously, updating the encoding rules when the probability for the symbols changes. the receiver performs the same process, eliminating the need for the transmitter to send the encoding rules to the receiver is unique static.

What does the term "static variable" mean?

When a variable or method is marked as static, the class, rather than a particular instance, is where it belongs. This means that regardless of how many class objects you generate or whether you don't create any at all, there is only ever one instance oaf a static member. All objects will share it.

Therefore, one can say that In recent years, model compression research has been one that has been pursued intensively with the aim of deploying cutting-edge deep networks in low-power and resource-constrained devices without appreciable accuracy loss.

Learn more about compression model from

https://brainly.com/question/20525296
#SPJ1

Write a program that asks for the names of three runners and the time it took each of them to finish a race. The program should display who came in first, second, and third place. Think about how many test cases are needed to verify that your problem works correctly. (That is, how many different finish orders are possible?) Input Validation: Only allow the program to accept positive numbers for the times.

Answers

Sort list in C++ and determines the player's position at the end of the race. Output image of the algorithm is attached.

C++ Code

#include<iostream>

using namespace std;

int main() {

// Define variables string frstn, thrdn, scondn;

int frstp, scondp, thrdp, x ;

string nam[3];

int pos[3];

// Entry data

do {

 for (x=1;x<=3;x++) {

  cout << "Runner " << x << endl;

  cout << "Name: ";

  cin >> nam[x-1];

  cout << "Time it took to finish the race (min): ";

  do {

   cin >> pos[x-1];

  } while (pos[x-1]<=0);

 }

} while (!((pos[2]!=pos[1]) && (pos[2]!=pos[0]) && (pos[1]!=pos[0])));

// Identify who came in first position

if ((pos[0]<pos[1]) && (pos[0]<pos[2])) {

 frstn = nam[0];

 frstp = pos[0];

}

if ((pos[1]<pos[2]) && (pos[1]<pos[0])) {

 frstn = nam[1];

 frstp = pos[1];

}

if ((pos[2]<pos[1]) && (pos[2]<pos[0])) {

 frstn = nam[2];

 frstp = pos[2];

}

// Identify who came in last position

if ((pos[0]>pos[1]) && (pos[0]>pos[2])) {

 thrdn = nam[0];

 thrdp = pos[0];

}

if ((pos[1]>pos[2]) && (pos[1]>pos[0])) {

 thrdn = nam[1];

 thrdp = pos[1];

}

if ((pos[2]>pos[1]) && (pos[2]>pos[0])) {

 thrdn = nam[2];

 thrdp = pos[2];

}

// Identify who came in second position

for (x=1;x<=3;x++) {

 if ((pos[x-1]!=frstp) && (pos[x-1]!=thrdp)) {

  scondn = nam[x-1];

 }

}

// Output

cout << "First position: " << frstn << endl;

cout << "Second position:: " << scondn << endl;

cout << "Third position: " << thrdn << endl;

return 0;

}

To learn more about sort lists in c++ see: https://brainly.com/question/15834729

#SPJ4

pille runs a small business. she wants to create and send invoices to her customers. which productivity software should pille use?

Answers

Since Pille runs a small business. she wants to create and send invoices to her customers. The type of productivity software that Pille use is option D: openOffice Calc.

What does this productivity program do?

Applications are known to be used to create information are referred to as productivity software (sometimes known as personal productivity software or office productivity software) (such as that of documents, presentations, worksheets, databases, charts, graphs, digital paintings, electronic music and digital video).

Therefore, in regards to the above question, Spreadsheets are said to be included in the OpenOffice software suite as part of OpenOffice Calc. With roughly identical capabilities, Calc is comparable to Microsoft Excel. Spreadsheets in the Microsoft Excel file format can be opened and saved with the use of Calc and thus will Help Pille.

Learn more about openOffice Calc from

https://brainly.com/question/29309425
#SPJ1

25.3% complete question when considering application interaction, an example of programmatic access can be best defined as what?

Answers

Programmatic access is a means of interacting with a computer system or application using programming commands rather than a graphical user interface (GUI).

What is the GUI?

A user interface for a graphical fidelity operating system that controls system interaction through the use of menus, icons, and a pointer (to click on an icon or open a menu). The Xerox-developed GUI gained popularity in the 1980s thanks to the Apple Macintosh. Microsoft Windows, the company's graphical user interface (GUI), has supplanted MS-DOS as the standard interface for desktop computers (PCs), which at the time required the client to type particular commands.

To know more about GUI
https://brainly.com/question/14758410
#SPJ4

question 2 according to the mccandless method, what is the most effective way to first present a data visualization to an audience?

Answers

The McCandless Method states that introducing the graphic by name is the most effective way to introduce a data visualization to an audience.

What is Data visualization?

The practice of conversion of information into the visual context, such as a map or a graph, to make data easier to understand and comprehend and extract useful insights from.

The primary goal of data visualization is to facilitate the identification of patterns, trends, and outliers in large data sets. The term like information visualization, information graphics and statistical graphics are oftenly frequently used interchangeably.

Data visualization is one of the important steps in the data science process which states that data must be visualized after it has been collected, processed, and modeled in order for conclusions to be drawn.

Data visualization is also part of the larger data presentation architecture (DPA) discipline, which seeks to identify, locate, manipulate, format, and deliver data in the most efficient manner possible.

To knoow more about Data visualization, visit: https://brainly.com/question/10028221

#SPJ4

Other Questions
I am always getting cold,------------- is why I often have a handkercheif with me. What does dubois conclude is the cause of economic progress? people must be given political rights, civil rights, and an education. people must resolve their discrepancies with each other first and foremost. by improving industry, people can accumulate more wealth, which drives economic progress. people must be ready to say no when necessary. SOLVE FOR FF10f+10=9fF= 2/9-2/15 in fraction form? when is it important to wear safety goggles in the laboratory? group of answer choices when using liquid chemicals in the lab. when i start pouring or transferring chemicals at the lab bench. any time there are chemicals or laboratory equipment present in the lab. only when my lab ta tells me to. as soon as my lab partners put on their goggles. flag question: question 2 Geometry.....Solve for each variable. Show your work and explain in paragraph form how you solved each problem. Base Angles TheoremConverse to Base Angles TheoremCorollaryConverse to the corollarySum of Interior AnglesExterior angles 22. Which group is not an ancient civilization of the Americas and therefore would not haveparticipated in any part of the Columbian Exchange?A. MayaB. IncaC. AztecD. Chinese write the reciprocal of 3 This is a random question A park ranger claims that the average number of acres in his State Park is less than 2000 acres. A random sample of five parks is selected and the number of acres is shown below:959, 1187, 493, 6249, 541Assume the variable must be normally distributed, at [tex]\alpha =0.01[/tex] is there enough evidence to support the claim? To draw your conclusion, state the hypotheses and identify the claim, find the critical value(s), label the acceptance and rejection region, calculate the test value and summarize the results. Which pollutant would you expect to be present in low concentrations during morning rush hour in a large city like chicago?. if we knew that % unemployed for a city was 6.0 what would we predict the murders per million inhabitants per year should be? If you lose your Florida driver license and need a replacement license, where do you apply for it? 3.4 If the economy is experiencing high rates of inflation due to a new housing bubble, what effects would an expansionary monetary policy have on the economy?. Band: Musician asTeam: FansStage: DancersFamily: SistersCast: ActorsCircus: Jugglers Access the FASB Accounting Standards Codification at the FASB website (asc.fasb.org). Determine the specific citation for each of the following items: Required: 1. The calculation of the weighted average number of shares for basic earnings per share purposes. 2. The alternative formats permissible for reporting comprehensive income. 3. The classifications of cash flows required in the statement of cash flows. (Hint: XXX-XX-XX-X)Requirement Topic Subtopic Section Paragraph123 Question 1 of 10 Which conclusion to this story is most logical? Katrina had entered the school poetry competition. Even though she was nervous for the upcoming assembly, she was excited to read her poetry in front of the entire student body. On the day of the competition, she got a little more nervous than she was expecting. She walked up to the podium with her poem in her hand. A. Katrina woke up and realized it was all a dream. B. Katrina broke down in tears and cried for five minutes onstage. C. Katrina stumbled at first but ended up impressing the audience. D. Katrina walked offstage and transferred to a new school because she was so embarrassed. the genome found in the nucleus of eukaryotic species is usually organized in what way? multiple choice question. Mark and some friends went to the movies. They bought tickets to the movies for $9 each and spent $22 at the concession stands. If they spent a total of $67, how many friends went to the movies with Mark? the article how unethical are you? discusses four distinct biases that managers may have that can lead to unethical decisions without them even realizing it. explain each bias. g describe how the line best fit and the correlation coefficient can be used to determine the correlation between