Represent the logic of a program that allows the user to enter two values. The program outputs the product of the two values.

Answers

Answer 1
1. Prompt the user to enter value 1
2. Store value 1 in variable 1
3 Prompt the user to enter value 2
4 Store value 2 in variable 2
5 Create a variable that takes variable 1 and multiply it with variable two, product.
6. Output the value of variable product.

Related Questions

Question 2 (1 point) What should the main body paragraphs of a written document include?
identification of the subject

an outline

facts, statements, and examples a

summary of key points

Answers

The key concept or subject that will be covered in that specific paragraph should be introduced in the first sentence of that paragraph. Providing background information and highlighting a critical point can accomplish.

What information should a body paragraph contain?

At a minimum, a good paragraph should include the following four components: Transition, main idea, precise supporting details, and a succinct conclusion (also known as a warrant)

What constitutes a primary body paragraph in an essay?

The theme sentence (or "key sentence"), relevant supporting sentences, and the conclusion (or "transitional") sentence are the three main components of a strong body paragraph. This arrangement helps your paragraph stay on topic and provides a clear, concise flow of information.

To know more about information visit:-

https://brainly.com/question/15709585

#SPJ1

The base class Pet has attributes name and age. The derived class Dog inherits attributes from the base class Pet class and includes a breed attribute. Complete the program to:

Create a generic pet, and print the pet's information using print_info().
Create a Dog pet, use print_info() to print the dog's information, and add a statement to print the dog's breed attribute.
Ex: If the input is:

Dobby
2
Kreacher
3
German Schnauzer
the output is:

Pet Information:
Name: Dobby
Age: 2
Pet Information:
Name: Kreacher
Age: 3
Breed: German Schnauzer

code-
class Pet:
def __init__(self):
self.name = ''
self.age = 0

def print_info(self):
print('Pet Information:')
print(' Name:', self.name)
print(' Age:', self.age)

class Dog(Pet):
def __init__(self):
Pet.__init__(self)
self.breed = ''

my_pet = Pet()
my_dog = Dog()

pet_name = input()
pet_age = int(input())
dog_name = input()
dog_age = int(input())
dog_breed = input()

# TODO: Create generic pet (using pet_name, pet_age) and then call print_info()

# TODO: Create dog pet (using dog_name, dog_age, dog_breed) and then call print_info()

# TODO: Use my_dog.breed to output the breed of the dog

Answers

Here's the complete code with the TODOs filled in:

The Code

class Pet:

def init(self):

self.name = ''

self.age = 0

def print_info(self):

   print('Pet Information:')

   print(' Name:', self.name)

   print(' Age:', self.age)

class Dog(Pet):

def init(self):

Pet.init(self)

self.breed = ''

pet_name = input()

pet_age = int(input())

dog_name = input()

dog_age = int(input())

dog_breed = input()

my_pet = Pet()

my_pet.name = pet_name

my_pet.age = pet_age

my_pet.print_info()

my_dog = Dog()

my_dog.name = dog_name

my_dog.age = dog_age

my_dog.breed = dog_breed

my_dog.print_info()

print('Breed:', my_dog.breed)

Sample Input:

Dobby

2

Kreacher

3

German Schnauzer

Sample Output:

Pet Information:

Name: Dobby

Age: 2

Pet Information:

Name: Kreacher

Age: 3

Breed: German Schnauzer

Read more about programs here:

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

i want code to put in code vision avr for conurrent controling LED lamp and cath-7 segment(without button)
the simulation in proteus should be like that we have one atmega and a led and 7 seg ground and res with one port of 7 seg in connected to micro and one port of led should be connect to micro.

Answers

Code for Concurrent Controlling of LED Lamp and Cath-7 Segment (without button)

-------------------------------------------------------------------------------------------------------------

To control a LED lamp and Cath-7 segment concurrently without using any button, we can use Code Vision AVR software. Here is the code for the same:

