1. The Percentage of T9 and T10 also have the wrong number format. Change them to the Correct number format(to match the rest of the data in the column). What Value now Shows in T10?​

Answers

Answer 1

Answer:

60%

Explanation:

After changing the number format of the percentages of T9 and T10, the value that now shows in T10 due to the change from the wrong format to the Right format is 60%

This is because when a value is entered into a column in a wrong format the value would be different from other values entered rightly but when the format is changed to the right format, the correct value would show up.


Related Questions

Write a function (getResults) that returns the Fahrenheit equivalents of Celsius temperatures. The function will have the Celsius as the parameter.
The formula for converting a temperature from Celsius to Fahrenheit is
F = 9C + 32
5
F
where F is the Fahrenheit temperature, and C is the Celsius temperature.
Your function returns the Fahrenheit equivalent. (Python)

Write a function (getResults) that returns the Fahrenheit equivalents of Celsius temperatures. The function

Answers

Here's a Python function that converts a temperature from Celsius to Fahrenheit using the formula F = 9/5 * C + 32:

The Python Code

def getResults(celsius):

   fahrenheit = (9/5 * celsius) + 32

   return fahrenheit

You can call this function with a Celsius temperature to get the Fahrenheit equivalent:

>>> getResults(0)

32.0

>>> getResults(100)

212.0

>>> getResults(-40)

-40.0

Note that the function assumes that the input temperature is in Celsius. If you pass in a temperature in Fahrenheit, the result will be incorrect.

Read more about python programming here:

https://brainly.com/question/26497128

#SPJ1

Please help if you have the correct answer to the post test manufacturing and safety answer.
——— is a form of semi-renewable energy that you can produce from agricultural feedstock. It can be made from common crops
such as sugarcane, potato, manioc, and corn. It does not completely replace gasoline as a fuel because of efficiency, food, and environmental
concerns.

Answers

i believe it is corn. ethanol can be produced from corn biomass, and is commonly used to make gasoline. i’m not sure if this answers your question, or counts as a type of energy but i tried.

Answer:

ethanol

Explanation:

got it right on ed

if you want to present slides to fellow students or co workers, which productivity software should you use

Answers

Answer:

Power point is a good software to use for slides

Select the correct answer.
Rick is on a vacation and is taking a lot of pictures to create a scrapbook of the holiday. His camera displays black and white diagonal stripes on any object that is too brightly lit. Which camera part displays these zebra stripes?
A.
viewfinder
B.
battery pack
C.
shutter
D.
iris

Answers

Answer:

D.

Explanation:

I think.

Who is responsible for having Account/Relationship level Business Continuity Plan (BCP) in place?

Answers

The responsibility for having an Account/Relationship level Business Continuity Plan (BCP) in place usually lies with the company or organization providing the service or product. This is because they are responsible for ensuring the continuity of their operations and minimizing the impact of disruptions on their customers. However, it is also important for customers to have their own BCPs in place to ensure their own business continuity in case of a disruption. Ultimately, it is a shared responsibility between the service provider and the customer to have robust BCPs in place.

In a business or organizational context, the responsibility for having an Account/Relationship level Business Continuity Plan (BCP) in place typically falls on the account manager or relationship manager.

What is the Business

Account/relationship level BCP is a plan made specifically for a client or customer account or relationship to deal with their special needs and risks.

These plans are really important for businesses that have important clients or relationships to make sure that they can keep providing necessary services or products even if something unexpected happens like a natural disaster, cyberattack, or emergency.

Read more about Business  here:

https://brainly.com/question/18307610

#SPJ2

Write a single statement that assigns avg_sales with the average of num_sales1, num_sales2, and num_sales3. Sample outputs with: 3 4 8
Average sale: 5

Answers

Here is an example of a single statement that assigns the variable avg_sales with the average of num_sales1, num_sales2, and num_sales3 in Java:

avg_sales = (num_sales1 + num_sales2 + num_sales3) / 3.0;

This statement uses the addition operator (+) to sum the values of num_sales1, num_sales2, and num_sales3, and then divides the result by 3 using the division operator (/) to find the average. The division operator is used with a floating-point number (3.0) to ensure that the result is also a floating-point number.

For example, if num_sales1 = 3, num_sales2 = 4, num_sales3 = 8, the statement

avg_sales = (num_sales1 + num_sales2 + num_sales3) / 3.0;

will assign the value 5.0 to avg_sales.

