When a large project begins, a programmer can build a(n) ________, which is a small model of what the final program will look like when it is finished.

Answers

Answer 1

Answer:

A Prototype

Explanation:

Prototype: It is an early sample, model, or release of a product built by the programmer to test a concept or process and that will how the final product will look like.

Answer 2

Answer:

The correct word for the blank space is: prototype.

Explanation:

In computer science, a prototype is built to test if theoretical propositions can be translated into factual systems. The prototype is the draft of what the final software could give and include core features only. Designing prototypes is an opportunity for the programmers because the basic layout could spot unexpected failures that could or could not be corrected.


Related Questions

Using basic programming (for loops, while loops, and if statements), write two MATLAB functions, both taking as input:
- dimension n;
- n x n matrix A;
- n x n matrix B;
-n × 1 vector x.
Have the first function compute ABx through (AB)x and the second compute ABx through A(Bx). Have both output:
- the number of flops used.
(a) Print out or write out the first function.
(b) Print out or write out the second function.
(c) Apply both your functions to the case with random matrices and vectors for n = 100 and print out or write out the results. Do the same for 200 x 200, 400 x 400, and 800 x 800. Which approach of computing ABx is faster?

Answers

Answer:

For n = 100

(AB)x: 10100A(Bx): 200

For n = 200

(AB)x: 40200A(Bx): 400

For n = 400

(AB)x: 160400A(Bx): 800

For n = 800

(AB)x: 640800A(Bx): 1600

The faster approach is A(Bx)

Explanation step by step functions:

A(Bx) is faster because requires fewer interactions to find a result: for (AB)x you have (n*n)+n interactions while for A(Bx) you have n+n, to understand why please see the step by step:

a) Function for (AB)x:

function loopcount1 = FirstAB(A,B,x)  

 n = size(A)(1);

 AB = zeros(n,n);

 ABx = zeros(n,1);

 loopcount1 = 0;  

 for i = 1:n

   for j = 1:n

     AB(i,j) = A(i,:)*B(:,j);

     loopcount1 += 1;

   end

 end

 for k = 1:n

   ABx(k) = AB(k,:)*x;

   loopcount1 += 1;

 end

end

b) Function for A(Bx):

function loopcount2 = FirstBx(A,B,x)

 n = size(A)(1);

 Bx = zeros(n,1);

 ABx = zeros(n,1);

 loopcount2 = 0;  

 for i = 1:n

   Bx(i) = B(i,:)*x;

   loopcount2 += 1;

 end

 for j = 1:n

   ABx(j) = A(j,:)*Bx;

   loopcount2 += 1;

 end

end

In this exercise we want to use computer and python knowledge to write the code correctly, so it is necessary to add the following to the informed code:

The correct code that corresponds to the question informed is attached in the photo and we can notice that the faster approach is A(Bx).

So knowing that the information given in the text is that;

For n = 100:

(AB)x: 10100 A(Bx): 200

For n = 200:

(AB)x: 40200 A(Bx): 400

For n = 400:

(AB)x: 160400 A(Bx): 800

For n = 800:

(AB)x: 640800 A(Bx): 1600

A(Bx) exist faster cause demand hardly any interplay to find a result: for (AB)x you bear (n*n)+n interplay while for A(Bx) you bear n+n, so we have that:

a)Watching the function for (AB)x:

function loopcount1 = FirstAB(A,B,x)  

n = size(A)(1);

AB = zeros(n,n);

ABx = zeros(n,1);

loopcount1 = 0;  

for i = 1:n

  for j = 1:n

    AB(i,j) = A(i,:)*B(:,j);

    loopcount1 += 1;

  end

end

for k = 1:n

  ABx(k) = AB(k,:)*x;

  loopcount1 += 1;

end

end

b) Watching the function for A(Bx):

function loopcount2 = FirstBx(A,B,x)

n = size(A)(1);

Bx = zeros(n,1);

ABx = zeros(n,1);

loopcount2 = 0;  

for i = 1:n

  Bx(i) = B(i,:)*x;

  loopcount2 += 1;

end

for j = 1:n

  ABx(j) = A(j,:)*Bx;

  loopcount2 += 1;

end

end

See more about computer at brainly.com/question/950632

What is it called to persist in trying to multitask can result in this; the scattering bits of one’s attention among a number of things at any given time?
Select one:
a. attention
b. multi tasking
c. continuous partial attention
d. none of the choices are correct

