Question 3 A benefit of using online tools is that: O you have more privacy because the information is stored locally on your computer. they are accessible anywhere you have the internet. it is the only way to utilize essential business software. everything is stored in the same place. Question 4​

Answers

Answer 1

Answer:

False, it doesn't mean that if a application is stored on a device, it can't steal any data. Take cloud service for example it is not locally stored on your computer it is stored on the huge amount of databases, meaning that the service provider could steal the files or delete them without consent.


Related Questions

Write a program HousingCost.java to calculate the amount of money a person would pay in renting an apartment over a period of time. Assume the current rent cost is $2,000 a month, it would increase 4% per year. There is also utility fee between $600 and $1500 per year. For the purpose of the calculation, the utility will be a random number between $600 and $1500.
1. Print out projected the yearly cost for the next 5 years and the grand total cost over the 5 years.
2. Determine the number of years in the future where the total cost per year is over $40,000 (Use the appropriate loop structure to solve this. Do not use break.)

Answers

Answer:

import java.util.Random;

public class HousingCost {

public static void main(String[] args) {

int currentRent = 2000;

double rentIncreaseRate = 1.04;

int utilityFeeLowerBound = 600;

int utilityFeeUpperBound = 1500;

int years = 5;

int totalCost = 0;

System.out.println("Year\tRent\tUtility\tTotal");

for (int year = 1; year <= years; year++) {

int utilityFee = getRandomUtilityFee(utilityFeeLowerBound, utilityFeeUpperBound);

int rent = (int) (currentRent * Math.pow(rentIncreaseRate, year - 1));

int yearlyCost = rent * 12 + utilityFee;

totalCost += yearlyCost;

System.out.println(year + "\t$" + rent + "\t$" + utilityFee + "\t$" + yearlyCost);

}

System.out.println("\nTotal cost over " + years + " years: $" + totalCost);

int futureYears = 0;

int totalCostPerYear;

do {

futureYears++;

totalCostPerYear = (int) (currentRent * 12 * Math.pow(rentIncreaseRate, futureYears - 1)) + getRandomUtilityFee(utilityFeeLowerBound, utilityFeeUpperBound);

} while (totalCostPerYear <= 40000);

System.out.println("Number of years in the future where the total cost per year is over $40,000: " + futureYears);

}

private static int getRandomUtilityFee(int lowerBound, int upperBound) {

Random random = new Random();

return random.nextInt(upperBound - lowerBound + 1) + lowerBound;

}

}

The Earth receives different amounts of energy from the Sun in each hemisphere because

Answers

Answer:

The correct answer is option C. "its axis is tilted".

Explanation:

The axis of the Earth is tilted at an angle of 23.5 degrees away from vertical, perpendicular to the plane. This tilt results in the Earth receiving different amounts of energy from the Sun in each hemisphere and having its characteristic seasons. This phenomena is explained by how the Earth responds to its axis being tilted, which is by traveling in a loop around the Sun each year.

Which of the following is the correct binary representation of the number 2?

Answers

Answer:

10 i think

Explanation:

Write one or more C statements that assign the correct value to discount, using the logic described here:
1. Assign .20 to discount if dept equals 5 and price is $100 or more.
2. Assign .15 to discount if dept is anything else and price is $100 or more.
3. Assign .10 to discount if dept equals 5 and price is less than $100.
4. Assign .05 to discount if dept is anything else and price is less than $100.

Answers

Answer:

See Explanation

Explanation:

To solve this, I'll skip variable declarations

if (dept == 5 && price >= 100){//1

discount = 0.20;

}

else if (price >= 100){ //2

discount = 0.15;

}

else if (dept == 5 && price < 100){//3

discount = 0.10;

}

else if (price < 100){//4

discount = 0.05;

}

The question requires if conditional statements and that has been shown in the above lines of code

