I need some help with this assignment. I'm having difficulty trying come up ideas to use here. Can I get any help?

Here's the question.

Think of three simple tasks where you believe sequence of instruction matters. Is there a way to modify it to where sequence doesn't matter? Find steps in each task where the sequence can be changed and still achieve the desired outcome. Write out the original and modified algorithms AND pseudocode for each task. Write a short paragraph for each task describing the changes in sequence.

Answers

Answer 1

Answer:

Abigail wants to attend a community college.  Suppose x represents the number of credits she takes and y represents her total fees in dollars.  Which of these statements are correct?  Select all that apply.

A.

If tuition amounts to $125 plus $150 per credit, the function that would model this situation is y = 150x + 125.

B.

If tuition amounts to $200 plus $175 per credit, the function that would model this situation is x = 175y + 200.

C.

If tuition amounts to $175 plus $150 per credit, the function that would model this situation is y = 175x + 150.

D.

If tuition amounts to $250 plus $275 per credit, the function that would model this situation is x = 250y + 275.

E.

If tuition amounts to $225 plus $200 per credit, the function that would model this situation is y = 200x + 225.

F.

If tuition amounts to $100 plus $125 per credit, the function that would model this situation is y = 125x + 100.

Explanation:


Related Questions

Write a function named cube that accepts a number as an argument and returns the cube of that number. Write Python statement(s) that passes 3 to this function and prints returned value.​

Answers

def cube(num):

   return num*num*num

for the number 3:

def cube():

    return 3*3*3

Java: Programming Question: Reverse OrderWrite a program that reads ten integers into an array; define another array to save those ten numbers in the reverse order. Display the original array and new array. Then define two separate methods to compute the maximum number and minimum number of the array.Sample Run:Please enter 10 numbers: 1 3 5 8 2 -7 6 100 34 20The new array is: 20 34 100 6 -7 2 8 5 3 1The maximum is: 100The minimum is: -7Bonus: Determine how many numbers are above or equal to the average and how many numbers are below the average.

Answers

import java.util.Scanner;

import java.util.Arrays;

public class JavaApplication47 {

   public static void main(String[] args) {

       Scanner scan = new Scanner(System.in);

       System.out.print("Please enter 10 numbers: ");

       String [] nums = scan.nextLine().split(" ");

       int newNums[] = new int [nums.length];

       int w = 0, total = 0, above = 0, below = 0;

       for (int i=(nums.length-1); i>=0;i--){

           newNums[w] = Integer.parseInt(nums[i]);

           w++;

       }

       System.out.println("The old array is: "+Arrays.toString(nums));

       System.out.println("The new array is: "+Arrays.toString(newNums));

       Arrays.sort(newNums);

       System.out.println("The maximum is: "+newNums[9] + "\nThe minimum is: "+newNums[0]);

       for (int i : newNums ){

           total += i;

       }

       total = total / 10;

       for (int i : newNums){

           if (i >= total){

               above += 1;

           }

           else{

               below += 1;

           }

       }

       System.out.println("There are "+above+" numbers above or equal to the average.");

       System.out.println("There are "+below+" numbers below the average.");

   }

   

}

I hope this helps!

Most operating systems perform these tasks. coordinating the interaction between hardware and software allocating RAM to open programs creating and maintaining the FAT modifying word processing documents correcting spreadsheet formulas displaying the GUI

Answers

Answer:

The answer are A.) Coordinating the interaction between hardware and software And B.) Allocating RAM to open programs

Explanation:

Hope this helps :)

Tasks that are been performed by most operating systems are;

Coordinating the interaction between hardware and software.Allocating RAM to open programs.

An operating system can be regarded as system software which helps in running of computer hardware as well as software resources and mange them.

This system provides common services for computer programs.

It should be noted that  operating system coordinating the interaction between hardware as well software.

Therefore, operating system, allocate RAM to open programs.

Learn more about operating system at:

https://brainly.com/question/14408927

What printer prints in different languages ​

Answers

Answer:

Printing in a different language