```

#include <mega16.h>

#include <delay.h>

void main()

{

   DDRB = 0xFF; // Set all pins of PORTB as output

   DDRC = 0xFF; // Set all pins of PORTC as output

   while(1)

   {

       // Turn on LED lamp

       PORTB.0 = 1;

       delay_ms(500);

       PORTB.0 = 0;

       delay_ms(500);

       // Display digits on Cath-7 segment

       PORTC = 0x3F; // Display 0

       delay_ms(1000);

       PORTC = 0x06; // Display 1

       delay_ms(1000);

       PORTC = 0x5B; // Display 2

       delay_ms(1000);

       PORTC = 0x4F; // Display 3

       delay_ms(1000);

       PORTC = 0x66; // Display 4

       delay_ms(1000);

       PORTC = 0x6D; // Display 5

       delay_ms(1000);

       PORTC = 0x7D; // Display 6

       delay_ms(1000);

       PORTC = 0x07; // Display 7

       delay_ms(1000);

       PORTC = 0x7F; // Display 8

       delay_ms(1000);

       PORTC = 0x6F; // Display 9

       delay_ms(1000);

   }

}

```

Once you have written the code, you can simulate it in Proteus. Here are the steps to simulate the circuit:

1. Open Proteus and create a new project.

2. Search for "ATmega16" in the components library and add it to the project.

3. Add a LED and Cath-7 segment to the project by searching for them in the components library.

4. Connect the LED to any PIN of PORTB and Cath-7 segment to any PIN of PORTC.

5. Now, double-click on the ATmega16 chip and upload the code to it.

6. Finally, run the simulation and you should see the LED lamp and Cath-7 segment displaying digits concurrently.

Hope this helps!

given the hexadecimal representation of a floating-point number as 0x8ff0c000, find the equivalent decimal value of the number.

Answers

Where the hexadecimal representation of a floating-point number as 0x8ff0c000 is given, the equivalent decimal value of the number is: -7.834372 x 10^25.

What is the rationale for the above response?  

To convert a hexadecimal representation of a floating-point number to decimal, we need to first separate the bits into their respective parts: sign bit, exponent bits, and mantissa bits. For a single-precision floating-point number in IEEE 754 format, the layout is as follows:

1 bit for sign

8 bits for exponent

23 bits for mantissa

The given hexadecimal representation of the floating-point number is 0x8ff0c000. In binary, this is:

10001111111100001100000000000000

The leftmost bit is the sign bit, which is 1, indicating a negative number.

The next 8 bits are the exponent bits, which are 00011111 in binary. To get the actual exponent, we need to subtract the bias, which is 127. So the exponent is:

00011111 - 127 = -96

The remaining 23 bits are the mantissa bits. To convert these to decimals, we first add an implicit leading 1 to the front of the mantissa. So the mantissa is:

1.10001100000000000000000

To get the decimal value of the mantissa, we need to add up the values of each bit, weighted by their position. The first bit after the decimal point has a value of 1/2, the next bit has a value of 1/4, and so on, with each subsequent bit having half the value of the previous bit.

So the decimal value of the mantissa is: -7.834372 x 10^25.

Learn more about hexadecimal  at:

https://brainly.com/question/13041189

#SPJ1

Programming style refers to the way a programmer uses elements such as identifiers, spaces, and blank lines

Answers

Answer

Absolutely true.

Explanation

i.e:

bool test = false;

bool test=false;

bool bTest=false;

bool bTest = false;

if(test) {

}

if (test) {

}

if(test)

{

}

if (test)

{

}

if ( test )

{

}


Style can refer to quite a bit of things but that statement is true.

Draw a third domain model class diagram that assumes a listing might have multiple owners. Additionally, a listing might be shared by two or more agents, and the percentage of the com- mission that cach agent gets from the sale can be different for cach agent

Answers

The required  third domain model class diagram is attached accordingly.

What is the explanation of the diagram?

The third domain model class diagram represents a system where a listing can have multiple owners and can be shared by multiple agents.

Each agent may receive a different percentage of the commission from the sale.

The key elements in this diagram include Author, Library, Book, Account, and Patron. This model allows for more flexibility in managing listings, ownership, and commission distribution within the system.

Learn more about domain model:
https://brainly.com/question/32249278
#SPJ1

Draw a third domain model class diagram that assumes a listing might have multiple owners. Additionally,

Assignment 4: Divisible by Three
Write a program that will ask a user how many numbers they would like to check. Then, using a for loop, prompt the user for a number, and output if that number is divisible by 3 or not. Continue doing this as many times as the user indicated. Once the loop ends, output how many numbers entered were divisible by 3 and how many were not divisible by 3.