Also, the comments (//) indicates the number of each line and it does exactly what is required.

the rpm command is used to manage rpm packages on red hat-derived distributions. what are the primary options available for red hat package manager (rpm) to keep software current?

Answers

The rpm command is used to manage rpm packages on red hat-derived distributions. The term that are the primary options available for red hat package manager (rpm) to keep software current are:

"""-U"""

"""-F"""

What kind of packager does RPM employ?

The Red-hat Package Manager, usually referred to as RPM, is an open source application for managing, installing, and uninstalling software packages in Linux. RPM was created using the Linux Standard Base as a foundation (LSB).

Note that RPM is a well-liked package management mechanism in distributions based on Red Hat Enterprise Linux. You can install, delete, and query specific software packages using RPM.

Therefore, On Unix/Linux systems, RPM is a command-line tool for managing packages. You can use it to install, search for, update, check, and delete RPM packages. It only supports the. rpm file format and is the system default package manager for Red Hat-based systems.

Learn more about rpm command from

https://brainly.com/question/28232553?source=archive
#SPJ1

Which of the following allows hundreds of computers all to have their outbound traffic translated to a single IP?

Answers

Answer: NAT

Which of the following allows hundreds of computers all to have their outbound traffic translated to a single IP? One-to-many NAT allows multiple devices on a private network to share a single public IP address.

The following that allows for  hundreds of computers all to have their outbound traffic translated to a single IP is the One-to-many NAT.     Option C

How does One-to-many NAT works

One-to-many NAT allows hundreds of computers to have their outbound traffic translated to a single IP this is done by designating each computer to  a unique port number, that is used to identify the specific device within the the network address transition NAT, where all private network gain access to public network     .

The NAT device serves as translator, keeping track of the original source IP and port number in the translation table, translates the source IP address and port number of each outgoing packet to the single public IP address,  This allows for a possible multiple devices to share a single IP address for outbound connections.

Learn more about One-to-many NAT on brainly.com/question/30001728

#SPJ2

The complete question with the options

Which of the following allows hundreds of computers all to have their outbound traffic translated to a single IP?

a. Rewriting

b. Port forwarding

c. One-to-many NAT

d. Preservation

mpressed files have the
A. .exe
C. .sit
Save Answer
file extension.
B. .arc
D. .zip

Answers

Answer:  D. .zip

Explanation:

School has opened its administrations for the 11th grade students. They plan to give fee concessions to their 11th grade students based on their 10th grade mark. You being their software consultant have been approached to develop software to implement the functionality to manage school fee.

School has opened its administrations for the 11th grade students. They plan to give fee concessions

Answers

As a software consultant, the first step in developing software to manage school fees would be to gather information about the school's fee structure, policies, and procedures. This would include understanding how fees are calculated, how fee concessions are awarded, and what information is required from the students to process fee concessions.

What is the software  about?

Once this information is gathered, the next step would be to design the software system to capture and manage the fee information. The software system would need to be able to store student information, including their marks from 10th grade, as well as the fee structure and concessions policies.

The software system would also need to be able to calculate the fees for each student based on their marks from 10th grade and any applicable fee concessions. This would require programming the software to perform calculations based on the school's fee structure and policies. The software system should also be designed to provide reports and data analytics on fee payments and concessions.

In addition, the software system should be designed to be user-friendly and easy to use for both school administrators and students. This would include a user-friendly interface, clear instructions for entering and updating information, and the ability to generate reports and other data visualizations.

Learn more about software from

https://brainly.com/question/28224061

#SPJ1

I really need help with CSC 137 ASAP!!! but it's Due: Wednesday, April 12, 2023, 12:00 AM

Questions for chapter 8: EX8.1, EX8.4, EX8.6, EX8.7, EX8.8

I really need help with CSC 137 ASAP!!! but it's Due: Wednesday, April 12, 2023, 12:00 AMQuestions for
I really need help with CSC 137 ASAP!!! but it's Due: Wednesday, April 12, 2023, 12:00 AMQuestions for
I really need help with CSC 137 ASAP!!! but it's Due: Wednesday, April 12, 2023, 12:00 AMQuestions for

Answers

The response to the following prompts on programming in relation to array objects and codes are given below.

What is the solution to the above prompts?

A)