HP Deskjet 2630.Microsoft Windows 10 (32-bit)

In the following code fragment, how many times is the count() method called as a function of the variable n? Use big-O notation, and explain briefly. for (int i = 0; i < 3; i++) { for (int j = 0; j < n; j++) { for (int k = 0; k < j; k++) { count(); } }

Answers

Answer:

The loop counts the count() function length of n-1 times with respect to n.

Explanation:

The first and outer loop counts for two times as the variable declared in the condition counts before the iteration is made. The same goes for the other for statements in the source code.

The n represents the number length of a range of numbers or iterables (like an array).

Some of the latest smartphones claim that a user can work with two apps simultaneously. This would be an example of a unit that uses a __________ OS.

Answers

Answer:

MULTITASKING OS

Explanation:

MULTITASKING OPERATING SYSTEM is an operating system that enables and allow user of either a smartphone or computer to make use of more that one applications program at a time.

Example with MULTITASKING OPERATING SYSTEM smartphones user can easily browse the internet with two applications program like chrome and Firefox at a time or simultaneously

Therefore a user working with two apps simultaneously is an example of a unit that uses a MULTITASKING OS.

what are the types of slide show in powerpoint? define.​

Answers

Answer:

normal view

slide sorter view

master view

notes page view

Susan is taking a French class in college and has been asked to create a publication for her class. What feature can she
use to help her develop her publication in French?
Research
Grammar
Language
Spell Check

Answers

Answer:

Essayons

Explanation:

the answer is Language

UK UKI
Different
DIFFERENTIATE BETWEEN FORMULA & A FUNCTION GNING EXAMPLE​

Answers

Explanation:

A Formula is an equation designed by a user in Excel, while a Function is a predefined calculation in the spreadsheet application. Excel enables users to perform simple calculations such as finding totals for a row or column of numbers. Formulas and functions can be useful in more complex situations, including calculating mortgage payments, solving engineering or math problems, and creating financial models.

3. Answer the following questions.
a. How does computer number system play
calculations?
a vital role in a
computer​

Answers

Answer:

Computers use the binary number system to store data and perform calculations.

Explanation:

Write a recursive function called sum_values that takes in a list of integers and an index of one element in the list and returns the sum of all values/elements in the list starting with the element with the provided index and ending with the last element in the list.

Answers

Answer:

Explanation:

The following code is written in the Java programming language and actually takes in three parameters, the first is the list with all of the int values. The second parameter is the starting point where the adding needs to start. Lastly is the int finalSum which is the variable where the values are all going to be added in order to calculate a final int value. Once the recursive function finishes going through the list it exits the function and prints out the finalSum value.

   public static void sum_Values(ArrayList<Integer> myList, int startingPoint, int finalSum) {

           if (myList.size() == startingPoint) {

               System.out.println(finalSum);

               return;

           } else {

               finalSum += myList.get(startingPoint);

               sum_Values(myList, startingPoint+1, finalSum);

           }

           

   }

Write an application named Hurricane that outputs a hurricane’s category based on the user’s input of the wind speed. Category 5 hurricanes have sustained winds of at least 157 miles per hour. The minimum sustained wind speeds for categories 4 through 1 are 130, 111, 96, and 74 miles per hour, respectively. Any storm with winds of less than 74 miles per hour is not a hurricane. If a storm falls into one of the hurricane categories, output This is a category # hurricane, with # replaced by the category number. If a storm is not a hurricane, output This is not a hurricane.

Answers

Answer:

def Hurricane(wind_speed):

   if wind_speed >= 157:

       print("Category 5 hurricane")

   elif wind_speed >= 130:

       print("Category 4 hurricane")

   elif wind_speed >= 111:

       print("Category 3 hurricane")

   elif wind_speed >= 96:

       print("Category 2 hurricane")

   elif wind_speed >= 74:

       print("Category 1 hurricane")

   else:

       print("Not a hurricane")

Hurricane(121)

Explanation:

The function "Hurricane" in the python code accepts only one argument which is the recorded speed of a hurricane. The nested if-statement evaluates the speed of the hurricane and output the appropriate category of the hurricane based on the speed.

The TCP/IP Application Layer and the OSI Application Layer are relevant mainly to programmers, not to network technicians.

True/False

Answers

Answer:

Yes they are to programmer

Explanation:

Plz give me brainiest

Answer:

true

Explanation:

Comment on the following 2 arrays. int *a1[8]; int *(a2[8]); a1 is pointer to an array; a2 is array of pointers a1 is pointer to an array; a2 is pointer to an array a1 is array of pointers; a2 is pointer to an array a1 is array of pointers; a2 is array of pointers

Answers

Answer:

The answer is "a1 and a2 is an array of pointers".

Explanation:

In this question, A collection of pointers refers to an array of elements where each pointer array element points to a data array element. In the above-given statement, the two-pointer type array "a1 and a2" is declared that holds the same size "8" elements in the array, and each element points towards the array's first element of the array, therefore, both a1 and a2 are pointer arrays.

What does cpu mean ​

Answers

Answer:

CPU or Central processing unit is the principal part of any digital computer system, generally composed of the main memory, control unit, and arithmetic-logic unit.

Hope this helps and if you could mark this as brainliest. Thanks!

The CEO, calls you into her office and tells you that she's learned that the company needs a database to keep track of supplier contact data as well as the experiences that buyers and operations personnel have with the suppliers. She asks you to begin developing this database. What is your first step in developing the database?

Answers

the database has been a very unique way to park in

PLS HELP I WILL MARK BRAINLIEST

Answers

Answer:B

Explanation: its the nucules

The answer most likely is B

For risk monitoring, what are some techniques or tools you can implement in each of the seven domains of a typical IT infrastructure to help mitigate risk

Answers

Answer:

 a. User Domain: Create awareness for acceptable user-policies and security risk to educate employees of pending risk.

b. Workstation Domain: Install anti-virus and constantly update the system software.

c. LAN Domain:  Access control list or ACL should be configured in routers and port security in switches to avoid hackers physically connecting to the network.

d. LAN-to-WAN Domain: Configure firewalls and intrusion detection and prevention protocols to mitigate unwanted access.

e. WAN Domain: Configure demilitarized or demarcation zone to provide secure access and prevent unwanted users from accessing network information.

f. Remote Access Domain: The use of VPNs to grant remote access to users or employees working from home and internet protocol security (IPsec) to encrypt the packet transmission.

g. Systems/Applications Domain: Administration should be well trained and ensure to get security software patches from appropriate vendors and testing them before use.

Explanation:

Risk monitoring is one of the IT infrastructure risks management plan that observes and analyzes the threats of risk in an IT infrastructure.

what will be output of this program a. less than 10 b. less than 20 c. less than 30 d. 30 or more

Answers

Answer:

D. 30 or more

Explanation:

The score value is passed in as var, meaning, its value could change. In this instance score started at zero and 30 was added to it. The last condition is the only condition that fits score's value(if that makes sense). So its in fact D.

hope i was able to help ;)

