If a client must wait too long for software that works, he might attempt to add requests for more and more features to be added to the program. This is known as ________.

Answers

Answer 1

Answer:

scope creep

Explanation:


Related Questions

Among the following, which is the best protection against ransomware?
Windows File History
Carbonite
Keylogger software
Authy by Twilio

Answers

Answer:

A

Explanation:

windows file history

Why do you think there is a difference in results between search engines ?

Answers

Answer:

Explanation:

Search Engine Optimization (SEO) was created. These businesses help websites improve their ranking by getting a website linked to other sites, using better keywords to describe the site and use in the site’s content, leveraging social media promotions, reWhat this means is that even the “unpaid for” search results you see probably got there because companies or organizations spent a great deal of money to get their website listed at the top. designing websites and more.

Why is being a meteorologist an important career?

Answers

Answer:

Most people who get into meteorology do so for the love of all things weather and climate, not for the money. Diverse skills and a willingness to seek a variety of weather and climate related jobs ensure a long, fulfilling career.

Explanation:

Weather and climate is unpredictable, so you got to learn the way the weather shifts into the unexpected, so then you'll know the state of the weather, and climate is for when your traveling around the world, you need to know the climate, and the elevation, especially if your in Colorado Mountains region and The Front Range, cuz they are a mile up. And if the weather shifts, and you don't know what weather your in, and it might be hail, and your going outside to play some basketball or whatever, and then BAM hail starts falling and hurts you. And if you don't know the climate, your practically saying you need trouble. It might be a dry climate, or a rainy climate. Meteorology is important for even traveling and weather shifts.

what we can't do in MS Paint?​

Answers

Answer:

I don't know what you can't do but I know you can:

- Create a Gradient Color Effect

- Undo/Redo

- Transparent Background Selection

How desktop case or chassis designed?, material and steps?​

Answers

They may require things such as plastic cut outs and glass depending if you want to be able to have a window to look into the pc. Some cases are 3D Printed although they have to be joined by screws at the end due to the fact that one whole print can take over a week and then it has to be well doesn't but looks better when sanded.

Which of the following items are present in the function header?

A. function name and parameter (variable) list

B. parameter (variable) list

C. return value

D. function name

Answers

Where is the function header you speak of ?
Variable list. Variables always come first

What happens after the POST?

Answers

After the POST, the computer is ready for user interaction. Users can launch applications, access files, browse the internet, and perform various tasks depending on the capabilities of the operating system and the installed software.

After the POST (Power-On Self-Test) is completed during a computer's startup process, several important events take place to initialize the system and prepare it for operation. Here are some key steps that occur after the POST:

1. Bootloader Execution: The computer's BIOS (Basic Input/Output System) hands over control to the bootloader. The bootloader's primary task is to locate the operating system's kernel and initiate its loading.

2. Operating System Initialization: Once the bootloader locates the kernel, it loads it into memory. The kernel is the core component of the operating system and is responsible for managing hardware resources and providing essential services.

The kernel initializes drivers, sets up memory management, and starts essential system processes.

3. Device Detection and Configuration: The operating system identifies connected hardware devices, such as hard drives, graphics cards, and peripherals.

It loads the necessary device drivers to enable communication and proper functioning of these devices.

4. User Login: If the system is set up for user authentication, the operating system prompts the user to log in. This step ensures that only authorized individuals can access the system.

5. Graphical User Interface (GUI) Initialization: The operating system launches the GUI environment if one is available. This includes loading the necessary components for desktop icons, taskbars, and other graphical elements.

6. Background Processes and Services: The operating system starts various background processes and services that are essential for system stability and functionality.

These processes handle tasks such as network connectivity, system updates, and security.

For more such questions on POST,click on

https://brainly.com/question/30505572

#SPJ8

problem description IT​

Answers

In IT, a problem description refers to a clear and concise explanation of an issue or challenge that needs to be resolved within a technology system or application.

How is this so?

It involves providing relevant details about the symptoms, impact, and context of the problem.