Answers

Answer: is Option B.

B). Multi tasking:   A person capability to carry out more than one task at the same time is called multitasking. Person performing more than one task at the same time is nearly impossible and it's hard for him to focus on each and every detail, thus leading to scatter attention among numbers of things at a time resulting in inaccuracy and greater numbers of fault in final result.

Explanation of other points:

A). Attention: is defined as performing tasks with special care and concentration.

C). Continuous partial attention:  Under this category people perform tasks by concentrating on different sources to fetch information by only considering the most valid information among all information. people who use this technique to gather information works superficially concentrating on the relevant information out of numerous sources in a short period of thinking process.

Violations of security policies are considered to be a(n) __________ issue upon which proper disciplinary actions must be taken.
law enforcement
employer-employee
executive-staff
implementation

Answers

Answer:

Violations of security policies are considered to be a(n) law enforcement issue upon which proper disciplinary actions must be taken.

Explanation:

The security policies are considered as law enforcement issue, which may include the rules and regulations of the society decided by the government. These rules and regulations are necessary to maintain the norms of society.

The issue comes under the law enforcement are cyber crime, women rights security in working environment of the organization, use of technology that may cause threats for the society.

To enforce these law to maintain the security in the society, department of law and enforcement has been established such as Police department, Some intelligence agencies. They takes proper disciplinary action under the law enforcement to maintain the security in society against violation of rules.

Macronutrients include carbon, phosphorous, oxygen, sulfur, hydrogen, nitrogen and zinc. (T/F)

Answers

Answer:

The answer to your question is False

Explanation:

Macronutrients are complex organic molecules, these molecules give energy to the body, promote the growing and the good regulation of the body. Examples of macromolecules are Proteins, carbohydrates, and Lipids.

Micronutrients are substances that do not give energy to the body but they are essential for the correct functioning of the body. Examples of micronutrients are Vitamins and Minerals.

How will you ensure that all of the network's applications and tcp/ip services also support ipv6?

Answers

Answer:

Configure the Extended BSD API socket.

Explanation:

There are two types of logical network address, they are IP version 4 and up version 6. They are used to route packets to various destinations from various sources.

A network application must configure this IP addresses protocol. The IP version4 is the default address applications use. To enable IP version 6 the extended BSD API is configured on the network.

To prevent users of the application from changing the size of the form. you must set the FormBorderStyle property to ____

Answers

Answer:

The answer is "Fixed-single".

Explanation:

A FormBorderStyle property is a part of the C# language, which is used to displays the form's border style for viewing an application form. This property uses the fixed-single attribute, which will be used to determine, if the template or form can be resized by the end-user, it can be dragged or resized by no border or a title bar. A fixed, single-line border.

One example of a Microsoft Store app is Select one: a. Photos. b. Paint. c. File Explorer. d. Notepad.

Answers

Answer:

b. Paint

Explanation:

Paint was one of Microsoft's application that allowed users to draw basic diagrams and visual representation of objects. Microsoft Paint was discontinued as an addition in the latest versions of Windows, however the app is available for download from Microsoft Store App. Photos is an application of Apple, whereas File Explorer and Notepad are default applications of Windows operating system.

One example of a Microsoft Store app is Paint. Therefore, the correct answer is option B.

Paint was one of Microsoft's application that allowed users to draw basic diagrams and visual representation of objects. Microsoft Paint was discontinued as an addition in the latest versions of Windows, however the app is available for download from Microsoft Store App. Photos is an application of Apple, whereas File Explorer and Notepad are default applications of Windows operating system.

Therefore, the correct answer is option B.

Learn more about the Microsoft Store app here:

https://brainly.com/question/3371513.

#SPJ6

When information is modified by individuals not authorized to change it you have suffered a:_____a. Loss of confidentiality b. Loss of integrity c. Loss of functionality d. Loss of availability

Answers

Answer:

b. Loss of integrity

Explanation:

Integrity: It is the information protection technique which ensures that the information is not modified by the unintended individuals.

A(n) __________ in the name of a form indicates a hierarchy of namespaces to allow the computer to locate the Form class in a computer’s main memory.

Answers

Answer:

A dot member access operator in the name of a form indicates a hierarchy of namespaces to allow the computer to locate the Form class in a computer’s main memory.

Dot (.) operator is known as "Class Member Access Operator" in C++ programming language, it is used to grant access to public members of a class. Public members contain data members (variables) and member functions (class methods) of a class.