Valid declarations that instantiate an array object are:

boolean completed[J] = {true, true, false, false};

This declaration creates a boolean array named "completed" of length 4 with initial values {true, true, false, false}.

int powersOfTwo[] = {1, 2, 4, 8, 16, 32, 64, 128};

This declaration creates an integer array named "powersOfTwo" of length 8 with initial values {1, 2, 4, 8, 16, 32, 64, 128}.

char[] vowels = new char[5];

This declaration creates a character array named "vowels" of length 5 with default initial values (null for char).

float[] tLength = new float[100];

This declaration creates a float array named "tLength" of length 100 with default initial values (0.0f for float).

String[] names = new String[]{"Sam", "Frodo", "Merry"};

This declaration creates a String array named "names" of length 3 with initial values {"Sam", "Frodo", "Merry"}.

char[] vowels = {'a', 'e', 'i', 'o', 'u'};

This declaration creates a character array named "vowels" of length 5 with initial values {'a', 'e', 'i', 'o', 'u'}.

double[] standardDeviation = new double[1];

This declaration creates a double array named "standardDeviation" of length 1 with default initial value (0.0 for double).

In summary, arrays are objects in Java that store a fixed-size sequential collection of elements of the same type. The syntax for creating an array includes the type of the elements, the name of the array, and the number of elements to be stored in the array. An array can be initialized using curly braces ({}) to specify the initial values of the elements.


B) The problem with the code is that the loop condition in the for loop is incorrect. The index should start from 0 instead of 1, and the loop should run until index < masses.length instead of masses.length + 1. Also, the totalMass should be incremented by masses[index], not assigned to it.

Corrected code:
double[] masses = {123.6, 34.2, 765.87, 987.43, 90, 321, 5};

double totalMass = 0;

for (int index = 0; index < masses.length; index++) {

   totalMass += masses[index];

}


The modifications made here are to correct the starting index of the loop, fix the loop condition, and increment the totalMass variable correctly.


C)

1)
Code to set each element of an array called nums to the value of the constant INITIAL:

const int INITIAL = 10; // or any other desired initial value

int nums[5]; // assuming nums is an array of size 5

for (int i = 0; i < 5; i++) {

   nums[i] = INITIAL;

}


2) Code to print the values stored in an array called names backwards:
string names[4] = {"John", "Jane", "Bob", "Alice"}; // assuming names is an array of size 4

for (int i = 3; i >= 0; i--) {

   cout << names[i] << " ".

}



3) Code to set each element of a boolean array called flags to alternating values (true at index 0, false at index 1, true at index 2, etc.):

bool flags[6]; // assuming flags is an array of size 6

for (int i = 0; i < 6; i++) {

   flags[i] = (i % 2 == 0);

}


Learn more about array objects at:

https://brainly.com/question/16968729

#SPJ1

simple explanation of how a satellite works

Answers

Answer:

A satellite is basically a self-contained communications system with the ability to receive signals from Earth and to retransmit those signals back with the use of a transponder —an integrated receiver and transmitter of radio signals.

Explanation:

C#
1. Create a new class called StandardSale
2. Add three private fields to the class:
_salesDate, a DateTime
_amount, a double
_quantity, an integer
3. Also, add properties with get and set accessors for each field, call them SalesDate, Amount, and Quantity.
In the "set" accessors, use if/else to limit Amount and Quantity to positive values and
to limit SalesDate to dates on or after 1/1/2000.
Use "else" to set Quantity and Amount to 0 and SalesDate to 1/1/2000 if the input values are invalid.
4. Add a constructor so that all three fields can be populated when a StandardSale object is instantiated.
5. Add a method called TotalSale that returns _amount * _quantity as a double.

Answers

Answer:

Hhhhhhjjjjjjkiiiiioooooooooioi

Help me with this ……..

Help me with this ..

Answers

Answer:

So is this talking about this pic?

Help me with this ..

For what two reasons is it important to add comments to a program? A. To make the structure of the code clear for other programmers B. To make it run faster and more efficiently C. To make the program appear elaborate and complex D. To make troubleshooting and fixing bugs easier​

