Of the three primary types of eating disorders the most common

Answers

Answer 1

Answer:

i think binge eating disorder is the most common

Explanation:


Related Questions

What can be harmful to your computer?

Mobile Devices
Fogd and Drinks
Respect
Cyberbullying

Answers

Answer:

B, Food and Drinks......

HELP PLEASE

Today, not only do companies employ public relations managers but so do many
celebrities and politicians. Research and explain what the role of a public relations
manager is and see if you can think of the reasons why many public figures seem
to find them useful.

Answers

Answer: The role of a public relations manager is to keep the image of a celebrity, politician, ect. good so that they can keep their career going while constantly in the eye of the public. Public figures may find this useful because it can help them keep their record clean and have a personal life while also making it seem like they are perfect people to their audience, which in hand can help with business.

Explanation:

a file named loan.html, write an HTML document that looks similar to figure 9-7 in the textbook. Write four functions with these headers:
function doPayment ( )
function doBalance ( )
function computePayment (principal, annualRate, years, periodsPerYear)
function computeBalance (principal, annualRate, years, periodsPerYear, numberOfPaymentPaidToDate)
The first two functions (doPayment and doBalance) do the following:

Take no parameters.
Are called from an onclick attribute.
Get input from the user.
Call the computePayment or the computeBalance function.
Display a result to the user.
The computePayment function computes and returns the monthly payment for a loan with a fixed annual interest rate. The formula for computing a loan payment is

p = ar
1 − (1 + r)−n
Where p is the payment per period, a is the loan amount, r is the interest rate per period, and n is the total number of periods throughout the life of the loan.

The computeBalance function computes and returns the balance for a loan with a fixed annual interest rate. The formula for computing the balance of a loan after d payments have been made is

b = a (1 + r)d − p ( (1 + r)d − 1 )
r
Where b is the balance or payoff amount, a is the loan amount, r is the interest rate per period, p is the payment per period, and d is the number of payments paid to date.

Answers

Answer:

function computePayment(principal, annualRate, periodsPerYear){

   var pay;

   pay = (principal * annualRate)/(1-(1+annualRate)-periodsPerYear);

   return pay;

}

function computeBalance(principal, annualRate, periodsPerYear, numberOfPaymentsPaidToDate){

   var balance ;

   let num = (principal*(1+annualRate)*periodsPerYear);

   let denum = numberOfPaymentsPaidToDate *((1+annualRate) * periodsPerYear-1)*annualRate;

   balance = num-denum;

   return balance;

}

function doPayment(){

   let loanAmount = document.getElementById("principal").value;

   let rate = document.getElementById("rate").value;

   let duration = document.getElementsById("time").value;

   let result = computePayment(loanAmount, rate, duration);

   document.getElementsById("periodPay").value = result;

}

function doBalance(){

   let loanAmount = document.getElementById("principal").value;

   let rate = document.getElementById("rate").value;

   let duration = document.getElementById("time").value;

   let currentPaid = document.getElementById("paidMonths").value;

   let result = computeBalance(loanAmount, rate, duration, currentPaid);

   document.getElementById("displayBalance").value = result;

}

Explanation:

The javascript source code defines four functions. The 'doPayment' and 'doBalance' functions are initiated with the onclick properties of the HTML file buttons of the loan calculator. The doPayment function gets the user input from the HTML file and assigns them to variable which are used as the parameters of the computePayment function called.

The doBalance function also retrieve user input from the HTML file and calls the computeBalance function to calculate and return the balance of the loan to be paid.

Environmental ____ include disturbances in the external environment.​

Answers

Answer:What are external environmental factors?

Customers, competition, economy, technology, political and social conditions, and resources are common external factors that influence the organization. Even if the external environment occurs outside an organization, it can have a significant influence on its current operations, growth and long-term sustainability.

Explanation:

Write a program that prompts the user to enter a Social Security number in the format ddd-dd-dddd, where d is a digit. The program displays Valid SSN for a correct Social Security number or Invalid SSN otherwise.

Answers

ssn = input("Enter a valid Social Security number: ")