A 'deny any-any' rule in a firewall ruleset is normally placed: a. Nowhere in the ruleset if it has a default allow policyb. Below the last allow rule, but above the first deny rule in the rulesetc. At the top of the rulesetd. At the bottom of the ruleset

Answers

Answer:

D. . At the bottom of the ruleset

Explanation:

The main purpose of firewalls is to drop all traffic that is not explicitly permitted. As a safeguard to stop uninvited traffic from passing through the firewall, place an any-any-any drop rule (Cleanup Rule) at the bottom of each security zone context

Which of the following is required for counter-controlled repetition?

A. a boolean
B. a method
C. a condition
D. All of the above

Answers

Final answer:

Counter-controlled repetition requires a condition to determine when the loop should stop, involving initializing a counter, setting a condition for it, and updating the counter within the loop. No boolean or method is strictly required, just the condition.

Explanation:

The question asks which of the following is required for counter-controlled repetition. The correct answer is C. a condition. In computer programming, counter-controlled repetition requires a condition to determine when the repetition should stop. This involves initializing a counter to a starting value, setting a condition for the counter (such as counter < 10), and updating the counter within the loop (often incrementing or decrementing). This loop continues to execute as long as the condition evaluates to true.

For example, in a for loop, you might see something like for(int i = 0; i < 10; i++), where i is the counter, i < 10 is the condition that must be true for the loop to continue, and i++ updates the counter. No boolean or method is strictly required for this process, just the condition that guides the repetition.

What type of analysis should be used to respond to the statement, "Let's cut advertising by $1000 repeatedly so we can see its relationship to sales"?

Answers

Answer:

Sensitivity analysis.

Explanation:

Data analytics is a method of interpreting a large group of data, that predicts future outcomes or describe current situation of the company, for appropriate decision to be made. Analyzing data creates a flexible environment to change  data to observe the resultant output.

Sensitivity analysis is used to analyse uncertain output by changing the input. It is used to ascertain if an output generated by a determined input can be desirable or considered.

The packets used to transmit voice on the Internet are similar to the packets that are used to send email. What are some of the advantages of this approach ?

Answers

Answer:

Quality of service (QOS).

Explanation:

In recent computer networking, the convergence of voice, video and text data packet has been made possible. There is no need for a dedicated network for a particular type of packet.

QOS or quality of set is a service rendered to voice or audio packets in VoIP phones to enhance communication.

The email is a digital mailing system that can be used to send all three packets. It enjoys the QOS as voice packets. It is given high preference for transmission and uses the TCP protocol to transmit data reliably.

Which of the following is a best practice for a strong password policy?
O Users must reuse one of the last five passwords.
O Passwords may be reset only after 30 days.
O Passwords must meet basic complexity requirements.
O Organizational Unit policy should be enforced over Domain policy.

Answers

Answer:

Passwords must meet basic complexity requirements.

Explanation:

Password should contain:

Uppercase lettersLowercase lettersdigits (0 through 9)special characters like @#$%^&*minimum length of 8

Passwords should not contain:

user's name or surnamebirth year/datenot similar to previous passwordaccount/identity number

A data file "parttolerance.dat" stores on one line, a part number, and the minimum and maximum values for the valid range that the part could weigh. Write a script "parttol" that will read these values from the file, prompt the user for a weight, and print whether or not that weight is within range. For example, IF the file stores the following:>> type parttolerance.dat123 44.205 44.287Here might be examples of executing the script:>> parttolEnter the part weight: 44.33The part 123 is not in range>> parttolEnter the part weight: 44.25The part 123 is within range

Answers

Final answer:

The script 'parttol' reads a data file with part numbers and weight tolerances, prompts for a weight input, and assesses if it's within range, providing feedback on part validity.

Explanation:

The question involves writing a script parttol for reading a data file named parttolerance.dat which contains part numbers and their respective weight tolerance ranges. The script should then prompt the user for a weight input and determine if that weight is within the range specified for a part number.

Here's a pseudocode outline for the parttol script:

Open and read the contents of parttolerance.dat.Extract the part number, minimum, and maximum weight values.Prompt the user to enter a weight.Check if the entered weight is within the range.Print a message indicating whether the part is within range.

The execution of this script provides feedback to the user about the validity of the part's weight, thereby ensuring quality control in a manufacturing or engineering context.