Hint: For a number to be divisible by 3, when the number is divided by 3, there should be no remainder - so you will want to use the modulus (%) operator.

Hint: You will need two count variables to keep track of numbers divisible by 3 and numbers not divisible by 3.

Sample Run 1
How many numbers do you need to check? 5
Enter number: 20
20 is not divisible by 3.
Enter number: 33
33 is divisible by 3.
Enter number: 4
4 is not divisible by 3.
Enter number: 60
60 is divisible by 3.
Enter number: 8
8 is not divisible by 3.
You entered 2 number(s) that are divisible by 3.
You entered 3 number(s) that are not divisible by 3.
Sample Run 2
How many numbers do you need to check? 3
Enter number: 10
10 is not divisible by 3.
Enter number: 3
3 is divisible by 3.
Enter number: 400
400 is not divisible by 3.
You entered 1 number(s) that are divisible by 3.
You entered 2 number(s) that are not divisible by 3.

Benchmarks
Prompt the user to answer the question, “How many numbers do you need to check? “
Create and initialize two count variables - one for numbers divisible by 3 and one for numbers not divisible by 3.
Based on the previous input, create a for loop that will run that exact number of times.
Prompt the user to "Enter number: "
If that number is divisible by 3, output “[number] is divisible by 3.”
Update the appropriate count variable.
Or else if the number is not divisible by 3, output “[number] is not divisible by 3.”
Update the appropriate count variable.
Output “You entered [number] number(s) that are divisible by 3.”
Output “You entered [number] number(s) that are not divisible by 3.”

Answers

Answer:

# Prompt the user to enter how many numbers they would like to check

num_numbers = int(input("How many numbers do you need to check? "))

# Initialize two count variables - one for numbers divisible by 3, and one for numbers not divisible by 3

count_divisible = 0

count_not_divisible = 0

# Create a for loop that will run the number of times specified by the user

for i in range(num_numbers):

   # Prompt the user to enter a number

   number = int(input("Enter number: "))

   # Check if the number is divisible by 3

   if number % 3 == 0:

       # If the number is divisible by 3, output a message and update the count

       print(f"{number} is divisible by 3.")

       count_divisible += 1

   else:

       # If the number is not divisible by 3, output a message and update the count

       print(f"{number} is not divisible by 3.")

       count_not_divisible += 1

# Output the final counts of numbers that are and are not divisible by 3

print(f"You entered {count_divisible} number(s) that are divisible by 3.")

print(f"You entered {count_not_divisible} number(s) that are not divisible by 3.")

Dev10 is an Active Directory Domain Services (AD DS) domain member that runs Windows 10 Enterprise.
Dev10 is used by the development department for version alpha testing of applications under development.
A specific domain user account named DevTester is used exclusively for alpha testing.
The company has an Office 365 E3 subscription. DevTester is not configured as a subscriber.
You prepare to install a new application version for testing.
You need to be able to revert to the software, settings, and original data files from before testing as quickly
as possible.
Solution: You create a system restore point before installing the application.

Answers

Do I suppose to answer a question please let me know

explain the procedure you will undertake to create a new partition​

Answers

Ans: To create and format a new partition (volume) Right-click an unallocated region on your hard disk, and then select New Simple Volume. In the New Simple Volume Wizard, select Next. Enter the size of the volume you want to create in megabytes (MB) or accept the maximum default size, and then select Next.

(a) Discuss why the concepts of creativity, Innovation and initiative are important to conduct before one goes into business:

Answers

Answer:

Creativity, innovation and initiative are important concepts to consider before starting a business because they provide the foundation for success. Creativity is essential for coming up with new ideas and solutions to problems that can help a business stand out from its competitors. Innovation is necessary for taking those creative ideas and turning them into tangible products or services that customers will find useful. Initiative is needed to take action on these ideas, as well as the courage to take risks in order to make progress. Without creativity, innovation and initiative, businesses may struggle to stay competitive in their industry or even survive in the long run.

Explanation:

How many subnets and host per subnet are available from network 192.168.43.0 255.255.255.224?

Answers

It should be noted that the number of subnets and hosts available from network 192.168.43.0 255.255.255.224 is 8 and 32, respectively. Only 30 of the 32 hosts are generally functional.