dashes = 0

nums = 0

message = "Invalid SSN"

if len(ssn) == 11:

   for x in ssn:

       if x.isdigit():

           nums += 1

       elif x == "-":

           dashes += 1

if nums == 9 and dashes == 2:

   message = "Valid SSN"

print(message)

I wrote my code in python 3.8. I hope this helps!

The program that prompts the user to enter a Social Security number in the format ddd-dd-dddd, where d is a digit can be implemented in Python using regular expressions. The regular expression pattern for the SSN format can be used to validate the input.

Pythons code:

```python

import re

ssn_pattern = re.compile(r'^\d{3}-\d{2}-\d{4}$')

ssn = input("Enter your Social Security Number (format: ddd-dd-dddd): ")

if ssn_pattern.match(ssn):

print("Valid SSN")

else:

print("Invalid SSN")

```

In the above code, we first import the `re` module to work with regular expressions.

We then define the regular expression pattern for the SSN format as `^\d{3}-\d{2}-\d{4}$`. This pattern matches any string that starts with three digits, followed by a hyphen, then two digits, another hyphen, and finally, four digits.

We then prompt the user to enter their SSN using the `input()` function. We then check if the entered SSN matches the pattern using the `match()` function of the regular expression object `ssn_pattern`.

If the SSN matches the pattern, we print "Valid SSN". Otherwise, we print "Invalid SSN".

Know more about SSN,

https://brainly.com/question/31778617

#SPJ4

what does libtard mean

Answers

Answer:

Normally, It is a person of the opposite political belief that thinks that liberals/leftists are stupid for what they say. Most of the time, this "insult" is mostly used by Right-Winged Conservitives or used as a joke by leftists to show how funny it is when conservitives say it.

Answer:

it means a liberal r3tard. lib-tard

Explanation:

The Review tab in Microsoft Publisher provides two groupings called _____. Proofing and Language Spell Check and Research Proofing and Thesaurus Language and Comments

Answers

Answer:

Proofing and language.

Explanation:

What is the main purpose of the status report? O A. To ensure that management and the team has a clear picture of the state of the project. B. To alert management to exceptional or unusual situations, C. To document the impact of change requests from the client. D. To detail the mistakes made in planning and budgeting,​

Answers

Answer:

A. To ensure that management and the team has a clear picture of the state of the project

Explanation:

hope this helps!

Answer:

A

Explanation:

Create a script to input 2 numbers from the user. The script will then ask the user to perform a numerical calculation of addition, subtraction, multiplication, or division. Once the calculation is performed, the script will end.

Answers

Answer:

The code given is written in C++

First we declare the variables to be used during the execution. The names given are self-explanatory.

Then the program outputs a request on the screen and waits for user input, for both numbers and one more time for the math operation wanted, selected with numbers 1 to 4.

Finally, the program executes the operation selected and outputs the result on screen.  

Code:

#include <iostream>

int main()

{

// variable declaration

float numberA;

float numberB;

int operation;

float result=0;

//number request

std::cout<<"Type first number:\n"; std::cin>>numberA;

std::cout<<"Type second number:\n"; std::cin>>numberB;

 

//Operation selection

cout << "Select an operation\n";

cout << "(1) Addition\n";

cout << "(2) Subtraction\n";

cout << "(3) Multiplication\n";

cout << "(4) Division\n";

std::cout<<"Operation:\n"; std::cin>>operation;

switch(operation){

 case 1:

  result = numberA+numberB;

  break;

 case 2:

  result = numberA-numberB;

  break;

 case 3:

  result = numberA*numberB;

  break;

 case 4:

  result = numberA/numberB;

  break;    

 default:

  std::cout<<"Incorrect option\n";

 }

//Show result

std::cout<<"Result is:"<<result<<::std::endl;

return 0;

}

Imagine you have a friend who is new to computing. He is not necessarily interested in going into programming, but he would like to know the basics in terms of how computers work, how programs are written, and how computers communicate with each other. You are talking to him about the basics, but he keeps confusing operating systems, programming language, computer language, and markup language. How would you use very plain language to explain to him the differences between these things and how they interact with each other?