Do you believe that OOP should be phased out and we should start working on some alternative(s)? Provide your answer with Yes or No.

Give your opinion with two solid reasons to support your answer.

Answers

Answer:

I don't think so. In today's computer era, many different solution directions exist for any given problem. Where OOP used to be the doctrine of choice, now you would consider it only when the problem at hand fits an object-oriented solution.

Reason 1: When your problem can be decomposed in many different classes with each many instances, that expose complex interactions, then an OO modeling is justified. These problems typically produce messy results in other paradigms.

Reason 2: The use of OO design patterns provides a standardized approach to problems, making a solution understandable not only for the creator, but also for the maintainer of code. There are many OO design patterns.

We will pass in 2 values, X and Y. You should calculate XY XY and output only the final result. You will probably know that XY XY can be calculated as X times itself Y times. # Get X and Y from the command line:import sysX= int(sys.argv[1])Y= int(sys.argv[2])# Your code goes here

Answers

Answer:

import sys

# The value of the second argument is assigned to X

x = int(sys.argv[1])

# The value of the third argument is assigned to Y

y = int(sys.argv[2])

# The result of multiplication of x and y is assigned to 'result'

result = x * y

#The value of the result is displayed to the user

print("The result of multiplying ", x, "and ", y, "is", result)

Explanation:

First we import sys which allow us to read the argument passed when running the program. The argument is number starting from index 0; the name of the python file been executed is sys.argv[0] which is the first argument. The second argument is sys.argv[1] and the third argument is sys.argv[2].

The attached file is named multplyxy (it wasn't  saved as py file because the platform doesn't recognise py file); we can execute it by running: python3 multiplyxy.py 10 23

where x will be 10 and y will be 23.

To run the attached file; it content must be saved as a py file: multiplyxy.py

What would be the output of the following program?

int main() {
struct message
{ int num;
char mess1[50];
char msg2[50] ;
} m ;
m. num = 1;
strcpy (m.msg1, "We had lot of homework." );
strcpy(m.msg2," Hope it is the last one);
/* assume that the strucure is located at address 2004*/
printf ("\n%u%u%u\n", &m.num, m.msgi, m3 m2 m.msg2 );
printf ("\n%d %s %s", m.num,m.msgi, m.msg2);
return 0;
}

Answers

Answer:

Output: 2004 2008 2058  

Explanation:

In the first printf command it will print the address of the variables num, msg1, msg2. And in the second printf command it will print the values of the variables num, msg1, msg2. As the address of the structure is 2004 And the size of the integer is 4 byte so size will increase with 4 bytes and the size of character is 1 byte so it will increase by 1*50= 50 bytes.

Hence, the output is 2004 2008 2058  

What is the output of the following query? SELECT INSERT ('Knowledgeable', 5, 6, 'SUPER');

Answers

Answer:

The above query gives an error.

Explanation:

The query gives an error because is not the correct syntax of the select or inserts query.The syntax of the select query is as follows: "select Attributes_1_name, Attributes_2_name,...., Attributes_n_name from table_name;".The syntax of the insert query is : "insert into table_name (column_1_name, column_2_name,...,column_n_name) values (column_1_value, column_2_value,...,column_n_value);".The syntax of the insert and select query is : "insert into table_name (select Attributes_1_name, Attributes_2_name,...., Attributes_n_name from table_name);".But the above query does not satisfy any property which is defined above. Hence it gives a compile-time error.

What is the value of vals[4][1]? double[][] vals = {{1.1, 1.3, 1.5}, {3.1, 3.3, 3.5}, {5.1, 5.3, 5.5}, {7.1, 7.3, 7.5}};

Answers

Answer:

When the user concludes the value of "vals[4][1]", then it will give an exception of "ArrayIndexOutOfBoundsException".

Explanation:

It is because the size of the above array is [4*3] which takes the starting index at [0][0] and ending index at [3][2]. It is because the array index value starts from 0 and ends in (s-1). When the double dimension array size is [5][5], then it will conclude the value of [4][1].The above array have following index which value can be calculated :-- [0][0],[0][1],[0][2],[1][0], [1][1],[1][2], [2][0], [2][1], [2][2],[3][0],[3][1] and [3][2].

Which type of attack modifies the fields that contain the different characteristics of the data that is being transmitted?

Answers

Answer:

An HTTP Header attack

Explanation:

In web applications an HTTP refers to Hypertext Transfer Protocol and an HTTP Header is the value that is displayed in  a request or response message, the header has a name and a value separated by a colon.

An HTTP header attack called an header injection is a vulnerability that is present when users' inputs are required for the dynamic generation of HTTP headers. This vulneraility allows several security threats to be carried out, some examples are:

Malicious site redirection Cross-site scripting, and Session fixation through the set-cookie header

State three reasons that Visual Basic is one of the most widely used programming languages in the world.

Answers

1) It is easily implemented in the most major Operating System in the world; Microsoft Windows.