Answers

Commenting is important to a program to ease the understanding of code by other programmers, and for troubleshooting and fixing bugs.

What is commenting on a program?

The commenting on a program is given as the human-readable description of the code that helps in the analysis of what is the function being performed by the code.

The commenting is important as:

It makes the easy to clearly understand the structure of code by other programmers are many are working in an organization.

In the troubleshooting and when fixing the bugs, the comments add the ease to crack the fault in the code.

Thus, options A and D are correct.

Learn more about commenting in a program, here:

https://brainly.com/question/17102137

#SPJ1

working with the tkinter(python) library



make the window you create always appear on top of other windows. You can do this with lift() or root.attributes('-topmost', ...), but this does not apply to full-screen windows. What can i do?

Answers

To make a tkinter window always appear on top of other windows, including full-screen windows, you must use the wm_attributes method with the topmost attribute set to True.

How can I make a tkinter window always appear on top of other windows?

By using the wm_attributes method in tkinter and setting the topmost attribute to True, you can ensure that your tkinter window stays on top of other windows, even when they are in full-screen mode.

This attribute allows you to maintain the window's visibility and prominence regardless of the current state of other windows on your screen.

Read more about python

brainly.com/question/26497128

#SPJ1

What did World Com do to try to keep its stock price from falling?

Answers

The company had good enough internal controls to prevent Scott D.

Why the future doesn’t need us?

Answers

Answer:

"The Future Doesn't Need Us" is an essay by computer scientist and author Bill Joy, published in 2000 in Wired magazine. In the essay, Joy expresses his concern about the potential dangers of emerging technologies such as nanotechnology, robotics, and artificial intelligence.

Joy argues that while these technologies have the potential to solve many of the world's problems, they also pose significant risks, such as the possibility of self-replicating machines that could cause widespread destruction. Joy suggests that these risks may outweigh the benefits, and that we should proceed with caution when developing these technologies.

Joy also expresses concern about the potential loss of human control over technology. He argues that as machines become more advanced and intelligent, they may become capable of making decisions without human input, leading to a loss of control over our own creations.

Overall, Joy's essay suggests that we need to carefully consider the implications of emerging technologies, and that we should not blindly pursue technological progress without considering the potential risks and consequences.

How are BGP neighbor relationships formed
Automatically through BGP
Automatically through EIGRP
Automatically through OSPF
They are setup manually

Answers

Answer:

They are set up manually

Explanation:

BGP neighbor relationships formed "They are set up manually."

This is explained between when the BGP developed a close to a neighbor with other BGP routers, the BGP neighbor is then fully made manually with the help of TCP port 179 to connect and form the relationship between the BGP neighbor, this is then followed up through the interaction of any routing data between them.

For BGP neighbors relationship to become established it succeeds through various phases, which are:

1. Idle

2. Connect

3. Active

4. OpenSent

5. OpenConfirm

6. Established

Upang mas maging maganda ang larawang ini-edit, dapat isaalang-alang ang tatlong mahahalagang elemento. Ano-ano ang mga ito?​

Answers

Answer:

is this english?

Explanation:

QUESTION 16
Leif is designing a website for his employer. Which of the f
alt text?
a. A photo of the team members
O b. The company logo
O c. The page title
d. A graphical icon

Answers

Leif is designing a website for his employer. The elements on the home page that will NOT require alt text is option  C) The page title

What is the designing  about?

Alt text could be a content portrayal that can be included to pictures and other non-textual elements on a webpage. Its reason is to supply a printed elective to the visual substance, making it available to clients who are outwardly disabled or have other inabilities that affect their ability to see images.

The company symbol could be a visual component that's regularly as of now went with by content, such as the title of the company. In this manner, alt content may not be essential for the symbol.

Learn more about designing   from

https://brainly.com/question/2604531

#SPJ1

See text below

Leif is designing a website for his employer.Which of the following elements on the home page will NOT require alt text?

A) The company logo