The dealer’s cost of a car is 85% of the listed price. The dealer would accept any offer that is at least $500 over the dealer’s cost. Design an algorithm that prompts the user to input the list price of the car and print the least amount that the dealer would accept for the car. C++

Answers

Here is an algorithm in C++ that prompts the user to input the list price of the car and prints the least amount that the dealer would accept for the car:

#include <iostream>

using namespace std;

int main() {

   double list_price, dealer_cost, min_accepted_price;

   const double DEALER_COST_PERCENTAGE = 0.85;

   const double MIN_ACCEPTED_PRICE_OVER_COST = 500;

   cout << "Enter the list price of the car: ";

   cin >> list_price;

   dealer_cost = list_price * DEALER_COST_PERCENTAGE;

   min_accepted_price = dealer_cost + MIN_ACCEPTED_PRICE_OVER_COST;

   cout << "The least amount the dealer would accept for the car is: $" << min_accepted_price << endl;

   return 0;

}

The algorithm starts by including the library iostream and declaring the namespaces. Then it declares the variables that will be used in the program (list_price, dealer_cost, min_accepted_price) and the constants that will be used (DEALER_COST_PERCENTAGE and MIN_ACCEPTED_PRICE_OVER_COST). Then it prompts the user to enter the list price of the car. Next, it calculates the dealer's cost by multiplying the list price by the dealer cost percentage and the minimum amount the dealer would accept by adding the dealer's cost to the minimum accepted price over cost. Finally, it prints the least amount the dealer would accept for the car.

In JAVA with comments: Consider an array of integers. Write the pseudocode for either the selection sort, insertion sort, or bubble sort algorithm. Include loop invariants in your pseudocode.

Answers

Here's a Java pseudocode implementation of the selection sort algorithm with comments and loop invariants:

```java

// Selection Sort Algorithm

public void selectionSort(int[] arr) {

   int n = arr.length;

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

       int minIndex = i;

       // Loop invariant: arr[minIndex] is the minimum element in arr[i..n-1]

       for (int j = i + 1; j < n; j++) {

           if (arr[j] < arr[minIndex]) {

               minIndex = j;

           }

       }

       // Swap the minimum element with the first element

       int temp = arr[minIndex];

       arr[minIndex] = arr[i];

       arr[i] = temp;

   }

}

```The selection sort algorithm repeatedly selects the minimum element from the unsorted part of the array and swaps it with the first element of the unsorted part.

The outer loop (line 6) iterates from the first element to the second-to-last element, while the inner loop (line 9) searches for the minimum element.

The loop invariant in line 10 states that `arr[minIndex]` is always the minimum element in the unsorted part of the array. After each iteration of the outer loop, the invariant is maintained.

The swap operation in lines 14-16 exchanges the minimum element with the first element of the unsorted part, effectively expanding the sorted portion of the array.

This process continues until the entire array is sorted.

Remember, this pseudocode can be directly translated into Java code, replacing the comments with the appropriate syntax.

For more such questions on pseudocode,click on

https://brainly.com/question/24953880

#SPJ8

Case Project 1-2: Upgrading to Windows 10: Gigantic Life Insurance has 4,000 users spread over five locations in North America. They have called you as a consultant to discuss different options for deploying Windows 10 to the desktops in their organization.

Most of the existing desktop computers are a mix of Windows 7 Pro and Windows 8.1 Pro, but one office is running Windows 8 Enterprise. They have System Center Configuration Manager to control the deployment process automatically. They want to begin distributing applications by using App-V.

Can you identify any issues that need to be resolved before the project begins? Which edition of Windows 10 should they use? Which type of activation should they use?

Answers

The best approach for deploying Windows to the desktops at Gigantic Life Insurance will depend on several factors, including the number of desktops, existing hardware.

How much storage is recommended for Windows?

While 256GB of storage space is appropriate for many people, gaming enthusiasts will need a lot more. Most experts recommend that you get a minimum of 512GB if you're going to load a few games, but you'll need 1TB of storage if you're planning to load several AAA games.

What are 3 types of installation methods for Windows 10?

The three most common installation methods of Windows are DVD Boot installation, Distribution share installation , image based installation

To know more about  Windows visit:-

https://brainly.com/question/28847407

#SPJ1

Choose the correct climate association for: deciduous forest

Answers

Answer:

Mid Latitude Climate!

Explanation:

I've studied this! Hope this helps! :)

Answer:

mid-latitude climate

Explanation:

Correct answer on a quiz.