What is a host in computer networking?

A network host is a computer or other device that is connected to a computer network. A host can serve as a server, supplying network users and other hosts with information resources, services, and applications. Each host is given at least one network address.

A computer network is a group of computers that share resources on or provided by network nodes. To communicate with one another, computers use common communication protocols over digital links.

So, in respect to the above response, bear in mind that we may compute the total number of: by putting the information into an online IPv4 subnet calculator.

8 subnets; and30 hosts available for 192.168.43.0 (IP Address) and 255.255.255.224 (Subnet)

Learn more about hosts:

https://brainly.com/question/14258036

#SPJ1

Earth, Wind & Fire were NOT known for combining many different styles of music together.Required to answer. Single choice.
(1 Point)

True

False

Answers

Answer:

false

Explanation:

Cause I don't believe you can't use earth, wind,and fire to create music.

Any computer expert to help me answer this question plz am giving brainliest

Any computer expert to help me answer this question plz am giving brainliest

Answers

Answer:

(Shown below)

Explanation:

The email is written as:

boby(at)qengineers.org

The first part of the email adress is the name, which is Boby. (boby(at)qengineers.org)

The second part will always be the (at) sign. (boby(at)qengineers.org)

The third and last part is the company, or where the email is coming from. (boby(at)qengineers.org)

Hope this helps!

(Also please note I put (at) for the at symbol because brainly doesn't let me type it in)

Write a method printShampooInstructions(), with int parameter numCycles, and void return type. If numCycles is less than 1, print "Too few.". If more than 4, print "Too many.". Else, print "N: Lather and rinse." numCycles times, where N is the cycle number, followed by "Done.". End with a newline and decare/use loop variable. Example output for numCycles = 2:
1: Lather and rinse.
2: Lather and rinse.
Done.
import java.util.Scanner; 3 public class ShampooBottle 4 5 Your solution goes here / 7 public static void main (String [] args) ShampooBottle trialSize - new ShampooBottle); trialsize.printShampooInstructions (2) 10 Run View your last submission Your solution goes here / public void printShampooInstructions (int numCycles) f if (numCycles 1) System.out.printin("Too few.") else if (numCycles4) System.out.printin("Too many.") else System.out.println("Done."); for (int i = 1; i (z numCycles ; ++i){ System.out . printin (? + ": Lather and rinse.");

Answers

Answer:

if (numCycles < 1){

        System.out.println("Too few.");

     }

     else if (numCycles > 4){

        System.out.println("Too many.");

        }    

  else{

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

  {

     System.out.println(i + ": Lather and rinse.");

  }

     System.out.println("Done.");

  }

 

Explanation:


Using the in databases at the , perform the queries show belowFor each querytype the answer on the first line and the command used on the second line. Use the items ordered database on the siteYou will type your SQL command in the box at the bottom of the SQLCourse2 page you have completed your query correctly, you will receive the answer your query is incorrect , you will get an error message or only see a dot ) the page. One point will be given for answer and one point for correct query command

Using the in databases at the , perform the queries show belowFor each querytype the answer on the first

Answers

Using the knowledge in computational language in SQL it is possible to write a code that using the in databases at the , perform the queries show belowFor each querytype.

Writting the code:

Database: employee

       Owner: SYSDBA                        

PAGE_SIZE 4096

Number of DB pages allocated = 270

Sweep interval = 20000

Forced Writes are ON

Transaction - oldest = 190

Transaction - oldest active = 191

Transaction - oldest snapshot = 191

Transaction - Next = 211

ODS = 11.2

Default Character set: NONE

Database: employee

       Owner: SYSDBA                        

PAGE_SIZE 4096

...

Default Character set: NONE

See more about SQL at brainly.com/question/19705654

#SPJ1

Using the in databases at the , perform the queries show belowFor each querytype the answer on the first

The software developer is using a 16-Color Bitmap images. How many bits would be used to encode data for one pixel

Answers

Answer:

24 bits

Explanation:

Answer:

Explanation:

Given:

N = 16

_________

x - ?

2ˣ = N

2ˣ = 16

2ˣ = 2⁴

x = 4

Hi everyone, how do I sign in with my personal account on my Chromebook? It says here that I'm not allowed to sign in, and I would really appreciate it if you guys helped me.

Hi everyone, how do I sign in with my personal account on my Chromebook? It says here that I'm not allowed

Answers

Answer:

Some schools have it set so that only an account with a school email can log into the chromebook.

Explanation:

________________________________

If you use a VPN, it will block the IP Address that's locked. The Network's domain is set to only allow certain accounts to sign. Another way will be to format the entire PC even the hardrive & set it up from the beginning.

________________________________

how to download my x games to my pc

Answers

Answer:

You can only download x-box games to your pc if your computer is a windows 10 that has both x-box live and Microsoft store. Most x-box games available on the microsoft store requires an x-box live account to download, so you first need to create an account or sign in. Then, after fully syncing your account, you may start downloading games. But keep in mind, if your computer has a w10 hard drive but is a w7 body, some high-quality games might not work.

What type of light comes from reflections off other objects?

Answers

Light that comes from reflections off other objects is called reflected light.

Integers limeWeight1, limeWeight2, and numKids are read from input. Declare a floating-point variable avgWeight. Compute the average weight of limes each kid receives using floating-point division and assign the result to avgWeight.

Ex: If the input is 300 270 10, then the output is:

57.00

how do I code this in c++?

Answers

Answer:

Explanation:

Here's the C++ code to solve the problem:

#include <iostream>

using namespace std;

int main() {

  int limeWeight1, limeWeight2, numKids;

  float avgWeight;

 

  cin >> limeWeight1 >> limeWeight2 >> numKids;

 

  avgWeight = (float)(limeWeight1 + limeWeight2) / numKids;

 

  cout.precision(2); // Set precision to 2 decimal places

  cout << fixed << avgWeight << endl; // Output average weight with 2 decimal places

 

  return 0;

}

In this program, we first declare three integer variables limeWeight1, limeWeight2, and numKids to hold the input values. We also declare a floating-point variable avgWeight to hold the computed average weight.

We then read in the input values using cin. Next, we compute the average weight by adding limeWeight1 and limeWeight2 and dividing the sum by numKids. Note that we cast the sum to float before dividing to ensure that we get a floating-point result.

Finally, we use cout to output the avgWeight variable with 2 decimal places. We use the precision() and fixed functions to achieve this.

Final answer:

The student can code the calculation of the average weight of limes that each kid receives in C++ by declaring integer and double variables, getting input for these variables, and then using floating-point division to compute the average. The result is then assigned to the double variable which is displayed with a precision of two decimal places.

Explanation:

To calculate the average weight of limes each kid receives in C++, declare three integers: limeWeight1, limeWeight2, and numKids. Receive these values from input. Then declare a floating-point variable avgWeight. Use floating-point division (/) to compute the average weight as the sum of limeWeight1 and limeWeight2 divided by the number of kids (numKids). Assign this result to your floating-point variable (avgWeight). Below is an illustrative example:

#include

  cin >> limeWeight1 >> limeWeight2 >> numKids;

}