B) A photo of the team members

C) The page title

D) A graphical icon

Which of the following is true? Select all that apply. True False For all queries, the user location changes our understanding of the query and user intent. ----------------------------------------------------------------------- True False On the task page, a blue dot on the map represents a precise user location. ------------------------------------------- True False Queries with a user location can have just one interpretation. -------------------------------------------------- True False All queries with a user location have both visit-in-person and non-visit-in-person intent. -----------------------------------------------------------------

Answers

With regard to queries, note that the options that are true or false are given as follows:

Which options are true or false?

False: For all queries, the user location does not necessarily change our understanding of the query and user intent.

False: On the task page, a blue dot on the map does not necessarily represent a precise user location.

False: Queries with a user location can have multiple interpretations.

False: Not all queries with a user location have both visit-in-person and non-visit-in-person intent.

Learn more queries:
https://brainly.com/question/30900680?
#SPJ1

PLEASE FASTTTTT



Which reasons explain why computer programmers use IDEs? Select all that apply.

An IDE provides an integrated work environment for the programmer.

An IDE writes the code for the programmer.

An IDE helps programmers automate repetitive tasks.

An IDE helps link code.

Answers

Answer:

Integrated work and repetitive tasks

Answer:

A C D

Explanation:

Which of the following are two popular data visualization platforms? a. Excel and PowerPoint b. OLTP and OLAP c. Apache and Cassandra d. Power BI and Tableau

Answers

Some of the best tools for data visualization are Charts, Tableau, Grafana, Chartist. js, FusionCharts, Datawrapper, Infogram, ChartBlocks, and D3.

Examples of data visualization approaches include bar and pie charts. visualization of data presentation It is carried out visually. For this, we make use of graphical elements like graphs, charts, maps, etc. Using visual elements like charts, graphs, and maps, data visualization tools provide a simple way to spot trends, outliers, and patterns in data. It also provides a fantastic tool for employees or business owners to communicate facts intelligibly to non-technical audiences. Some of the best tools for data visualization are Charts, Tableau, Grafana, Chartist. js, FusionCharts, Datawrapper, Infogram, ChartBlocks, and D3.

Learn more about data here-

https://brainly.com/question/11941925

#SPJ4

Sally is editing her science report about living things. She needs to copy a paragraph from her original report.

Order the steps Sally needs to do to copy the text to her new document.

Highlight text
.

Press Ctrl+V
.

Press Ctrl+C keys
.

Open original document
.

Switch view to new document
.

Place cursor where text needs to go
.

whats the number for each question?

Answers

Answer:

Open Original document = 1

Highlight text = 2

Press Ctrl+C keys = 3

Switch view to new document = 4

Place cursor where text needs to go = 5

Press Ctrl + V = 6

Explanation:

I hope this helps!

1-Open the original document
2-highlights Text
3-press ctrl+c keys
4-switch view to new document
5-place cursor where text needs to go
6-press ctrl+V

Unchecked exceptions require you surround the code that might throw such an exception with a try block or you must use a throws statement at the end of the method signature. Failure to do one of these two things will result in a compile error.

a. True
b. False

Answers

Answer:

b. False

Explanation:

False, unchecked exceptions do not cause compilation errors and do not require try/catch blocks or throws statements. However, although they are not required it is good programming to include them in order to handle any exceptions that may arise. If you do not include a proper way to handle such an exception the program will still run but may run into an exception during runtime. If this occurs then the entire program will crash because it does not know how to handle the exception since you did not provide instructions for such a scenario.

What is the unit that a CPU’s performance is measured in? What does it mean? Give examples of two different types of CPU’s and in what computer system you are likely to find them in.

Answers

Answer:

The unit that a CPU's performance is measured in CPU's performance is dependent on its speed and clock rate. Both the speed and clock rate is measured in hertz or Hz. A core works on one task while another core works on a different task. So the more cores a CPU has, the faster and efficient the computer will be. Single Core CPUs; Single core CPUs are the oldest computer CPUs. These CPUs can only focus on one operation at a time so they were not very good at multi-tasking.