TRUE/FALSE. Haven runs an online bridal store called Haven Bridals. Her website is encrypted and uses a digital certificate. The website address for the store is http://www.havenbridals.com.

Answers

The statement "Haven runs an online bridal store called Haven Bridals. Her website is encrypted and uses a digital certificate" is false.

What is a digital certificate?

A digital certificate, which authenticates the identity of a website, person, group, organization, user, device, or server, is an electronic file linked to a pair of cryptographic keys.

It is also referred to as an identity certificate or a public key certificate. To prove that the public key belongs to the specific company, the certificate is utilized.

Therefore, the statement is false.

To learn more about digital certificates, refer to the link:

https://brainly.com/question/24156873

#SPJ1

For this question you will implement the displayAvailableFish member method. This method should: - Accept no parameters. - This function will return void . - The function should print the following: - If there are no fish available, your method should print There are no fish available. - If there are fish available, your method should print Fish available to add to aquarium: , followed by the contents of the available_fish member vector, with each entry on a new line (see example output below). Example 1: There are no fish stored in the vector. //create aquarium object Aquarium billys_aquarium("Billy"); //call displayAvailableFish billys_aquarium.displayAvailableFish(); Expected output: There are no fish available. Example 2: There are fish stored in the vector. //create aquarium object Aquarium sams_aquarium("Sam"); //load fish sams_aquarium.loadFish("fish_15.txt"); //call displayAvailableFish sams_aquarium.displayAvailableFish(); Expected output: Fish available to add to aquarium: Minnow - 1 Fancy Guppy - 1 Blue Neon Guppy - 1 Elephant Ear Guppy - 2 Yellow Guppy - 1 Lyretail Guppy - 1 Red Pand Guppy - 2 Elephany Ear Betta - 3 Rose Petal Betta - 3 Halfmoon Betta - 4 Paradise Betta - 3 Blue Crowntail Betta - 4 Neon Tetra - 2 Electric Green Longfin Tetra - 2 Sunburst Orange Tetra - 2 When you are done implementing this method, head on over to Coderunner and paste all of your .h file contents and the implementation for all of the member methods from questions 1, 2 and 3 into the answer box. Do not paste in any \#include directives or using namespace std; Aquarium.h and Aquarium. cpp files to Canvas once you have finished implementing all of the member methods.

Answers

The limits of the experiment must not be departed from by the researchers.

What do you meant by parameter?

A set of circumstances or a set limit that creates or restricts what may, must, or can be done: The limits of the experiment must not be departed from by the researchers.

The entire population under study is described by a parameter. For instance, we'd like to know what a butterfly's typical length is. This qualifies as a parameter because it provides information on the total butterfly population.

You may find 9 related words, synonyms, and antonyms on this page, including constant, criterion, framework, guideline, restriction, and specification. String, integer, Boolean, and array are supported parameter types. In more detail, there are three different kinds of parameters or parameter modes.

To learn more about  parameter refer to:

https://brainly.com/question/2292917

#SPJ4

what is the name of the program or service that lets you view e -mail messeges?​

Answers

The program or service that allows you to view email messages is called an email client.

What is the name of the program?

An email client is a software program or service that enables users to access, manage and view their email messages. It provides user-friendly interface for reading, composing and organizing emails.

Popular examples of email clients include Micro/soft Outlook, Gm/ail, Mo/zilla Thunderbird and Ap/ple Mail. These clients allow users to connect to their email accounts, retrieve messages from email servers and display them in an organized manner for easy viewing and interaction.

Read more about email client

brainly.com/question/24688558

#SPJ1

Structural Styles
Go to the Structural Styles section. Within that section create a style rule to set the background color of the browser window to rgb(151, 151, 151).
Create a style rule to set the background color of the page body to rgb(180, 180, 223) and set the body text to the font stack: Verdana, Geneva, sans-serif.
Display all h1 and h2 headings with normal weight.
Create a style rule for every hypertext link nested within a navigation list that removes underlining from the text.
Create a style rule for the footer element that sets the text color to white and the background color to rgb(101, 101, 101). Set the font size to 0.8em. Horizontally center the footer text, and set the top/bottom padding space to 1 pixel.

Answers

Solution :

For Structural Styles the browser's background color.  

html {

background-color: rgb(151, 151, 151);

}

For creating style rule for the background color and setting the body text

body {

background-color: rgb(180,180,223);

font-family: Verdana, Geneva, sans-serif;  

}

For displaying all the h1 as well as h2 headings with the normal weight.