Learn more about C++ Programming here:

https://brainly.com/question/33453996

#SPJ2

The objective is to work with your partner to fix the HTML bugs so that none of the code is pink. In general, how do I change HTML code color?

Answers

Answer:

Click inspect then go to change color

Explanation:

there you go have a nice day!

what are the characteristics of a computer system


Answers

Answer:

A computer system consists of various components and functions that work together to perform tasks and process information. The main characteristics of a computer system are as follows:

1) Hardware: The physical components of a computer system, such as the central processing unit (CPU), memory (RAM), storage devices (hard drives, solid-state drives), input devices (keyboard, mouse), output devices (monitor, printer), and other peripherals.

2) Software: The programs and instructions that run on a computer system. This includes the operating system, application software, and system utilities that enable users to interact with the hardware and perform specific tasks.

3) Data: Information or raw facts that are processed and stored by a computer system. Data can be in various forms, such as text, numbers, images, audio, and video.

4) Processing: The manipulation and transformation of data through computational operations performed by the CPU. This includes arithmetic and logical operations, data calculations, data transformations, and decision-making processes.

5) Storage: The ability to store and retain data for future use. This is achieved through various storage devices, such as hard disk drives (HDDs), solid-state drives (SSDs), and optical media (CDs, DVDs).

6) Input: The means by which data and instructions are entered into a computer system. This includes input devices like keyboards, mice, scanners, and microphones.