Need help with 4.7 lesson practice

Answers

Answer:

1.a

2.sorry cant read it that wekk

3.c

Explanation:

hey yall wanna send me some just ask for my phone #

Answers

Answer:

Send you some what?

Explanation:

the answer is 12

Select the correct navigational path to create the function syntax to use the IF function.

Click the Formula tab on the ribbon and look in the
gallery.

Select the range of cells.

Then, begin the formula with the
, click
, and click OK.

Add the arguments into the boxes for Logical Test, Value_if_True, and Value_if_False.

Answers

Answer:

wewewewewewe

Explanation:

wewe[tex]\neq \neq \neq \neq \neq \neq \neq \\[/tex]

Answer:

1. Logical

2.=

3.IF

Explanation:

JUST TOOK TEST GOOD LUCK!!!

write an essay about yourself based on the dimensions of ones personality​

Answers

I don’t think that we can answer this question, since it’s based on yourself.

In a program a menu shows a list of?

Answers

Answer:

implemented instructions

In a three-tier architecture, the component that runs the program code and enforces the business processes is the:_______.

Answers

Answer:

Application Server

Explanation:

The Application Server is a component in computer engineering that presents the application logic layer in a three-tier architecture.

This functionality allows client components to connect with data resources and legacy applications.

In this process of interaction, the Application Server runs the program code from Tier 1 - Presentation, through Tier 2 - Business Logic to Tier 3 - Resources, by forcing through the business processes.