h1, h2 {

font-weight: normal;

}

For create the style rule for all the hypertext link that is nested within the  navigation list  

nav a {

text-decoration: none;

}

For creating style rule for footer element which sets the color of the text to color white and the color of the background to as rgb(101, 101, 101). Also setting the font size to 0.8em. Placing the footer text to horizontally center , and setting the top/bottom of the padding space to 1 pixel.

footer {

background-color: rgb(101, 101, 101);

font-size: 0.8em;

text-align: center;

color: white;

padding: 1px 0;

}

/* Structural Styles At one place*/

html {

background-color: rgb(151, 151, 151);

}

body {

background-color: rgb(180,180,223);

font-family: Verdana, Geneva, sans-serif;  

}

h1, h2 {

font-weight: normal;

}

nav a {

text-decoration: none;

}

footer {

background-color: rgb(101, 101, 101);

font-size: 0.8em;

text-align: center;

color: white;

padding: 1px 0;

}

What does internet prefixes WWW and HTTPs stands for?

Answers

Answer:

World Wide Web - WWW

Hypertext Transfer Protocol (Secure) - HTTPS

Explanation:

WWW means that the source and content is available to the whole world. Regarding what browser or registrar you have, the content will appear. HTTPS means Hypertext Transfer Protocol Secure. This means that it is a safe way to send info from a web system. I hope I helped you!

Exercise 6-1 Enhance the Town Hall home page In this exercise, you’ll enhance the formatting of the Town Hall home page that you formatted in exercise 5-1. You’ll also format the Speaker of the Month part of the page that has been added to the HTML. When you’re through, the page should look like this: Open the HTML and CSS files 1. Use your text editor to open HTML and CSS files: \html_css_5\exercises\town_hall_1\c6_index.html \html_css_5\exercises\town_hall_1\styles\c6_main.css 2. In the HTML file, note that it has all the HTML that you need for this exercise. That way, you can focus on the CSS.

nhance the CSS file so it provides the formatting shown above 3. In the CSS file, enhance the style rule for the body so the width is 800 pixels. Next, set the width of the section to 525 pixels and float it to the right, and set the width of the aside to 215 pixels and float it to the right. Then, use the clear property in the footer to clear the floating. Last, delete the style rule for the h1 heading. Now, test this. The columns should be starting to take shape. 4. To make this look better, delete the left and right padding for the main element, set the left and bottom padding for the aside to 20 pixels, change the right and left padding for the section to 20 pixels, and set the bottom padding for the section to 20 pixels. You can also delete the clear property for the main element. Now, test again. 5. To make the CSS easier to read, change the selectors for the main elements so they refer to the section or aside element as appropriate and reorganize these style rules. Be sure to include a style rule for the h2 headings in both the section and aside. Then, test again to be sure you have this right. Add the CSS for the Speaker of the Month 6. Add a style rule for the h1 element that sets the font size to 150%, sets the top padding to .5 ems and the bottom padding to .25 ems, and sets the margins to 0. 7. Float the image in the article to the right, and set its top, bottom, and left margins so there’s adequate space around it. Then, add a 1-pixel, black border to the image so the white in the image doesn’t fade into the background. 8. Make any final adjustments, use the Developer Tools if necessary, and test the page

This is what I have so far:

/* the styles for the elements */
* {
margin: 0;
padding: 0;
}
html {
background-color: white;
}
body {
font-family: Arial, Helvetica, sans-serif;
font-size: 100%;
width: 800px;
margin: 0 auto;
border: 3px solid #931420;
background-color: #fffded;
}
a:focus, a:hover {
font-style: italic;
}
/* the styles for the header */
header {
padding: 1.5em 0 2em 0;
border-bottom: 3px solid #931420;
background-image: linear-gradient(
30deg, #f6bb73 0%, #f6bb73 30%, white 50%, #f6bb73 80%, #f6bb73 100%);
}
header h2 {
font-size: 175%;
color: #800000;
}
header h3 {
font-size: 130%;
font-style: italic;
}
header img {
float: left;
padding: 0 30px;
}
.shadow {
text-shadow: 2px 2px 2px #800000;
}
/* the styles for the main content */
main {
width: 525px;
float: right;
/* right, left and bottom padding */
padding-right: 20px;
padding-left: 20px;
padding-bottom: 20px;
}
main h2 {
color: #800000;
font-size: 130%;
padding: .5em 0 .25em 0;
}
main h3 {
font-size: 105%;
padding-bottom: .25em;
}
main img {
padding-bottom: 1em;
}
main p {
padding-bottom: .5em;
}
main blockquote {
padding: 0 2em;
font-style: italic;
}
main ul {
padding: 0 0 .25em 1.25em;
}
main li {
padding-bottom: .35em;
}

/* the styles for the article */
article {
padding: .5em 0;
border-top: 2px solid #800000;
border-bottom: 2px solid #800000;
}
article h2 {
padding-top: 0;
}
article h3 {
font-size: 105%;
padding-bottom: .25em;
}

/* the styles for the aside */

aside h3 {
font-size: 105%;
padding-bottom: .25em;
width: 215px;
float: right;
padding-left: 20px;
padding-bottom: 20px;
}
aside img {
padding-bottom: 1em;
}

/* the styles for the footer */
footer {
background-color: #931420;
clear: both;
}
footer p {
text-align: center;
color: white;
padding: 1em 0;
}

Answers

The program that can be used to illustrate the information will be:

body {

 width: 800px;

}

section {

 width: 525px;

 float: left;

 padding: 0 20px 20px 20px;

}

aside {

 width: 215px;

 float: left;

 padding: 20px 20px 20px 20px;

}

footer {

 clear: both;

}

How to explain the information

It should be noted that to improve the arrangment of the Town Hall webpage and configure the Speaker of the Month segment, do these steps:

Step 1: Launch the HTML and CSS records

Employ your text editor to launch the following documents:

\html_css_5\exercises\town_hall_1\c6_index.html

\html_css_5\exercises\town_hall_1\styles\c6_main.css

Learn more about Program on

https://brainly.com/question/26642771

#SPJ1

Which of the following terms means that the system changes based on
the needs of each learner?
A
Adaptive
B
Mobile-ready
С
Gamified
D
Reactive

Answers

Answer:

A

Explanation:

100 point question, with Brainliest and ratings promised if a correct answer is recieved.
Irrelevant answers will be blocked, reported, deleted and points extracted.

I have an Ipad Mini 4, and a friend of mine recently changed its' password ( they knew what the old password was ). Today, when I tried to login to it, my friend claimed they forgot the password but they could remember a few distinct details :

- It had the numbers 2,6,9,8,4, and 2 ( not all of them, but these are the only possible numbers used )
- It's a six digit password
- It definitely isn't 269842
- It definitely has a double 6 or a double 9

I have already tried 26642 and 29942 and my Ipad is currently locked. I cannot guarantee a recent backup, so I cannot reset it as I have very important files on it and lots of memories. It was purchased for me by someone very dear to me. My question is, what are the password combinations?

I have already asked this before and recieved combinations, however none of them have been correct so far.

Help is very much appreciated. Thank you for your time!

Answers

Based on the information provided, we can start generating possible six-digit password combinations by considering the following:

   The password contains one or more of the numbers 2, 6, 9, 8, and 4.

   The password has a double 6 or a double 9.

   The password does not include 269842.

One approach to generating the password combinations is to create a list of all possible combinations of the five relevant numbers and then add the double 6 and double 9 combinations to the list. Then, we can eliminate any combinations that include 269842.

Using this method, we can generate the following list of possible password combinations:

669846

969846

669842

969842

628496

928496

628492

928492

624896

924896

624892

924892

648296

948296

648292

948292

Note that this list includes all possible combinations of the relevant numbers with a double 6 or a double 9. However, it is still possible that the password is something completely different.

Place the following items in the correct order, so that it correctly represents a URL (website address) protocol, path, server, filename

Answers

Answer:

protocol, server, path and filename

create a program that calculates the areas of a circle, square, and triangle using user-defined functions in c language.​

Answers

A program is a set of instructions for a computer to follow. It can be written in a variety of languages, such as Java, Python, or C++. Programs are used to create software applications, websites, games, and more.

#include<stdio.h>

#include<math.h>

main(){

 int choice;

 printf("Enter

1 to find area of Triangle

2 for finding area of Square

3 for finding area of Circle

4 for finding area of Rectangle

 scanf("%d",&choice);

 switch(choice) {

    case 1: {

       int a,b,c;

       float s,area;

       printf("Enter sides of triangle

");

       scanf("%d%d %d",&a,&b,&c);

       s=(float)(a+b+c)/2;

       area=(float)(sqrt(s*(s-a)*(s-b)*(s-c)));

       printf("Area of Triangle is %f

",area);

       break;

     case 2: {

       float side,area;

       printf("Enter Sides of Square

       scanf("%f",&side);

       area=(float)side*side;

       printf("Area of Square is %f

",area);

       break;

   

 case 3: {

       float radius,area;

       printf("Enter Radius of Circle

");

       scanf("%f",&radius);

       area=(float)3.14159*radius*radius;

       printf("Area of Circle %f

",area);

       break;

    }

    case 4: {

       float len,breadth,area;

       printf("Enter Length and Breadth of Rectangle

");

       scanf("%f %f",&len,&breadth);

area=(float)len*breadth;

       printf("Area of Rectangle is %f

",area);

       break;

    }

    case 5: {

       float base,height,area;

       printf("Enter base and height of Parallelogram

");

       scanf("%f %f",&base,&height);

       area=(float)base*height;

       printf("Enter area of Parallelogram is %f

",area);

       break;

    }

    default: {

       printf("Invalid Choice

");

       break;

    }

 }

}

What do you mean by programming ?

The application of logic to enable certain computing activities and capabilities is known as programming. It can be found in one or more languages, each of which has a different programming paradigm, application, and domain. Applications are built using the syntax and semantics of programming languages. Programming thus involves familiarity with programming languages, application domains, and algorithms. Computers are operated by software and computer programs. Modern computers are little more than complex heat-generating devices without software. Your computer's operating system, browser, email, games, media player, and pretty much everything else are all powered by software.

To know more about ,programming visit

brainly.com/question/16936315

#SPJ1  

Why were Daguerreotype cameras not intended for the general public?

Answers

Answer:

The exposure time was vastly too long to be intended for practical use by photographers.

Explanation:

"The very first daguerreotype cameras could not be used for portraiture, as the exposure time required would have been too long. The cameras were fitted with Chevalier lenses which were 'slow' (about f/14). They projected a sharp and undistorted but dim image onto the plate."

meet a person who is living far away from the family for a long time.ask question about her/his feelings about homesickness.Then write a report ?

Answers

The report based on the interview asked in the question is given below:

The Report

Interviewer: How do you feel about being away from your family for so long?

Person: It's tough. I'm homesick all the time. I miss my family and hometown, longing to share in their daily lives. I acknowledge personal growth from a distance but maintain contact through calls and visits. Staying connected grounds me and reminds me of the love back home, despite challenges.

Report: Emotional complexities of long-distance living revealed. They acknowledged personal growth and stay connected through regular communication despite their separation.

Read more about reports here:

https://brainly.com/question/23228258

#SPJ1

What will be the different if the syringes and tube are filled with air instead of water?Explain your answer

Answers

Answer:

If the syringes and tubes are filled with air instead of water, the difference would be mainly due to the difference in the properties of air and water. Air is a compressible gas, while water is an incompressible liquid. This would result in a different behavior of the fluid when being pushed through the system.

When the syringe plunger is pushed to force air through the tube, the air molecules will begin to compress, decreasing the distance between them. This will cause an increase in pressure within the tube that can be measured using the pressure gauge. However, this pressure will not remain constant as the air continues to compress, making the measured pressure unreliable.

On the other hand, when the syringe plunger is pushed to force water through the tube, the water molecules will not compress. Therefore, the increase in pressure within the tube will be directly proportional to the force applied to the syringe plunger, resulting in an accurate measurement of pressure.

In summary, if the syringes and tube are filled with air instead of water, the difference would be that the measured pressure would not be reliable due to the compressibility of air.

9. Computer 1 on network A, with IP address of 10.1.1.10, wants to send a packet to Computer 2, with IP address of
172.16.1.64. Which of the following has the correct IP datagram information for the fields: Version, minimum
Header Length, Source IP, and Destination IP?

Answers

Answer:

Based on the given information, the IP datagram information for the fields would be as follows:

Version: IPv4 (IP version 4)

Minimum Header Length: 20 bytes (Since there are no additional options)

Source IP: 10.1.1.10 (IP address of Computer 1 on network A)

Destination IP: 172.16.1.64 (IP address of Computer 2)

So the correct IP datagram information would be:

Version: IPv4

Minimum Header Length: 20 bytes

Source IP: 10.1.1.10

Destination IP: 172.16.1.64

Match the technology to its description.
facsimile
smartphone
HDTV
Internet
VoIP

Answers

Facsimile machine - Sends copies from one place to another

Personal Digital Assistant - sends e-mails and makes phone calls

High Definition Television - transmits digital signals for better-quality sound and pictures

The internet - makes web pages, music, and videos accessible

Voice over internet protocol - makes phone calls using computers

Which are the steps in the process of creating a database

Answers

Answer:

Determine the purpose of your database. ...

Find and organize the information required. ...

Divide the information into tables. ...

Turn information items into columns. ...

Specify primary keys. ...

Set up the table relationships. ...

Refine your design. ...

Apply the normalization rules.

Answer:

identifying fieldnames in tables

defining data types for field names

Explanation:

sorry I'm late. future Plato users this is for you

An array called numbers contains 35 valid integer numbers. Determine and display how many of these values are greater than the average value of all the values of the elements. Hint: Calculate the average before counting the number of values higher than the average

Answers

python

Answer:

# put the numbers array here

average=sum(numbers)/35 # find average

count=0 #declare count

for i in numbers: #loop through list for each value

if i > average: #if the list number is greater than average

count+=1 #increment the count

print(count) #print count

E-commerce Web sites can use many different hardware architectures to divide the work of serving Web pages, administering databases, and processing transactions.
Discuss in detail the TWO (2) types of web architectures generally used in ecommerce websites.

Answers

The two type of web architectures generally used in ecommerce websites are the business logic and the customer side application.

What are web architectures?

Web architectures are defined as a system that controls the communication between application components. The interconnections between web applications, databases, and middleware technologies are referred to as web application architecture.

The user interface is executed on the client side, which is the first, and database data is stored on the server side, which is the second. The business logic and the customer-side application are two web applications that operate on opposite sides of the architecture.

Thus, the two type of web architectures generally used in ecommerce websites are the business logic and the customer side application.

To learn more about web architectures, refer to the link below:

https://brainly.com/question/28560751

#SPJ1

Which of the following behaviors is considered ethical?

copying another user’s password without permission
hacking software to test and improve its efficiency
using a limited access public computer to watch movies
deleting other user’s files from a public computer

Answers

Answer:

using a limited access public computer to watch movies

Explanation:

Cause it doesn't involve you performing any illegal actions.

Answer:

C. using a limited access public computer to watch movies

Explanation:

IM A DIFFERENT BREEED!!

PLUS NOTHING ELSE MAKES SENSE LOL!

Design a loop that asks the user to enter a number. The loop should iterate 10
times and keep a running total of the numbers entered.
Ejercicio #2
Largest and Smallest
Design a program with a loop that lets the user enter a series of numbers. The user
should enter -99 to signal the end of the series. After all the numbers have been en-
tered, the program should display the largest and smallest numbers entered.
Vea en Mis Notas la rúbrica para evaluar
ге

Answers

There are actually a couple of questions in here. I'll try to answer them in Python, which kind of looks like psuedocode already.

1. Design a loop that asks the user to enter a number. The loop should iterate 10 times and keep a running total of the numbers entered.

Here, we declare an empty array and ask for user input 10 times before printing a running total to the user's console.

numbers = []

for i in range(10):

   numbers.append(input("number: "))  

print(f"running total: { ', '.join(numbers) }")

2. Design a program with a loop that lets the user enter a series of numbers. The user should enter -99 to signal the end of the series. After all the numbers have been entered, the program should display the largest and smallest numbers entered.

Here, we declare an empty array and ask for user input forever until the user types -99. Python makes it really easy to get the min/max of an array using built-in functions, but you could also loop through the numbers to find the smallest as well.

numbers = []

while True:

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

   if n == -99:  

       break

   numbers.append(n)

print(f"largest number: { max(numbers) }")  

print(f"smallest number: { min(numbers) }")    

Other Questions
Which of these ionization processes requires the highest amount ofenergy?(a) na(g) --> na*(g) + e;(b) mg(g) --> mg (g) + e;(c) al(g) --> alt(g) + e;(d) ca(g) --> ca*(g) + e; Ill give brainliest - please help ASAPWITH THE WORK THO PLEASE? 1. The private equity market 1. 2. STEP: 1 of 2 Consider a musical instrument idea that involves creating instruments completely from recycled materials. The brain behind the idea, Simone, needs to raise money in order to finance the creation and expansion of the business, which she plans to call Khoir, LLC. Simone does not want her company to go public yet, so she decides raising money through private equity investments is the best route to go. Which of the following are examples of private equity investments? Check all that apply. Simone gets a private equity fund to invest $800,000 in the business. Simone issues preferred stock on the New York Stock Exchange in the amount of $165 million. Simone gets a venture capital fund to invest $5 million in the business. Simone launches an IPO aimed at raising $1 million. Grade Step 1 TOTAL SCORE: 0/2 (to complete this step and unlock the next step) The rules or standards that govern the conduct of members of a particular group or profession are called:A) licensure.B) norms.C) protocols.D) ethics. Are advertisements aimed at teenagers effective? And, are they ethical? I need a thesis statement. Answer these 2 different questions ( i am so confused on this hellp!!) 6) All the people of a neighborhood pooled together and won the lottery. They won $10,000,000 and each person got a 0.02 share. How much money did each person receive?7) Sally scored 9.007 in gymnastics. Jack scored 8.949. How much higher was Sally's score than Jack's? how can a teen parent establish legal fatherhood? WILL MARK BRANLIEST ANSWER IF GOTTEN RIGHT On your post-graduation celebratory trip you decide to travel from Jeddah, Saudi Arabia to Cambridge, Great Britain. You leave Jeddah with 14.9 thousands of SAR in your wallet. Wanting to exchange all of these for pounds, you obtain the following quotes. Spot rate on the pound/dollar cross rate 0.7292 GBP/USD Spot rate on the riyal/dollar cross rate: 3.74 SAR/USD What is the riyal/pound cross rate? Why does no one answer my questions? [Animated image] I. Read the text and write the past of the verbs in parenthesis.Michael Jackson was born on August 29th, 1958. He was born in Gary, Indiana, an industrial suburb of Chicago. He (be) and is known as the "King of Pop". He was an American musician. He (start) a solo career in 1971. His 1982 album Thriller remains the best-selling album of all times. He (popularize) dance moves, such as the robot and the moonwalk. He ____ ___ ____________(be)successful in his music career. He (win) 13 Grammy Awards. He (earn) millions of dollars and (donate) them to charities. In the 1980s Michaels skin color started to change because of a disease called vitiligo, and that (be) a shock for everyone. He (get) married twice, first in 1994 with Lisa Marie Presley, Elvis Presleys daughter and again in 1996 with Deborah Jeanne Rowe, a dermatology nurse. Michael __ _(have) three children. He (die) in 2009, it is said that an overdose of the pain killer Demerol (be) the cause of his death but it is not confirmed. A client receiving antipsychotic therapy develops an acute dystonic reaction. which medication would the nurse most likely expect the health care provider to prescribe as treatment? In the book the drummer of Shiloh why is Joby crying Lenard and Penny bought a new couch that was originally priced at $2,580. After they discount, they paid $1,548 for the couch. What percent of the original price did they pay? Fuel prices in Vancouver one month had a mean price of C$1.34 per liter.Suppose that we take random samples of 45 prices from this population and calculate the sample mean price for each sample. We can assume that the prices in each sample are independent.What will be the shape of the sampling distribution of the sample mean price? Jacob owns a house in Nebraska but is a resident of Maine. Jacobs only connection to Nebraska is the house. Kristy, a resident of Ohio, believes she has an ownership interest in the house. In which of the following courts could the lawsuit be brought? a. A Nebraska state trial court on the basis of the courts in rem jurisdiction over the house. b. A Maine state trial court on the basis of the courts in rem jurisdiction over the house. c. A Maine state trial court on the basis of the courts personal jurisdiction over the parties. d. A Nebraska state trial court on the basis of the courts personal jurisdiction over the parties. e. This case would have to be brought in federal court because of diversity between the parties Please check my French sentences:I am female and they need to be in the conditionnel format, make additional corrections as you see fit. Je donnerais beaucoup d'argent mes parents.Je donnerais de l'argent aux membres de ma famille.Je donnerais de l'argent aux parents nourriciers.J'conomiserais de l'argent pour l'cole.J'achetais beaucoup de nourriture pour donner aux sans-abri.(If you could also tell me how I can mark people brainliest, I will ;-;) In the human ABO blood grouping, alleles A and B are codominant. What must the genotype of a person with blood type O be? a. IBIBb. ii c.IAIBd. IAIA For a and b, write an equation in slope-intercept form that meets the given criteria A. a negative slope and passes through the originB. slopes upward from left to right and has a y-intercept below the x-axis What are common qualifications needed for Hospitality and Tourism careers? Check all that apply.professional appearance and behaviorcomputer and telephone skillsknowledge of food and lodgingexpertise in management and leadershipability to handle multiple tasks at onceaccuracy and attention to detail