7) Output: The presentation or display of processed data or results to the user. This includes output devices like monitors, printers, speakers, and projectors.

8) Connectivity: The ability of a computer system to connect to networks and other devices to exchange data and communicate. This includes wired and wireless connections, such as Ethernet, Wi-Fi, Bluetooth, and USB.

9) User Interface: The interaction between the user and the computer system. This can be through a graphical user interface (GUI), command-line interface (CLI), or other forms of interaction that allow users to communicate with and control the computer system.

10) Reliability and Fault Tolerance: The ability of a computer system to perform consistently and reliably without failures or errors. Fault-tolerant systems incorporate measures to prevent or recover from failures and ensure system availability.

11) Scalability: The ability of a computer system to handle increasing workloads, accommodate growth, and adapt to changing requirements. This includes expanding hardware resources, optimizing software performance, and maintaining system efficiency as demands increase.

These characteristics collectively define a computer system and its capabilities, allowing it to process, store, and manipulate data to perform a wide range of tasks and functions.

Hope this helps!

what is polymerization1​

Answers

Answer:

Polymerization, any process in which relatively small molecules, called monomers, combine chemically to produce a very large chainlike or network molecule, called a polymer. The monomer molecules may be all alike, or they may represent two, three, or more different compounds.

please give me brainliest~❤︎ت︎

taxpayers with home offices who use the actual expense method for computing home office expenses must allocate indirect expenses of the home between personal use and home office use. only expenses allocated to the home office use are deductible. group starts

Answers

Taxpayers who utilize the actual expense technique to calculate their home office expenses must divide their home's indirect costs between personal and business use. Only costs related to using a home office are deductable. which is accurate, the group begins.

Are home office expenses direct or indirect?

Direct business expenses are entirely deductible. The portion of your home's square footage that is exclusively used for your business is the amount of indirect home office expenses that are partially deductible.

Regular Method: You divide the costs of maintaining the home between your personal and business use to determine the deduction for home office expenses. You are allowed to deduct all of your direct business expenses, and you are allowed to divide your home's total indirect costs according to the amount of its floor space that is used for your business.

The permitted square footage is multiplied by the recommended rate to get the amount of deductible expenses.The lesser of 300 square feet or the portion of a home used for a permissible business use is the permitted square footage.The recommended price is $5.

To learn more about office expense refer to :

https://brainly.com/question/25811981

#SPJ4

Of the following field which would be the most appropriate for the primary key in a customer information table?

A: Customer Name B: Customer Number C: Phone Number D: Customer Address

Answers

Answer:

Customer Number

Explanation:

Write a program whose input is a character and a string, and whose output indicates the number of times the character appears in the string.

Ex: If the input is:

n Monday
the output is:

1
Ex: If the input is:

z Today is Monday
the output is:

0
Ex: If the input is:

n It's a sunny day
the output is:

2
Case matters.

Ex: If the input is:

n Nobody
the output is:

0
n is different than N.





This is what i have so far.
#include
#include
using namespace std;

int main() {

char userInput;
string userStr;
int numCount;

cin >> userInput;
cin >> userStr;

while (numCount == 0) {
cout << numCount << endl;
numCount = userStr.find(userInput);

}
return 0;
}


Answers

Here is a Python program:

tmp = input().split(' ')
c = tmp[0]; s = tmp[1]
ans=0
for i in range(len(s)):
if s[i] == c: ans+=1

# the ans variable stores the number of occurrences
print(ans)

Write a function to calculate the distance between two points Distance( x1, y1,x2.2) For example Distance(0.0,3.0, 4.0.0.0) should return 5.0 Use the function in main to loop through reading in pairs of points until the all zeros are entered printing distance with two decimal precision for each pair of points.
For example with input
32 32 54 12
52 56 8 30
44 94 4439 6
5 19 51 91 7.5
89 34 0000
Your output would be:__________.
a. 29.73
b. 51.11
c. 55.00
d. 73.35
e. 92.66

Answers

Answer:

The function in Python3  is as follows

def Distance(x1, y1, x2, y2):

   dist = ((x1 - x2)**2 +(y1 - y2)**2)**0.5

   return dist

   

Explanation:

This defines the function

def Distance(x1, y1, x2, y2):