examples of operating system from different families​

Answers

Answer:

windows from Microsoft Mac OS from Apple Ubuntu from chronicle

4.2 Lesson Practice​

Answers

Answer:

5 and 10

Explanation:

Terminology used to describe the interaction between a computer program and its user is input and output. Input refers to what the user provides to the program, whilst Output refers to what the software provides to the user.

What is the role of output in program?

The term “output” describes how data is shown, whether it's on a screen, a printer, or in a file. Data display to the computer screen and data storage in text or binary files are both supported by a set of built-in C programming functions.

It may be argued that output is equally crucial to language development as intake. (The term “output” refers to the written and spoken language that the learner creates.) Teachers should therefore encourage their pupils to attempt using the language they are learning as frequently as they can.

Therefore, The capacity to extract a certain form or structure and string those forms and structures together to represent a specific meaning is known as output.

Learn more about output here:

https://brainly.com/question/18079696

#SPJ5

Write a program to output the following quote by Edsger W. Dijkstra:

"Computer Science is no more about computers
than astronomy is about telescopes"
- Edsger W. Dijkstra
Hint: Remember that the escape characters \n and \" can be used to create new lines and quotation marks in your code.

Answers

In python 3.8:

print("\"Computer Science is no more about \ncomputers\nthan astronomy is about telescopes\"\n-Edsger W. Dijkstra")

I hope this helps!

What was the name of first computer?

Answers

The ENIAC (Electronic Numerical Integrator and Computer) was the first electronic programmable computer built in the U.S. Although the ENIAC was similar to the Colossus, it was much faster, more flexible, and it was Turing-complete.

Write a loop that subtracts 1 from each element in lowerScores. If the element was already 0 or negative, assign 0 to the element. Ex: lowerScores = {5, 0, 2, -3} becomes {4, 0, 1, 0}.Sample program:#include using namespace std;int main() { const int SCORES_SIZE = 4; vector lowerScores(SCORES_SIZE); int i = 0; lowerScores.at(0) = 5; lowerScores.at(1) = 0; lowerScores.at(2) = 2; lowerScores.at(3) = -3; for (i = 0; i < SCORES_SIZE; ++i) { cout << lowerScores.at(i) << " "; } cout << endl; return 0;}Below, do not type an entire program. Only type the portion indicated by the above instructions (and if a sample program is shown above, only type the portion.)

Answers

Answer:

Replace <STUDENT CODE> with

for (i = 0; i < SCORES_SIZE; ++i) {

       if(lowerScores.at(i)<=0){

           lowerScores.at(i) = 0;

       }

       else{

           lowerScores.at(i) = lowerScores.at(i) - 1;

       }  

   }

Explanation:

To do this, we simply iterate through the vector.

For each item in the vector, we run a check if it is less than 1 (i.e. 0 or negative).

If yes, the vector item is set to 0

If otherwise, 1 is subtracted from that vector item

This line iterates through the vector

for (i = 0; i < SCORES_SIZE; ++i) {

This checks if vector item is less than 1

       if(lowerScores.at(i)<1){

If yes, the vector item is set to 0

           lowerScores.at(i) = 0;

       }

       else{

If otherwise, 1 is subtracted from the vector item

           lowerScores.at(i) = lowerScores.at(i) - 1;

       }  

   }

Also, include the following at the beginning of the program:

#include <vector>