Hope this helped you!

Explanation:

Clock speed is one of your CPU’s key specifications.

The performance of your CPU has a major impact on the speed at which programs load. However, there are a few different ways to measure processor performance. Clock speed (also “clock rate” or “frequency”) is one of the most significant.

The higher clock speed means a faster CPU.

Find out more on Clock speed at:https://brainly.com/question/271859

list the field in the tcp header that are missing from udp header

Answers

Answer:

Sequence number, acknowledgement number, data offset, res, flags, window size, checksum, urgent pointer, options.

Explanation:

Check out the picture for details. "Missing" is not really the right term, since UDP has a different purpose than TCP. TCP needs these headers to form a connection oriented protocol, whereas UDP is a fire-and-forget type of packet transfer.

list the field in the tcp header that are missing from udp header

list five Types of computer

Answers

Answer:

supercomputermainframe computerpersonal computerminicomputerwork station

Explanation:

hope it helps you

1)mini computer

2)main frame computer

3) work station

4)super computer

5)personal computer

Any help , and thank you all

Any help , and thank you all

Answers

Answer:

There are 28 chocolate-covered peanuts in 1 ounce (oz). Jay bought a 62 oz. jar of chocolate-covered peanuts.

Problem:

audio

How many chocolate-covered peanuts were there in the jar that Jay bought?

Enter your answer in the box.

Explanation:

According to the video, what types of education are useful for Database Administrators? Check all that apply.
high school degrees
college degrees
certification
communication workshops
Done
Intro

Answers

Answer:

b.college degrees

c.certification

Explanation:

The type of education useful for Database Administrators are college degrees and certifications. The correct options are b and c.

What are Database Administrators?

A database management system typically supports the platforms' administration, development, and use. A Relation Database Management System (RDBMS) is a category of Database Management System (DBMS) that includes a structure (row-based table) that connects data pieces as well as operations that are intended to ensure the data's accuracy, security, consistency, and integrity.

They are capable of doing this since they are familiar with database administration tools and technologies. Currently, one of the most sought-after jobs in America is database administration.

Hospitals, banks, and insurance corporations are a few examples. To put it another way, database administrators are in charge of creating, maintaining, and protecting your databases.

Therefore, the correct option is b. college degrees, and c. certification.

To learn more about Database Administrators, refer to the link:

https://brainly.com/question/13261952

#SPJ6

Which of the following tactics can reduce the likihood of injury

Answers

The tactics that can reduce the likelihood of injury in persons whether at work, at home or wherever:

The Tactics to reduce injury risks

Wearing protective gear such as helmets, knee pads, and safety goggles.

Maintaining proper body mechanics and using correct lifting techniques.

Regularly participating in physical exercise and strength training to improve overall fitness and coordination.

Following traffic rules and wearing seatbelts while driving or using a bicycle.

Ensuring a safe and well-lit environment to minimize the risk of falls or accidents.

Using safety equipment and following guidelines in sports and recreational activities.

Being aware of potential hazards and taking necessary precautions in the workplace or at home.

Read more about injuries here:

https://brainly.com/question/19573072

#SPJ1