This calculates distance

   dist = ((x1 - x2)**2 +(y1 - y2)**2)**0.5

This returns the calculated distance to the main method

   return dist

The results of the inputs is:

\(32, 32, 54, 12 \to 29.73\)

\(52,56,8,30 \to 51.11\)

\(44,94,44,39\to 55.00\)

\(19,51,91,7.5 \to 84.12\)

\(89,34,00,00 \to 95.27\)

Which common online presentation medium do people use to present their own articles?
A. news portal
B. company website
C. photo-sharing website
D. weblog

Answers

A: news portal hope this helps
A. news portal is the answer

I prefer a job where I am praise for good performance or I am accountable for results

Answers

Answer:

What?

Explanation:

What is one difference between a web page and a web application?

Answers

Answer:

A website is a group of globally accessible, interlinked web pages which have a single domain name. A web application is a software or program which is accessible using any web browser. Developing your website helps you in branding your business.

Other Questions
An instance of a relation A) is never empty B) is static C) is serializable D) is dynamic Colleen bought a cup of coffee that had 32 ounces in it. She drank 8 ounces of the coffee. What percent of the coffee is left? Production Possibilities forMP3 Players and Semi TrucksMP3 Players Semi Trucks0 58 419 328 235 140 0Using the table above, a combination of 40 MP3 players and 4 semi trucksis unattainable given the resources in the economy.is attainable and efficient.is attainable but inefficient.is unattainable and inefficient.is unattainable through trade with another nation. How do we determine the location of a recent earthquake? a.Port video cameras at the Earth's surface to determine which direction the shaking occured b.Measure the amplitude of seismic waves at a single seismic station c.Use seismic records horn three or more seismic stations d.Read newspaper accounts of the earthquake e.None of these answers are correct How much more energy would a magnitude 6 quake release than a magnitude 5 quake? a.About 1/10 as much b.About 20 times more c.Roughly 30 times more d.Roughly 10 times e.About 100 times. Mario swims, Ivan wrestles, and Consuelo runs.Simple SentenceCompound SentenceCompound SentenceComplex Sentence Watch help videoA gardener is planting two types of trees:Type A is 9 feet tall and grows at a rate of 7 inches per year.Type B is 7 feet tall and grows at a rate of 11 inches per year.Algebraically determine exactly how many years it will take for these trees to be the same height. PLEASE SOLVE ITS QUICK Solve | X +6| = 16 What is Delta. S for the reaction N2(g) O2(g) Right arrow. 2NO? Use Delta. G = 173. 3 kJ at 303. 0 K and Delta. H = 180. 7 kJ. Use Delta. G = Delta. H TDelta. S. 7. 4 J/K 7. 4 kJ/K 24. 42 kJ/K 24. 42 J/K. Factor 1/343 x3 - 1/125 0.001b3 - 8- send help -' In comparing the Supreme Courts decisions in the Amistad and Dred Scott cases, what conclusion could you draw about the members of the court? 1. The production function of a firm is F(K, L) = KL. The firm can buy inputs (K, L) at competitive prices wkand wl.a) What returns to scale have the firms production function?b) State the long-run cost minimization problem.c) What is the long-run compensated demand function for each input?d) What is the firms long-run total cost functionIn the short-run the firm can only hire K = 4 units of capital.e) State the short-run cost minimization problem.f) What is the short-run compensated demand function for each input?g) What is the firms short-run total cost functionh) How does the short-run and long-run total cost function compare to each other?i) For which input prices (wk, wL) and desired quantity q they are the same? The diagram snows the parts or a nower.Stigma.Style.Ovary.OvuleAntherFilamentWhat is the name of the part labeled 2 in the diagram?A. StamenB. UterusC. CarpelD. Petal2 help on this question plss! Hi can you guys help me pls thanks! Please help find the constant 8. What is m A to the nearest tenth?A14.122.9B Help 10 pts available !!!!! Which colonial leader founded Georgia as a place where debtors could settle?James OglethorpeRoger WilliamsWilliam BradfordJohn Winthrop So i am trying to help out my son with his homework and i do not remember this at all if anyone could help me it would greatly be appreciated if Mr. Davis ate 20 of the 50 chocolate chip cookies from the bag,what percent of the bag of cookies did he eat?