A well-written problem description outlines the specific errors, failures, or undesired behavior observed and provides enough information for IT professionals to analyze and identify potential solutions.

A comprehensive problem description is crucial for effective troubleshooting and problem-solving in the IT field.

Learn more about Problem Description at:

https://brainly.com/question/25923602

#SPJ1

Luke is setting up a wireless network at home and is adding several devices to the network. During the setup of his printer, which uses 802. 11g standard, he finds that he can't connect to the network. While troubleshooting the problem, he discovers that his printer is not compatible with the current wireless security protocol because it is an older version of hardware.


What wireless network security protocol will allow Luke to use the printer on his wireless network?

a. WPA

b. WEP

c. WPA2

d. WPA-PSK+WPA2-PSK

Answers

The wireless network security protocol that will allow Luke to use the printer on his wireless network is WEP. The correct answer is option b.

WEP (Wired Equivalent Privacy) is a security protocol that is used to secure wireless networks. It was introduced in 1999 and was widely used in the early days of wireless networking. However, it is an older version of hardware and is considered less secure than newer protocols such as WPA (Wi-Fi Protected Access) and WPA2 (Wi-Fi Protected Access 2).

Since Luke's printer is an older version of hardware, it is not compatible with the current wireless security protocol. Therefore, using WEP will allow Luke to use the printer on his wireless network.

Learn more about wireless network security:

brainly.com/question/30087160

#SPJ11

Write an application that allows a user to enter any number of student quiz scores, as integers, until the user enters 99. If the score entered is less than 0 or more than 10, display Score must be between 10 and 0 and do not use the score. After all the scores have been entered, display the number of valid scores entered, the highest score, the lowest score, and the arithmetic average.

Answers

Answer:

scores = []

total = 0

count = 0

highest = 0

lowest = 10

while True:

   score = int(input("Enter quiz score: "))

   if score == 99:

       break

   

   if score < 0 or score > 10:

       print("Score must be between 10 and 0")

   else:

       total += score

       count += 1

       scores.append(score)

       

       if score > highest:

           highest = score

       if score < lowest:

           lowest = score

           

average = total / count

print("Scores:")

for s in scores:

   print(s, end=" ")

print()

print("The highest score is " + str(highest))

print("The lowest score is " + str(lowest))

print("The arithmetic average is " + str(average))

Explanation:

*The code is in Python.

Initialize the values

Create an indefinite while loop. Inside the loop, ask the user to enter the quiz score. If the score is 99, stop the loop. If the score is smaller than 0 or greater than 10, warn the user. Otherwise, add the score to total, increment the count by 1, and add the score to the scores list. Then, determine the highest and lowest value using if statements.

After the loop, calculate the average.

Print the valid scores, highest score, lowest score and arithmetic average

what would you enter at the command prompt on Linux system to display the IP addresses and the subnet

Answers

Answer:

The ifconfig command.

Assume that d is a double variable. Write an if statement that assigns d to the int variable i if the value in d is not larger than the maximum value for an int.

Answers

Answer:

That's because the value has reached the size limit of the int data type. ... you should use long rather than int , because long can store much larger numbers than int . If ... In other words, a float or double variable can't accurately represent 0.1 . ... If you're using Java to measure the size of your house, you'd need an electron ...

Explanation:

What is the correct command to shuffle the following list? import random people= ["Peter", "Paul", "Mary', 'Jane'] O shuffle (people) Opeople.shuffle() random.shuffle (people) random.shufflelist(people)​

Answers

Answer:

import random

people = ["Peter", "Paul", "Mary", "Jane"]

random.shuffle(people)

Explanation:

Create a Python script that enables a user to enter an integer number into the Python console and stores such integer number into a variable named input1. Use an if statement to print the following output per the following conditions:If integer is a negative number, print in console "Input1 integer is negative"If integer is zero, print in console "Input 1 integer is zero"If integer is a positive number less or equal than 30, print in console "Input 1 is positive but less or equal than 30.If integer is a positive number greater than 30, print in console "Input1 is positive and greater than 30"

Answers

Answer:

Here is the Python program:

input1 = int(input("Enter an integer: ")) #prompts user to enter an integer

if(input1<0): #if input value is negative

    print("Input1 integer is negative")

elif(input1==0): #if input value is 0

    print("Input 1 integer is zero")

elif(input1<=30): #if input value is less than or equal to 30

    print("Input 1 is positive but less or equal than 30")

else: #if input value is greater than 30

    print("Input 1 is positive and greater than 30")    

Explanation:

I will explain the program with an example

Lets say user enters 16 as input So

input1 = 60

Now the first if condition if(input1<0): is false because 60 is not less than 0

The second elif (else if) condition elif(input1==0): also evaluates to false because 60 is not equals to 0

The third elif condition elif(input1<=30): evaluates to false because the input value is 60 which is not less than or equal to 30.

The fourth else part executes because all the above if elif conditions evaluate to false which means the input number if neither negative, nor 0 and not less than or equal to 30. Hence the input number is greater than 30 and this is true as 60 is greater than 60. So the print statement executes which is:

    print("Input 1 is positive and greater than 30")

The message in the above print statement is printed on the output screen.

The screenshot of the program along with its output is attached.

Create a Python script that enables a user to enter an integer number into the Python console and stores

ACTIVITY I DIRECTION: Complete the paragraph. Write in your ICF Notebook 1. When you're signed in to your OneDrive will appear as an option whenever you You still have the option of saving files to your computer. However, saving files to your OneDrive allows you them from any other computer, and it also allows you with​

Answers

When one is signed in to the OneDrive, it will appear as an option whenever one wants to save files. One can still have the option of saving files to the computer. However, saving files to the OneDrive allows one to access them from any other computer, and it also allows to easily share and collaborate on files with others. 

OneDrive simplifies file sharing and collaboration with others. You can easily share files and folders with specific individuals or groups, granting them either view-only or editing permissions. This makes it convenient for working on group projects, sharing documents with clients or colleagues, or collaborating with remote team members. Multiple people can work on the same file simultaneously, making it easier to coordinate and streamline workflows.

Learn more about OneDrive here.

https://brainly.com/question/17163678

#SPJ1

Hello, I've tried everything and I cannot get this code to be fair. I need help. Can someone provide guidance so I can understand how to formulate the proper code for this question so I can understand how it should be set up in Python or Python #. Thanks truly. I really appreciate a response. Enjoy your day:

2.26 LAB: Seasons
Write a program that takes a date as input and outputs the date's season. The input is a string to represent the month and an int to represent the day.

Ex: If the input is:

April
11
the output is:

Spring
In addition, check if the string and int are valid (an actual month and day).

Ex: If the input is:

Blue
65
the output is:

Invalid
The dates for each season are:
Spring: March 20 - June 20
Summer: June 21 - September 21
Autumn: September 22 - December 20
Winter: December 21 - March 19

Answers

A program that takes a date as input and outputs the date's season. The input is a string to represent the month and an int to represent the day is given below:

The Program

input_month = input()

input_day = int(input())

months= ('January', 'February','March', 'April' , 'May' , 'June' , 'July' , 'August' , 'September' , "October" , "November" , "December")

if not(input_month in months):

  print("Invalid")

elif input_month == 'March':

   if not(1<=input_day<=31):

       print ("Invalid")

   elif input_day<=19:

       print("Winter")

   else:

      print ("Spring")

elif input_month == 'April' :

   if not(1<=input_day<=30):

       print("Invalid")

   else:

      print("Spring")

elif input_month == 'May':

   if not(1<=input_day<=31):

       print("Invalid")

   else:

       print("Spring")

elif input_month == 'June':

   if not(1<=input_day<=30):

       print("Invalid")

   elif input_day<=20:

       print ("Spring")

   else:

       print("Summer")

elif input_month == 'July' or 'August':

   if not(1<=input_day<=31):

       print("Invalid")

   else:

       print("Summer")

elif input_month == 'September':

   if not(1<=input_day<=30):

       print("Invalid")

  elif input_day<=21:

       print ("Summer")

   else:

       print ("Autumn")

elif input_month == "October":

   if not(1<=input_day<=31):

      print("Invalid")

   else:

       print("Autumn")

elif input_month == "November":

   if not(1<=input_day<=30):

       print("Invalid")

   else:

       print ("Autumn")

elif input_month == "December":

   if not(1<=input_day<=31):

       print("Invalid")

   elif input_day <=20:

       print ("Autumn")

   else:

       print ("Winter")

elif input_month == 'January':

   if not(1<=input_day<=31):

       print("Invalid")

   else:

       print("Winter")

elif input_month == "February":

   if not(1<=input_day<=29):

       print("Invalid")

   else:

       print ("Winter")

Read more about programming here:

https://brainly.com/question/23275071

#SPJ1

timeline:
At least three different historical periods in time to examine and explore in terms of art
and photography as well as our current time period (you will therefore research four time
periods in total).
• For each historical period that you choose, as well as the current time period:
• Explore and identify at least one artistic theme associated with this period
• Explore and identify at least one artistic trend associated with this period
• Explore and identify the most popular or relevant photographic styles used during this period
Explore and identify the most popular or frequently photographed subjects during this period
O
Now for the fun part! Your timeline should feature more images, graphics, and visual
components than text. While you will certainly need to include text to further explain the
images that you include and the research that you do, you want your timeline to ultimately
appear as a beautiful work of art-a visual exploration through the history of photography
neral. This timeline can be created using any program you wish, or feel free to

Answers

The timeline is a representation of a chronological sequence of events that occurred in a specific period. It is an important aspect of analyzing art and photography. Below are the three historical periods, art themes, and trends associated with the era, photographic styles, and most popular or frequently photographed subjects during the period:1.

Renaissance Period (1400-1600)Art Theme: Religious themes, classic myths, and historical events were a prominent theme.

Trend: The dominant trend during this period was the perfection of art as a skill. A focus on balance, symmetry, and realistic human features.

Photographic Style: There were no photographs at this time. The art was created by paint and other art forms.Most Popular/Frequently Photographed Subjects: People, daily life, architecture, and nature2.

Modernism Period (1900-1930)Art Theme: Experimental, abstraction, and simplification were the prominent art themes.

Trend: The dominant trend was the change of perception towards art and creative representation.

Photographic Style: During this period, photographers shifted their interest in capturing events in reality to exploring the abstract.

Most Popular/Frequently Photographed Subjects: Human faces, motion, and landscape3.

Postmodernism Period (1960-1990)Art Theme: The prominent art theme was the exploration of cultural differences and diversity.

Trend: The dominant trend was the creation of art that served as a critique to modernism.

Photographic Style: Photography became a primary source of artistic expression, and photographers created various styles.

Most Popular/Frequently Photographed Subjects: Social changes, women's rights, multiculturalism, and globalization.In conclusion, exploring the history of photography is an essential aspect of analyzing art and understanding the various artistic themes, trends, styles, and subjects that dominated each period.

For more such questions on Renaissance Period, click on:

https://brainly.com/question/879750

#SPJ8

Briefly discuss what is the basic architecture of a computer system?

Answers

Answer:

From strictly a hardware aspect;

Explanation:

The basic architecture of a computer is the case (otherwise known as tower), the motherboard, and power supply unit. The case is used to house all of the necessary parts for the computer function properly. The motherboard will serve as the bridge between all other connections, and the power supply unit will deliver capable power to the rest of the system.

What are vSphere Clusters and how are they utilized in vSphere?

Answers

A group of ESXi hosts set up as a vSphere cluster to share resources like processor, memory, network, and storage In vSphere environments, each cluster can hold up to 32 ESXi hosts, each of which can run up to 1024 virtual machines.

What is vSphere Clusters?

The Clusters page in the vSphere Infrastructure view lets you see how many more virtual machines (VMs) can be added to each cluster, how many resources are totaled up in each cluster, and how many resources are currently available in each cluster. It also lets you manage the resources of each host that is part of the cluster.

According to the spare cluster capacity, the page shows information about the number of additional VMs that can be added to each cluster, as well as information about the powered-on and running VMs, their CPU and memory utilization, and other information. By changing the settings for the spare VM basis on this page, you can change how the spare VM basis for an average VM is calculated.

The information on this page helps to address important subsystem-related questions like the following by giving a comprehensive picture of cluster memory usage and contention using Memory metrics:

Is my environment's vSphere memory management functioning properly?In my environment, is the vSphere page sharing mechanism being used effectively? What amount of memory is shared?How much memory can you overcommit?

Learn more about vSphere

https://brainly.com/question/28787607

#SPJ1

In what ways can you modify the location of the neutral point?
o Change the size of the wing.
o Change the size of the horizontal stabilizer
Change the position of the wing.
All of the above.

Answers

Change the position of the wing. That would change it

In an ancient land, the beautiful princess Eve (or handsome prince Val) had many suitors. Being royalty, it was decided that a special process must be used to determine which suitor would win the hand of the prince/princess. First, all of the suitors would be lined up one after the other and assigned numbers. The first suitor would be number 1, the second number 2, and so on up to the last suitor, number n. Starting at 4 the suitor in the first position, she/he would then count three suitors down the line (because of the three letters in his/her name) and that suitor would be eliminated and removed from the line. The prince/princess would then continue, counting three more suitors, and eliminate every third suitor. When the end of the line is reached, counting would continue from the beginning. For example, if there were 6 suitors, the elimination process would proceed as follows:_____.
12456 Suitor 3 eliminated; continue counting from 4.
1245 Suitor 6 eliminated; continue counting from 1.
125 Suitor 4 eliminated; continue counting from 5.
15 Suitor 2 eliminated; continue counting from 5.
1 Suitor 5 eliminated; 1 is the lucky winner.
Write a program that creates a circular linked list of nodes to determine which position you should stand in to marry the princess if there are n suitors. Your program should simulate the elimination process by deleting the node that corresponds to the suitor that is eliminated for each step in the process.

Answers

Explanation:

public class CircularLinkedListTest  

{

private Node head;

private int size;

private class Node

{

 private int num;

 private Node next;

 public Node(int n)

 {

  num = n;

  next = null;

 }

 public int getNum()

 {

  return num;

 }

 public void setNext(Node n)

 {

  this.next = n;

 }

 public Node getNext()

 {

  return next;

 }

}

public CircularLinkedListTest ()

{

 head = null;

 int numNodes = 0;

}

public void add(int num)

{

 int numNodes = 0;

 if(head == null)

 {

  head = new Node(num);

  head.setNext(head);

  numNodes++;

 }

 else

 {

  Node temp = head;

  while(temp.getNext() != head)

   temp = temp.getNext();

   

  temp.setNext(new Node(num));

  temp.getNext().setNext(head);

  numNodes++;

   

 }

}

public int size()

{

 int numNodes = 0;

 return numNodes;

}

public int get(int index)

{

 Node t = head;

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

  t= t.getNext();

 

 return t.getNum();

}

public int remove(int index)

{

 if(index < 0 || index >= size)

 {

  System.out.println("Error, index out of Qbounds.");

  System.exit(0);

 }

 Node temp = head;

 if(index == 0)

 {

  while(temp.getNext() != head)

   temp = temp.getNext();

  int value = head.getNum();

  if(size > 1)

  {

   head = head.getNext();

   temp.setNext(head);

  }

  else

   head = null;

   size--;

   

  return value;

 }

 else

 {

  for(int i = 0; i < index - 1; i++)

   temp = temp.getNext();

   

  int answer = temp.getNext().getNum();

  temp.setNext(temp.getNext().getNext());

  size--;

  return answer;

 }

}

public static void main(String args[])

{

 CircularLinkedListTest  suitors = new CircularLinkedListTest ();

 for(int i = 1; i <= 6; i++)

  suitors.add(i);  

 int currentIndex = 0;

 while(suitors.size() != 1)

 {

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

  {

   currentIndex++;

   if(currentIndex == suitors.size())

    currentIndex = 0;

  }

   

  suitors.remove(currentIndex);

  if(currentIndex == suitors.size())

   currentIndex = 0;

   

  for(int i = 0; i < suitors.size(); i++)

   System.out.print(suitors.get(i) + " ");

  System.out.println();

 }

}

}

What is a file manger ? The file manger is user A . Medium B.platform C. Interface .

Answers

Answer: C. Interface.

Explanation:

File manager is an interface between the hardware part of a computer and the software. the main function of a file manager is to help the user manage all files which they have stored up on their computers. for example the file managers allows the users to view, copy, delete and edit the files which they have stored up on their computer storage devices.

Medical assistant, Jackie, was downloading some patient information on cerebral palsy from the Internet. While downloading, Jackie noticed the computer was working slower than usual. When Jackie clicked on a web site that she needed to review, the computer would not take her to the designated website. Instead, the computer took her to an alternative site. Jackie soon noticed that even when she was working offline using a word processing software program, the computer was acting up. When she went to
the medical software, she could not bring up patient account information.


Question:

What happened and what should Jackie do?

Answers

The thing that happened is that she has been a victim of system attack and the right thing for Jackie to do is to have an antivirus that can block the malicious  app obstructing her.

What is a system hack?

System hacking is known to be when one's computer is said to be compromise in regards to computer systems and software.

Note that The thing that happened is that she has been a victim of system attack and the right thing for Jackie to do is to have an antivirus that can block the malicious  app obstructing her.

Learn more about system hack from

https://brainly.com/question/13068599

#SPJ1

Drivers are concerned with the mileage their automobiles get. One driver has kept track of several tankfuls of gasoline by recording the miles driven and gallons used for each tankful. Develop a C# application that will input the miles driven and gallons used for each tankful. The application should calculate and display the miles per gallon obtained for each tankful and display the total combined miles per gallon obtained for all tankfuls up to this point. Additionally, the application should categorize and display the consumption rate of gasoline as follows: Low, if the total miles per gallon is greater than 30. • Normal, if the total miles per gallon is between 20 and 30. High, if the total miles per gallon is less than 20. All averaging calculations should produce floating-point results. Display the results rounded to the nearest hundredth. c# program ​

Answers

To solve this problem with the help of C++ programing language, you must know concepts like variables, data type, if-else and while loop.

Step-by-step coding for the problem:

using System;

namespace GasOfMiles

{

   public class Gas

   {

       static void Main(string[] args)

       {

           int miles; // miles for one tankful

           int gallons; // gallons for one tankful

           int totalMiles = 0; // total miles for trip

           int totalGallons = 0; // total gallons for trip

           double milesPerGallon; // miles per gallon for tankful

           double totalMilesPerGallon; // miles per gallon for trip

           // prompt user for miles and obtain the input from user

          Console.Write("Enter miles (-1 to quit): ");

           miles = Convert.ToInt32(Console.ReadLine());

           // exit if the input is -1 otherwise, proceed with the program

           while (miles != -1)

           {

               // prompt user for gallons and obtain the input from user

               Console.Write("Enter gallons: ");

               gallons = Convert.ToInt32(Console.ReadLine());

               // add gallons and miles for this tank to totals

               totalMiles += miles;

               totalGallons += gallons;

               // calculate miles per gallon for the current tank

               if (gallons != 0)

               {

                   milesPerGallon = (double)miles / gallons;

                   Console.WriteLine("MPG this tankful: {0:F}",

                      milesPerGallon);

               } // end if statement

               if (totalGallons != 0)

               {

                   // calculate miles per gallon for the total trip

                   totalMilesPerGallon = (double)totalMiles / totalGallons;

                   Console.WriteLine("Total MPG: {0:F}\n", totalMilesPerGallon);

               } // end if statement

               // prompt user for new value for miles

               Console.Write("Enter miles (-1 to quit): ");

               miles = Convert.ToInt32(Console.ReadLine());

           } // end while loop  

           Console.ReadKey();

       }

   }

}

To learn more about C++ Programming, visit: https://brainly.com/question/13441075

#SPJ9

How do advertisers use data to know which products would most likely appeal to you

Answers

Answer:

it gives children or adults something to think about

Explanation:

ThThe following information is provided from the product price EXCEPT:

Answers

The information provided from the product price includes the comparability of other products, the quality of the product, and the levels of demand. However, the time of day the product is purchased is not typically a piece of information that can be directly inferred from the product price.

Comparability of other products refers to how the price of a specific product compares to similar or alternative products in the market. This information helps consumers make informed decisions by assessing the value they are receiving for the price they are paying.

The quality of the product is another crucial factor influenced by its price. Generally, higher-priced products are often associated with higher quality, while lower-priced products may be perceived as having lower quality. This relationship between price and quality plays a significant role in consumer purchasing decisions.

Additionally, the levels of demand for a product can also be inferred from its price. Higher-priced products may experience lower demand, while lower-priced products tend to attract more consumers. The price elasticity of demand determines how changes in price affect consumer demand for a product.

In summary, while the comparability of other products, the quality of the product, and the levels of demand are factors influenced by the product price, the time of day the product is purchased is not directly related to the price and, therefore, not provided by the product price.

For more such questions product,Click on

https://brainly.com/question/28776010

#SPJ8

The probable question may be:

The following information is provided from the product price EXCEPT: comparability of other products. quality of product. levels of demand. the time of day the product is purchased.

In order to average together values that match two different conditions in different ranges, an excel user should use the ____ function.

Answers

Answer: Excel Average functions

Explanation: it gets the work done.

Answer:

excel average

Explanation:

Use function GetUserInfo to get a user's information. If user enters 20 and Holly, sample program output is:Holly is 20 years old. #include #include void GetUserInfo(int* userAge, char userName[]) { printf("Enter your age: \n"); scanf("%d", userAge); printf("Enter your name: \n"); scanf("%s", userName); return;}int main(void) { int userAge = 0; char userName[30] = ""; /* Your solution goes here */ printf("%s is %d years old.\n", userName, userAge); return 0;}

Answers

Answer:

Replace

/*Your solution goes here*/

with

GetUserInfo(&userAge, userName);

And Modify:

printf("%s is %d years old.\n", userName, userAge)

to

printf("%s is %d years old.", &userName, userAge);

Explanation:

The written program declares userAge as pointer;

This means that the variable will be passed and returned as a pointer.

To pass the values, we make use of the following line:

GetUserInfo(&userAge, userName);

And to return the value back to main, we make use of the following line

printf("%s is %d years old.", &userName, userAge);

The & in front of &userAge shows that the variable is declared, passed and returned as pointer.

The full program is as follows:

#include <stdio.h>

#include <string.h>

void GetUserInfo(int* userAge, char userName[]) {

   printf("Enter your age: ");

   scanf("%d", userAge);

   printf("Enter your name: ");

   scanf("%s", userName);

   return;

}

int main(void) {

   int* userAge = 0;

   char userName[30] = "";

   GetUserInfo(&userAge, userName);

   printf("%s is %d years old.", &userName, userAge);

   return 0;  

}

Messages that have been accessed or viewed in the Reading pane are automatically marked in Outlook and the message subject is no longer in bold. How does a user go about marking the subject in bold again?

Mark as Read
Flag the Item for follow-up
Assign a Category
Mark as Unread

Answers

Answer:

Mark as Unread

Explanation:

I just know

Answer:

D. Mark as Unread

Explanation:

Edg. 2021

Chemical equations of Carbon + water​

Answers

Answer:

Aqueous carbon dioxide, CO2 (aq), reacts with water forming carbonic acid, H2CO3 (aq). Carbonic acid may loose protons to form bicarbonate, HCO3- , and carbonate, CO32-. In this case the proton is liberated to the water, decreasing pH. The complex chemical equilibria are described using two acid equilibrium equations.

PLS MARK AS BRAINLIEST

Other Questions
i vamos a comer! es exclamativavamos a comer esa exclamativas Choose the letter corresponding to the best answer. Which is a true statement? I need to make at least 3 themes and find evidence in the story "There Will Come Soft Rains" (1950) by Ray Bradbury Factorizing Trinomials in the form: x + bx + c 3.1 x + bx + c Find two integers, r and s, whose product is c and whose sum is b to rewrite the trinomial as: x + rx + sx + c Factorizing x + 5x + 6 3.1.1 What is the value of b and c in the trinomial? b = C = ACTIVITY 3 3.1.2 Use the table below to determine the two integers, r and s. Factors of 6 1 and 6 -1 and and 3 2 and 3 6 Product of the two Sum of the two factors factors 1+6=7 1+-=-7 2+3=5 --21-3=-5 1x6-6 -1X-6=6 2x3 = 6 -2x-3-6 product Result 6 but sur Which two integers will correctly provide the values of b and c in the express x2 + 5x + 6? 1.3 Rewite x + 5x + 6 as an equivalent expression in the form x + -4 Use the knowledge obtained from activity 2 on grouping and the dis to factorize the expression. Distance from a line to a point in terms of components 0/1 point (graded) In a 2 dimensional space, a line L is given by L: ax+by+c= 0, and a point P is given by P = (xo, yo). What is d, the shortest -A baseball player swings and connects with a pitch. The formula H = -16t2 + 80t + 4 can be used to determine theheight of the ball (in feet) above the ground after t seconds. Determine the height of the ball after 1.4 seconds. Roundyour answer to the nearest tenth of a foot? I need help ASAP (10 points) Why do we need to help cats In pedros town 42% of the houses have both internet service and a home phone. If 82% of all the houses in his town have internet service, what is the probability that a house has a home phone if it has internet service? An electron transitions from n = 5 to n = 3 in a hydrogen atom. What is the energy required for this transition? Is energy emitted or absorbed in the transition?Your solution must include a step-by-step solution with units included throughout. When trees lose leaves in the fall, they begin to regrow them again in the spring. Would you say this is an example of a process running in reverse or something else. Explain your reasoning.Answer using at least 2 complete sentences. velocity and acceleration a ball is thrown vertically upward from ground level with an initial velocity of 96 feet per second. (a) how long will it take the ball to rise to its maximum height? (b) what is the maximum height? (c) when is the velocity of the ball one-half the initial velocity? (d) what is the height of the ball when its velocity is one-half the initial velocity? What type of milk can last for several months without spoiling if it sitsunopened and unrefrigerated? 1634 divided by 12 round it to the nearst tenth Recent events suggest that full convergence ________ be achieved in the foreseeable future. The _____ approach tends to see personality as an etic or universal phenomenon that is equivalently relevant and meaningful in the cultures being compared.cross-cultural Help please !!! Due in 10Minutes Cotton candy was first made in Europe during the 17th century, but making it back then took a lot of work, and most people couldn't afforfd it. In 1897 William Morrison and John Wharton invented machine spun cotton candy. This made the treat much cheaper to produce. People fell in love with it when Morrison and Wharton introduced it at the 1904 World's Fair. A. problem and solutionB. chronologyC. compare and contrastD. both choices 1 and 2 are correct Lucy is deciding between two final options, both located at their respective centroids. In Option 1, Lucy works at the coffee shop and lives in Apartment E. In Option 2, Lucy works at the restaurant and lives in Apartment F. Which would you recommend? Justify your answer with a mathematical explanation In a game, you toss a fair coin and a fair six-sided die. If you toss a heads on the coin and roll either a 3 or a 6 on the die, you win $30. Otherwise, you lose $6. What is the expected profit of one round of this game? When glucose is made, which of the following can happen to it