Answers

An operating system is responsible for the overall function of a computer system and it enables us to program a computer through thes use of a computer language.

What is programming?

Programming can be defined as a process through which software developer and computer programmers write a set of instructions (codes) that instructs a software on how to perform a specific task on a computer system.

What is an operating system?

An operating system can be defined as a system software that is pre-installed on a computing device, so as to manage computer hardware, random access memory (RAM), software, and all user processes.

Basically, an operating system is responsible for the overall function of a computer system and as such without it, a computer cannot be used for programming. Also, a computer language is typically used for programming while a markup language is a type of computer language that is mainly used for designing websites through the use of tags.

Read more on software here: https://brainly.com/question/26324021

If anyone has the answer for this that would be really helpful!!

Answers

Hope this will help you...

Answer:

1.a

2.f

3.b

4.c

5.e

6.g

7.h

8.d

Explanation:

power point programm

Answers

huhhhhhhhyyyyhheyeydud
Other Questions
if the part is 22 and the percent is 44% what is the whole What did Confucius believe about the five relationships among people?a.They provided security from enemies.b.They preserved religious ceremonies.c.They allowed trade to flow.d.They encouraged harmony and respect. Although most STEM careers require workers to earn bachelor's degrees, high school graduates can qualify for some STEM careers. Which of these jobs do not require post-secondary education?O Museum Conservator and Anthropologist O Electronic and Industrial Engineering TechniciansO Social Science Research Assistant and Park Naturalist O Non-Destructive Testing Specialist and Surveying Technician Find the dimensions of the circle. Check your answer, Area = 36 m^2Please help! Ummmm ya girl needs help HELP ILL GIVE BRAINLIEST Which creation does the epic Mahabharata talk about in the story where Vishnu saves the seagulls eggs by sipping in the entire sea through his mouth? To answer this question, you will read two articles. First, read Article 1.Planning for the construction of O'Hare International Airport began in 1945 when a committee chose Orchard Field as the location of the future airport. In 1955, the airport opened to commercial air traffic and O'Hare International Airport served as a hub for travelers throughout the world.To respond to the increasing number of passengers, the airport expanded. O'Hare added a fifth runway and opened a terminal for international travel. Passengers could take flights to other countries and throughout the United States. The amount of land used by the airport grew to about 7,200 acres. This expansion included airplane hangars, cargo buildings, and even a post office. Next, there was an expressway built to connect O'Hare International Airport with downtown Chicago. People could travel to and from the airport quickly and easily, making it a desirable location. Finally, the main terminal building and parking lot were completed. These expansions led to a greater number of passengers. In 1962, 10 million passengers traveled through the airport that year alone. O'Hare was officially the world's busiest airport.O'Hare's growth was accompanied by innovation. In order to increase efficiency, the airport developed a task force that allowed three runways to be used at the same time in 1976. The Passenger Facility Charge, which charged passengers for using the airport, was introduced in 1990. This money was used to improve and modernize the airport. The Airport Transit System was created to help transport passengers between terminals in 1993. In 1996, the O'Hare Noise Compatibility Commission was created to help surrounding neighborhoods deal with aircraft noise. To aid with the O'Hare Modernization Program, a Sustainable Design Manual was created in 2003. This cutting-edge document helped the airport think about the environment during the modernization process. The principles outlined in the manual were later used in a similar document in August 2009 that promoted environmental sustainability at the airport. Over the years, O'Hare International Airport has grown and innovated to manage its expansion.Read Article 2 and answer the question.Between O'Hare and Midway International Airports, over one thousand flights depart Chicago every day. When planes take off and land, they create vibrations. These vibrations create noise in Chicago neighborhoods. In the early days of both airports, the city of Chicago realized that aircraft noise was a problem. People were unable to talk on their phones, watch television, or sleep peacefully at night.In 1996, the O'Hare and Midway Noise Compatibility Commissions were created to help solve the noise problem. The Commissions searched for ways to reduce the effect of aircraft noise on the surrounding neighborhoods. First, pilots and air controllers volunteered to follow the Fly Quiet Program. The program suggested that pilots use runways and flight paths over forests, highways, and industrial areas at night. By avoiding housing areas, pilots and air controllers decreased the noise level of the airplanes in these areas. That way, people would be able to sleep.Next, the commissions focused on using sound insulation in homes near the airports. If residents lived in an area that experienced a high volume of noise, then they were eligible to have their homes insulated. Residents were given different options. Their homes could be insulated by installing special windows, doors, or air conditioning. Similar steps were also taken to insulate private and public schools in the affected areas.The continued presence of the O'Hare and Midway Noise Compatibility Commissions is evident today. An Airport Noise Management System uses noise monitors to measure the noise levels in neighborhoods each day. A Community Outreach Vehicle distributes information about aircraft noise. Residents can use the Flight Tracker program. This online program shows images of where planes fly. If there is still a problem with noise, people can call the hotline or complete an online form.How is the structure of Article 1 different from the structure of Article 2? Article 1 uses cause and effect to show the impact of the airport's expansion, while Article 2 uses chronological order to show the steps taken to reduce noise over time. Article 1 uses comparison and contrast to describe the airport in the past and present, while Article 2 uses cause and effect to show how aircraft noise angered the surrounding neighborhoods. Article 1 uses chronological order to show the events that led to the present airport, while Article 2 uses a problem and solution text structure to show how noise is reduced in neighborhoods around the airports. Article 1 uses problem and solution to show the issues faced by the growing airport, while Article 2 uses comparison and contrast to show the difference insulation makes. Please help me I really need help with this Ok. Instructions: Correctly punctuate the run-on sentences. If it is correct, write C beside it.1. I enjoy going to visit my grandparents however I don't enjoy the three hour ride.2. I spoke with my aunt on the phone we talked for two hours.3. Yesterday, I jogged three miles it was the farthest I've ever jogged.4. Suzy took painting lessons then she decided she doesn't like to paint.5. Many of my friends enjoy pizza but I prefer Chinese food.6. I have no idea how to play this game it didn't come with directions.7. Carrie has decided to not use her credit cards therefore she will not be buying much.8. The error I made was small nevertheless it made me fail the test.9. Billy and Jim rode motorcycles to Nevada and they enjoyed every minute of the ride.10. Everyone wanted to go on the field trip so we all participated in the fund raiser. (50 points) If the area of the rectangle shown is 88 square inches, which equation could be used to find the value of x? I'd be lost without you. Why did the colonists take land from the native Americans? PLEASE HELP ME RIGHT ANSWERS ONLY Your gas-powered weed trimer has a tank that holds 0.72 gallons. If you burn 0.13 gallons every time you trim around your house, how many times can you trim the weeds without refilling the tank? The Brown family is on their way home from a cross-country road trip. During thetrip, the function D(t) = 3,500 - 20t can be used to represent their distance, inmiles, from home after t hours of driving.What is the value of D(15)?32003465-3200174.25 What statement best describes a persuasive essay?A. The author uses descriptive language to show readers what happened.B. The author includes main and supporting charactersC. The author tells a story about or describes real events from their life.D. The author debates a topic and urges readers to accept a certain point of view Why did Louisiana colonists dislike Ulloa?O He tightly controlled all of the colony's money andmaterial goods.O He wanted to keep old laws that most colonistsdisagreed with.O He tried to make changes, but did not have whatwas needed to accomplish them.O He had the backing of French officials, but not thesupport of the new Spanish officials. Click this link to view O'NET's Work Activities section for Construction Managers. Note that common activities arelisted toward the top, and less common activities are listed toward the bottom. According to O*NET, what arecommon work activities performed by Construction Managers? Check all that apply.using muscles to lift, push, pull, or carry objectscommunicating with supervisors, peers, or subordinatesusing speed of limb movement to move arms and legsscheduling work and activitiesexerting oneself physically over long periods of timemaking decisions and solving problems Solve the right triangle ABC (round to the nearest tenth):angle B = a = b = Simplify or expand the expression 6x + 2 (5x - 6)