2) You can easily use it to develop GUIs (Graphical User Interfaces) using the most common script writer for the programming language, Visual Studio by Microsoft.

3) It is an easy programming language to start with for upcoming programmers as it has a friendly Syntax, using simple rules and English-like Keywords.
Final answer:

Visual Basic is widely used for three reasons: it is easy to learn, provides rapid application development, and integrates well with Microsoft products.

Explanation:Three Reasons Visual Basic is Widely UsedEasy to Learn: Visual Basic is known for its simplicity and beginner-friendly nature. The language uses a graphical user interface (GUI) and provides drag-and-drop functionality, making it easier for new programmers to understand and create applications.Rapid Application Development (RAD): Visual Basic offers a wide range of pre-built components and controls that simplify the development process. Developers can quickly prototype and create applications, reducing the time and effort required to build software.Integration with Microsoft Products: Visual Basic is developed and supported by Microsoft, which provides extensive documentation, resources, and integration with other Microsoft technologies like Excel, Word, and Access. This makes it a popular choice for building Windows-based applications.

Learn more about Reasons for Visual Basic's popularity here:

https://brainly.com/question/36344044

#SPJ3

The cardinality of a relationship is the maximum number of entity occurrences that can be involved in it. (T/F)

Answers

Answer:

False

Explanation:

In an entity relationship (ER) model, which is the conceptual illustration of certain entities and the relationships that exist between them, the cardinality of a relationship is the possible (minimum and maximum) number of entity occurrences that can be associated or involved in it.

Note: An entity is a real world object that is being modeled.

For example, a school has many staff members. The school and the staff members are the objects while the relationship between the school and the staff members is one-to-many.

One, many, zero are all values of cardinality.

Which command would rename the file cows.txt to cheezburger.txt? Select one: a. mv cows.txt cheezburger.txt b. I can haz cheezburger! c. rename cows.txt d. rn cows.txt cheezburger.txt e. rm cows.txt

Answers

Answer:

Option A i.e., mv cows.txt cheezburger.txt is the correct option.

Explanation:

In Linux, mv means move that is used to move a file from one destination to other but the user also used the mv command for renaming the file because it is the easiest way to rename any file to others.

Syntax:

mv first_file.ext new_file.ext

In the above syntax, mv is the command and first_file is the name of that file whose name wants to be change and .ext is the file extension, new_file.ext is that file that name wants to be applied on first one.

When disabling inherited permissions on an object, what happens if you select Remove all inherited permissions from this object?

Answers

Answer:

Answer explained below

Explanation:

When disabling inherited permissions on an object, if you select Remove all inherited permissions from this object then you lose every user or group assigned to the folder.

This will delete all existing permissions, including administrator accounts, leaving you a blank slate to apply your own permissions to the folder.

Create a C++ program that consists of the following: In main create the following three variables: A char named theChar A double named theDouble An int named theInt Fill each of these variables with data taken as input from the keyboard using a single cin statement. Perform the following task on each variable: Increment theChar by one Decrement theDouble by two Square theInt This should be done on separate lines. Note, outputting theChar + 1 is not modifying the variable. It is simply outputting it. Output the value of each variable to the screen on separate lines using cout statements. Your program should also output the name of the variable followed by a colon.

Answers

Answer:

The source code and output is attached.

I hope it will help you!

Explanation:

If someone’s boss wanted to send a message to an employee that contains both a video and a Word processing document, which Internet service would be the most appropriate for her to use?\

Answers

Answer:

Email.

Explanation:

Email or electronic mail is a digital messaging platform that sends digitised data through the internet to a specific or group of specified receivers.

It uses the IMAP protocol to download copies of received data from the server to the client's computer and the POP protocol to store the data only on the server, with a copy sent to the client.

The email environment provides an attachment tool to add video, image or audio files to text documents on the message to be sent across.

A pair of single quotes ( ‘ ) will prevent the shell from interpreting any metacharacter.
True or False?