Other Questions
To coerce someone into doing something means to:a. engage in role modeling.b. promise reward for his or her work.c. threaten his or her self-esteem.d. force the person to do it. What major weakness did Hurricane Katrina demonstrate about the preparedness of major cities in America? 5/6x250 Someone please tellMe the answer Im stuck lol Should Canada continue its support for oil and gas development projects why or why not. Provide reasons FOR and AGAINST HELP MEEvaporation of Salt WaterIn this activity, you will model the evaporation of salt water. Evaporation of water from the oceans is an important part of Earths water cycle.You will need these materials:1 sheet of colored construction paperclear plastic or glass container, just large enough to hold the construction papera large drinking glass3 teaspoons of salta teaspoonone-fourth cup water at room temperatureHypothesis and Data CollectionFill the drinking glass with one-fourth cup of water and mix in 3 teaspoons of salt. Mix thoroughly until the salt is dissolved. (You may add a few more teaspoons of water to dissolve it, if needed.) Place the construction paper in the container and gently pour the water on the paper until it is saturated. In part A, predict what will happen in the container overnight.Part AWhat do you think will happen when you leave the paper in the container overnight?Part BNow leave the paper in the container overnight. In the morning, look at the paper and write down your observations.Analyze and ExtendPart AWere your predictions correct? Explain.Part BWhat process caused the changes that occurred on the paper?Part CEvaporation happens in the ocean as part of the water cycle. What fuels evaporation in the ocean?Part DSome ocean water evaporates, but certainly not all of it. When evaporation occurs, what happens to the ocean water that doesnt evaporate? Explain in terms of the salt content and what you saw in the experiment. Dispose of your waste properly:Shake the salt off the paper into the trash.Recycle the paper. An underdeveloped economy in which communities use simple tools and traditional methods to harvest and hunt for food is called a(n)? Which reactant will be used up first if 78.1 g of O2 is reacted with 62.4 g of C4H10?2C4H10 + 13 O2 -----> 8CO2 + 10 H2OA) carbon dioxideB) C4H10, butaneC) OxygenD) water Which of the following are remote interior angles of angle 5? Check all that apply If f(x)f(x) is an exponential function where f(-0.5)=27f(0.5)=27 and f(1.5)=21f(1.5)=21, then find the value of f(0.5)f(0.5), to the nearest hundredth. Which topic is suitably limited for a research paper? There are 100 or 102 pennies in a dollar. How many pennies are there in a million (106) dollars? Write your answer using exponents. A dental assistant is speaking with an existing patient about her father, a new patient who does not hear well and is embarrassed about his problem. The dental assistant made sure the daughter was given authorization from the father to speak to his daughter on the HIPAA form before she approached the daughter. What must the dental assistant ask the daughter to ensure the success of the father's initial examination? How must the dental assistant treat the patient when he arrives at the dental office, and how must the patient be scheduled? The first amendment protects your right to stand up on an airplane and preach the gospel. True or False? The chart shows the marginal cost and marginal revenue of producing apple pies. A 6-column table titled The cost of and return on pie production has 7 rows. The first column is labeled pies produced per day with entries 0, 1, 2, 3, 4, 5, 6. The second column is labeled total cost with entries 0, 1, 1. 50, 1. 75, 2. 25, 3. 50, 5. 0. The third column is labeled Marginal cost with entries 0, 1, 0. 50, 0. 25, 0. 50, 1. 25, 1. 50. The fourth column is labeled total revenue with entries blank, 10, 20, 30, 40, 50, 60. The fifth column is labeled Marginal revenue with entries blank, 10, 10, 10, 10, 10, 10. The sixth column is labeled Profit with entries 0, 9, 18. 50, 27. 25, 37. 75, 46. 50, and 55. What most likely will happen if the pie maker bakes a seventh pie? The marginal cost will most likely decrease to $1. 00 The marginal cost will most likely increase to $2. 00 The marginal revenue will most likely decrease to $8. 0. The marginal revenue will most likely increase to $12. 0. when bone tissue loss becomes severed, an older adult has developed Cell cycle and cancer: CER: List three pieces of evidence as to why cancer cell tissue B is cancerous. Sample A-34 cells in Interphase B-27Prophase-3 B-2Meta-1 B-2Ana-2 B-1Telo-1 B-3Total A-41 cells, B-36 cells. Already have that interphase is longer in regular and shorter in cancerous cells, and that mitosis is longer in cancerous cells, and shorter in regular..IMPORTANT-will give brainliest could somebody help me please Which battle isconsidered the turningpoint in the PacificTheatre for the UnitedStates in WWII? The production department just had a supervisor quit. the production department manager stops by your hr office and drops off a list of employees in the department who they believe are good candidates to be the next supervisor.Which type of internal hiring does this situation describe? A. Targeted B. Closed C. Open Please help no links or files please. Please help ASAP. Algebra 9th grade