Other Questions
The measure of the angle is 44 times greater than its supplement.What is the measure of the supplement? Calculate the molecular mass of the following mass of the following chemical compound C6H12O624 G/mol 180 gmol 155 g/mol19 g/mol Need some help with this!! 17. Who or what did Common Sense name as the greatest threat to American liberty?O A British ParliamentB Continental CongressC French monarchyD King George II Sam wrote his bike 2/5 of a mile and walked another 3/4 of a mile how far did he travel? Evaluate the expression for f = 20.122 - 2fA. 82B. 100C. 140D. 2400SHOW YOUR WORK PLZSSSSS 1. When in his poem "Annabel Lee" Edgar Allen Poe writes "the moon never beams without bringing me dreams of the beautiful Annabel Lee", he is using the literary technique of 2. The Latin title that the Romantic poet Samuel Taylor Coleridge chose for his poem, "Apologia Pro Vita Sua" translated to English means3. In the poem "I Wandered Lonely as a Cloud" the English Romantic poet William Wordsworth uses ________________________________________________________ when he says the daffodil flowers are like a "company" of friends that he feels he is spending time with.4. The Romantic artistic movement placed great value on the ___________________________________________________________________________as a valid, meaningful point-of-view which to record in artistic works.5. ____________________________________________________________________________is an example of the anaphora technique from Walt Whitman's poem "When I Heard The Learn'd Astronomer Speak".6. In the metaphor that Edgar Allen Poe creates for his poem "A Dream Within a Dream" the shore stands for life itself and the surf hitting the shore and the grains of sand it is constantly washing away stand for _________________________________________________________________________.7. When Samuel Taylor Coleridge says that he believes that the poet can see "phantoms of sublimity" that perhaps others don't see when he uses his imagination to look within himself, this is an example of the Romantics emphasis upon the existence and importance of the ___________________________________________________________________________.8. Walt Whitman carefully crafts the _________________________________________________ in each of the stanzas of his poem "When I Heard The Learn'd Astronomer Speak" to show us that for him it is not the scientific, rational understanding but the natural, direct experience of nature that is "perfect".answer choices for questions time itself and the the way it is constantly"washing" away the days of our lives internal rhyme "When I was shown the charts and diagrams, to add, divide, and measure themAssonance anaphora individual, subjective external rhymeexperience of the worldapology for my life/lifestyle "When I was shown all the different scientific things to use" apology for my diction allusionsins/crimesexternal, objectiveexperience of the world metaphysical personificationthe way ocean waves rhyme scheme superphysicalare constantly washingaway the sand from beaches what is coastal landform 15 mm 8 mm What is the length of the hypotenuse? c= millimeters? 15 kg equals how many grams Which choice is the equation of the line that passes through the point (5, 19) and has a slope of m=12 and is written in slopeintercept form? 3x + 7 = - 20 solve this equation Pretend that you have been assigned a pen pal from one of the twenty one Spanish speaking countries. You can choose any of the twenty one speaking countries where you pen pal is from as well as their name in Spanish. You are writing your very first letter to your pen pal. Write to your pen pal a little bit about yourself including your likes and dislikes. There must be a minimum of FIFTEEN sentences. please do in spanish find KL , need helppp!!! please The genotype of an offspring defines the physical characteristics or . I need help with angles A local grocery store makes a 6-pound mixture of trail mix. The trail mix contains raisins, sunflower seeds, and chocolate-covered peanuts. The raisins cost $3 per pound, the sunflower seeds cost $1 per pound, and the chocolate-covered peanuts cost $1.50 per pound. The mixture calls for twice as many raisins as sunflower seeds. The total cost of the mixture is $11.50. Write a system of equations for the situation and solve for the amount of each item in the trail mix. Which sentence uses sensory language to create mood?A.He drove down the street with the traffic.B.He walked down the street beside the traffic.C.He dashed down the street choked with traffic. I need help again please help me with this question 50 POINTSWhat are 2 words to describe alive? I already have Living, Human, Breathing, Moving. Please don't tell me to look it up bc I did and don't use this for points because I really need 2 words. NO BIG WORDS like VItal.