Answers

Answer: True

Explanation:

In Linux, a single quote around a string will prevent the shell from interpreting any metacharacter.

Security awareness training can include special all-hands meetings called __________ meetings that are held between team or departmental leaders, with those leaders then sharing the information they've gained from those meetings with employees.

Town Hall
Task Force
Awareness
Security Reminders

Answers

Answer:

Task Force

Explanation:

Task Force is a special unit formed to address or handle a specific task. A task force team can consist of several selected key persons such as team or departmental leaders. In this context, the task force meeting are held between the team leaders who gain information of security awareness training and then pass down the training information to the rest of their respective department employees.

What does this method do?
public static int foo(String [][] a)
{
int b = 0;
for (int I = 0; i {
b++;
}
return b;
}

Answers

COMPLETE QUESTION:

What does this method do?

public static int foo(String [][] a)

{

int b = 0;

for (int i = 0; i<a.length; i++)

{

b++;

}

return b;

}

Answer:

Returns the value of b which is the dimension of the array

Explanation:

The method foo accepts a multi dimension array and returns the dimension of the array. A complete code implementation and call to the method is given below:

public class TestClass {

   public static void main(String[] args) {

   String [ ] [ ] arr = {{"gh","hj","fg", "re","tr"},{"","er","df","fgt", "tr"}};

       System.out.println(foo(arr));

   }

   public static int foo(String [ ][ ] a)

   {

       int b = 0;

       for (int i = 0; i<a.length; i++)

       {

           b++;

       }

       return b;

   }

}

The output from the code snippet is the value of b which is 2

Other Questions
why, according to garraty, has the growth of presidential primaries made the selection of the vise president less democratic According to the ______, a neuron is either sufficiently stimulated and an action potential occurs, or a neuron is not sufficiently stimulated and an action potential does not occur. A particle starts from the origin at t = 0 with a velocity of and moves in the xy plane with a constant acceleration of . At the instant the particle's x coordinate is 29 m, what are (a) its y coordinate and (b) its speed? The textbook advises that an ethical student of culture should develop _____________ to understand ourselves and our position in society. some of Helen's plants need water every day, some need water every other day,and others need water every third day. if she waters them all today, how many days will it be before she waters them all again A solution is made by mixing 36. g of heptane (C_7H_16) and 16. g of chloroform (CHCl_3). Calculate the mole fraction of heptane in this sol'. Be sure your answer has the correct number of significant digits. 8 2/5 - 5 3/5 need help solving step by step A jar contains 6 blue marbles, 4 yellow marbles, and 10 green marbles. What is the probability of randomly choosing a blue marble, replacing it, and then choosing a yellow marble? 1. Briefly, what did Cavour get from Napoleon here at Plombieres? Sierra is visiting and calling venues to see who is available to host her parents' anniversary party. What process stage is she in?a) initiating.b) executing.c) monitoring and controlling.d) closing. Bruce, a buyer, contracted with Steve, a seller, to buy ten dozen bicycle tires for $960. Payment was due thirty days after delivery. When the tires arrived they were found to be non-conforming to the contract, and Bruce rejected the shipment after inspection. Bruce still has the tires and is required to:________a. Sell the tires to someone else to recover the damage caused by the non-conformity.b. Hold the tires with reasonable care for disposition as the seller instructs.c. Accept the tires and sue for damages for the non-conformity.d. Send the tires back to the seller.e.return the tires to the carrier that brought them. If you could measure the resting metabolic rate of the following animals, which would most likely have the lowest mass-specific (or relative) metabolic rate?A. 100 Kg HorseB. 100 Kg SharkC. 10 g MouseD. 10 g Fish An 18-month-old has fanning of the toes and dorsiflexion of the big toe seen on physical exam. Based on this finding the nurse should: at a currency exchange,8 u.s dollars can be exchanged for 6 euros. how many euros will you receive for 1 u.s dollar Round 75,218 to the nearest thousand what were the 4 parts that the Union used as a strategy during the civil war AB= 7x-6 BC= 12-2x B is the midpoint of AC. Find AB Voir dire is the process whereby the jurors ask prospective judges questions to determine whether they would be biased in their decisions.True / False. What does the impulse-momentum theorem state? A. Impulse equals change in momentum B. Impulse and momentum change force. C. Impulse and momentum are conserved. D. Force equals change in momentum APEX physical science Which relationship is a direct variation? Steam Workshop Downloader