If -1 < a < 2: print(a % 2) if not c and b: print(c//a) if 50 >= d or 2 <= d >= 8: print(d*d) if 0 == e and e < 100: print(e**e) if g and g > 77:

Answers

Answer 1

The given code snippet contains a series of conditional statements using the "if" keyword. Each condition is followed by a code block that will be executed if the condition is true. Let's break down each condition and its corresponding code block:

1. if -1 < a < 2: print(a % 2)
 This condition checks if the variable 'a' is between -1 and 2 (exclusive). If 'a' satisfies this condition, it will calculate the remainder of 'a' divided by 2 using the modulus operator (%), and print the result.

2. if not c and b: print(c//a)
This condition checks if the variable 'c' is False and 'b' is True. If both conditions are true, it will calculate the floor division of 'c' by 'a' using the double slash operator (//), and print the result.

3. if 50 >= d or 2 <= d >= 8: print(d*d)
  Explanation: This condition checks if the variable 'd' is less than or equal to 50 or if it is between 2 and 8 (inclusive). If 'd' satisfies either of these conditions, it will calculate the square of 'd' and print the result.

4. if 0 == e and e < 100: print(e**e)
  Explanation: This condition checks if the variable 'e' is equal to 0 and less than 100. If both conditions are true, it will calculate 'e' raised to the power of 'e' using the double asterisk operator (**), and print the result.

5. if g and g > 77:
  Explanation: This condition checks if the variable 'g' is True and greater than 77. If both conditions are true, it will not execute any code block, as there is no print statement provided.

In summary, the code snippet performs different calculations and prints the results based on the given conditions and the values of the variables.

Learn more about code snippet: https://brainly.com/question/30471072

#SPJ11


Related Questions

given that object-oriented programming is centered around objects, what c construct is used to create objects?

Answers

In programming, an object refers to an instance of a class. Objects are used to represent a particular item in the real world. For example, a car is an object in the real world, so it will be represented in a program as an object and the class keyword is used to create objects.

Object-Oriented Programming is a programming paradigm that emphasizes the use of objects. The C++ programming language has been specifically designed to support OOP (Object-Oriented Programming) programming. In C++, the class keyword is used to create objects. A class is a blueprint for an object that defines the properties and behaviors of that object. The class can be thought of as a template for creating objects. A constructor is a special member function that is called when an object is created. The constructor is used to initialize the data members of the object. In C++, the new keyword is used to dynamically create objects. The new keyword returns a pointer to the object that was created. The pointer can be used to access the object's members. In conclusion, C++ is a programming language that supports Object-Oriented Programming.

To know more about pointer visit:

https://brainly.com/question/30553205

#SPJ11

What is the missing line of code?
>>> answer = "happy birthday"
>>> _____
'Happy birthday'

Answers

Answer:

answer = "happy birthday"

answer = answer.capitalize()

print(answer)

Explanation:

Write a program in the if statement that sets the variable hours to 10 when the flag variable minimum is set.

Answers

Answer:

I am using normally using conditions it will suit for all programming language

Explanation:

if(minimum){

hours=10

}

Complete the work by inputting the right answers. #1,#2,#3and #4

Complete the work by inputting the right answers. #1,#2,#3and #4
Complete the work by inputting the right answers. #1,#2,#3and #4

Answers

Based on the given information, the appropriate function for cell E7 would be the SUM function.

What is the SUM function?

The SUM function is used to add up a range of numbers. In this case, cell E7 is intended to display the total cost of all the classes offered during the summer, which is the sum of all the costs in the table.

Therefore, the SUM function is the appropriate function for this purpose. The formula for using the SUM function would be "=SUM(D3:D6)". This formula will calculate the sum of the values in cells D3 through D6, which represent the costs of the individual classes.

Learn more about Sum function on

https://brainly.com/question/29478473

#SPJ1

who is spring trap form fnaf game

Answers

Answer:

fnaf fredy yellow

Explanation:

Answer: Springtrap is William afton from fnaf 3 but he is william afton when he is dead. william afton killed 7 kids (in my au) but originally 5

Explanation:you can look it up for more info

Difference between software developer and software engineer.

Answers

Answer:

The core difference between the two jobs is that software developers are the creative force that deals with design and program implementation, while software engineers use the principles of engineering to build computer programs and applications.

Explanation:

Answer: The terms "software developer" and "software engineer" are often used interchangeably, but there are some subtle differences between the two roles.

Explanation: Here are some key differences:

Focus: A software developer typically focuses on the implementation of software code and applications based on design specifications, while a software engineer is involved in the entire software development lifecycle, including design, development, testing, deployment, and maintenance.Education and training: Software engineers usually have a broader education and training than software developers, with a strong foundation in computer science and software engineering principles. Software developers may have more specialized training in specific programming languages, frameworks, or technologies.Job responsibilities: Software engineers often take on more managerial or leadership responsibilities, such as project management, requirements analysis, and team leadership, while software developers typically focus more on writing and testing code.Professional standards: Software engineering is typically governed by professional standards and codes of ethics, which may not apply to software development. This reflects the more rigorous and disciplined approach to software engineering compared to software development.

To learn more about software developer; https://brainly.com/question/3188992

The terms mainframe computer and supercomputer are interchangeable: both refer to the largest, most powerfut computers. O True O False​

Answers

Answer:

False

Explanation:

A mainframe computer is way more commonly available than a supercomputer as it is not as powerful/costly.

The statement "The terms mainframe computer and supercomputer are interchangeable: both refer to the largest, most powerfut computers." is false.

Is the statement true or false?

The terms "mainframe computer" and "supercomputer" are not interchangeable, as they refer to different types of computers with distinct purposes, architectures, and applications.

Mainframe Computer: Mainframes are large, powerful, and highly reliable computers designed to handle massive amounts of data processing and perform complex transactions. They have been traditionally used in organizations and industries that require high-speed processing, such as financial institutions, government agencies, and large corporations. Mainframes are known for their robustness, scalability, and ability to handle multiple tasks simultaneously. They are typically used for tasks like processing large databases, running critical business applications, and supporting many users concurrently.

Supercomputer: Supercomputers, on the other hand, are the most powerful computers in terms of processing speed and performance. They are specifically designed to solve extremely complex problems and perform intensive numerical calculations at very high speeds. Supercomputers are commonly used in scientific research, weather forecasting, simulations, and other computationally demanding tasks. They are optimized for parallel processing, which allows them to divide complex tasks into smaller parts and process them simultaneously.

While both mainframe computers and supercomputers are powerful machines, they serve different purposes. Mainframes are geared towards transaction processing and business applications in large organizations, whereas supercomputers are focused on scientific research and high-performance computing tasks. Their architectures, hardware, and software configurations are tailored to their specific functions, making them distinct types of computers in the world of advanced computing.

Learn more about supercomputers:

https://brainly.com/question/27291413

#SPJ3

who knows how to cope and paste on (ape.x)

Answers

To copy and paste on Apex, you can use the keyboard shortcuts "Ctrl+C" and "Ctrl+V" or right-click the selected text and choose "Copy" and "Paste."

Without more information about the context and platform you are referring to, it is difficult to provide a helpful response. However, if you are asking how to copy and paste on a computer or mobile device, the process typically involves selecting the text or item you want to copy, pressing "Ctrl + C" on a PC or "Command + C" on a Mac, and then pasting it by pressing "Ctrl + V" or "Command + V". The specific steps may vary depending on the software or device you are using, so it is recommended to consult the instructions or help resources for that specific platform.

Copying and pasting are essential computer skills that allow you to duplicate text or other content from one place and insert it into another. In Apex, you can use these methods to copy and paste information, making it easier to complete tasks efficiently.
To know more about keyboard visit:

https://brainly.com/question/24921064

#SPJ11

write a program that helps a hospital analyze the flow of patients through the emergency room. a text input file contains integers that represent the number of patients that entered the emergency room during each hour of each day for four weeks. obtain the input file name from a command line argument. read the information and store it in a three dimensional array. then analyze it to compare the total number of patients per week, per day, and per hour. display the results of the analysis.

Answers

Then analyze it to compare the total number of patients per week, per day, and per hour display the results of the analysis.

What is the analyze ?

Analyzing is the process of breaking down a topic or issue into its component parts in order to better understand it. Analysis involves studying the parts of a subject in order to gain a better idea of the whole. It can also involve looking at the relationships between the parts and how they interact with each other. Analyzing can be used to evaluate a situation, to develop a solution to a problem, or to gain insights into an issue.

#include <iostream>

#include <fstream>

#include <string>

using namespace std;

// Main function

int main(int argc, char* argv[])

{

  // Declare variables

   string filename;

   int patients[4][7][24];

   int weekTotal[4], dayTotal[7], hourTotal[24];

   int i, j, k;

  // Get filename from command line argument

   if (argc > 1)

   {

       filename = argv[1];

   }

   else

   {

       cout << "Please enter the input file name: ";

       cin >> filename;

   }

   // Open file

   ifstream fin(filename);

   // Read data

   if (fin.is_open())

   {

       for (i = 0; i < 4; i++)

       {

           for (j = 0; j < 7; j++)

           {

               for (k = 0; k < 24; k++)

               {

                   fin >> patients[i][j][k];

               

To learn more about analyze

https://brainly.com/question/30251121

#SPJ1

In which of the following do the bits work opposite of how bits in a subnet work?

Answers

In a subnet mask, the bits indicate the network portion and the host portion of an IP address. However, in a wildcard mask, the bits indicate which parts of the address should be ignored. Therefore, the bits in a wildcard mask work opposite of how bits in a subnet mask work.

In a subnet mask, the bits are used to divide the IP address into network and host portions. The network portion identifies the network to which the device belongs, while the host portion identifies the specific device on that network. The subnet mask is used by network devices to determine which part of an IP address corresponds to the network portion and which part corresponds to the host portion.

For example, if the subnet mask is 255.255.255.0, the first three octets (or 24 bits) of an IP address are used for the network portion, and the last octet (or 8 bits) is used for the host portion. This means that all devices on the same network will have the same first three octets, but different last octets. In contrast, a wildcard mask is used in access control lists (ACLs) to indicate which parts of an IP address should be ignored when matching traffic. Instead of indicating the network and host portions of an IP address, the bits in a wildcard mask indicate which parts of the address should be ignored.
To know more about IP address visit :

https://brainly.com/question/31026862

#SPJ11

11.
Mona is confused about finite loop and infinite loop, explain her with the help of
example.

Answers

Answer:

The basic difference between finite and infinite is the number of times it runs and ends. The loop is basically a set of instructions that keeps repeating itself.

The finite loop ends after running for a finite times. This body of finite loop will stop executing after certain condition is reached. Hence the finite loop body keeps executing itself finite number of times.

An infinite loop keeps running and repeating itself endlessly.This loop never ends. This loop can be the result of an error in a program. For example when no stopping or exit condition is specified in the program.

Explanation:

Example of finite loop:

Lets take for loop as an example:

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

{ cout<<i<<endl; }

Now the loop starts from i=0

Next it enters the body of loop to execute the statement: cout<<i; which means that the value of i is displayed on the output screen.

This loop keeps executing until the value of i exceeds 5.

At first iteration 0 is printed on the output screen, at second iteration 1, at third iteration 2, at fourth iteration 3, fifth iteration 4, sixth iteration 5. After each of these iterations, the value of i is incremented by 1.

When 5 is printed, then at the next iteration the specified condition i.e. i<=5 gets false as the value of i now becomes 6 after incremented by 1.

So the loop stops running. So this means that loop ran for finite times and stopped after the a certain condition is reached. The output is:

0

1

2

3

4

5

Example of infinite loop:

Lets take while loop:

int i = 6;

    while (i >=5)

    {         cout<< i;

             i++;     }

In the above example, the loop will run infinite times. Here the value of i is initialized to 6. Then while loop is used which checks the condition which is the value of i is greater than or equal to 5. If the condition is true, the body of the loop starts executing which prints the value of i. Lets see what happens at each iteration:

1st iteration: i>=5 is True because i=6 and 6 is greater than 5. The program control enters the body of loop. The statement cout<<i prints 6. Next the value of i is incremented by 1 and it becomes 7.

2nd iteration: i>=5 is True because i=7 and 7 is greater than 5. The program control enters the body of loop. The statement cout<<i prints 7. Next the value of i is incremented by 1 and it becomes 8.

This loop will repeat itself infinite times and never stops as i will always have value greater than 5. So this is the example of infinite loop.

When a condition constantly evaluates to true, the loop control does not travel outside of that loop, resulting in an infinite loop.

Infinite loop and example:

When a condition never turns false, the program enters a loop, which keeps repeating the same block of code over and over, with no end in sight.

An endless loop is demonstrated in the following example: b = input("what's your name?") while a==1 ", Welcome to Intellipaat!" print("Hi", b, ",

Find out more information about 'Loop'.

https://brainly.com/question/2081668?referrer=searchResults

25 points select 3 options!!!!!!!!!!!!!!!!!!!!!!!!!
Some disadvantages of ethical codes are that _____.

!!!!!!!!!!Select 3 options!!!!!!!!!!!!!!

A. there is no legal authority to prosecute offenders

B. the code is broad enough to cover all issues

C. people can abuse intellectual property law

D. the ethical code can be changed at anytime

E. specific details are not covered in the code

Answers

Answer:

Some disadvantages of ethical codes are that _____.

Answers:

specific details are not covered in the code

there is no legal authority to prosecute offenders

people can abuse intellectual property law

Ex:

Got it right on my assignment.

Answer:Below

Explanation:

25 points select 3 options!!!!!!!!!!!!!!!!!!!!!!!!!Some disadvantages of ethical codes are that _____.

Enumerate the 6 main shortcomings the compnents of satellite communication

Answers

The section, installation, and introduction costs, for example, are just too much. a frequency interference. This proliferation and interference run the risk of interfering with communication systems.

What is satellite communication?

The use of artificial satellites to establish communication links between different locations on Earth is known as satellite communication in the field of telecommunications.

The global communications network is not possible without satellite communications.

For instance, the section, installation, and introductory expenses are just too expensive. Interference on frequencies. The communication services may be disrupted as a result of this proliferation and interference.

Hence, the above given are the shortcomings in the components of satellite communication.

To learn more about the satellite communication refer;

https://brainly.com/question/21894964

#SPJ1

which windows 10 feature captures a screenshot each time the user clicks a screen item and saves the screenshots and user actions in a report that can be sent via email or saved to a shared storage location?

Answers

The  windows 10 feature that captures a screenshot each time the user clicks a screen item and saves the screenshots and user actions in a report that can be sent via email or saved to a shared storage location is  Steps Recorder

What is Steps Recorder?

A person can be able to utilize Steps Recorder to often capture steps you take on a PC, counting  a content depiction of what you did and a picture of the screen amid each step (called a screen shot).

The Windows “Steps Recorder” tool permits you to proficiently and successfully track and record what you're doing on your PC screen whereas naturally creating step-by-step composed informational and screenshots.

Learn more about Steps Recorder from

https://brainly.com/question/17740465

#SPJ1

Which of the following is true of how computers represent numbers

A. Using a fixed but large number of bits can eliminate the possibility of round off error when repressing numbers in binary
B. With a fixed number of bits some numbers are too large to represent in a computer which will lead to overflow errors.
C. Using a fixed but larger number of bits, for example 128, eliminates the possibility of overflow errors.
D. With a large but fixed number of bits it is possible to eliminate either round-off errors or overflow errors, but not both.

Answers

Answer: C. Using a fixed but large number of bits, for example 128, eliminates the possibility of overflow errors.

Explanation:

Computer as an intelligent device can only be able to represent inputs through conversion to readable machine language before it becomes output. In order to do this, there is a need to convert those inputs into bits and bytes. The converted input is then brought out as a readable format on the computer screen.

How do you make the text bold?
Select one:
a. font-weight:bold;
b. font:bold;
c. style:bold;

Answers

Answer:

The correct answer is A. font-weight:bold;

Display the total number of parking tickets.

Answers

OOGA BOOGA OOGA BOOGA OOGA BOOGA

Answer:

Explanation:

select * from customer where balance > (select avg(balance)

from customer) and credit_limit > (select avg(credit_limit) from customer);

*Write a program that prompts the user to enter the total number of students first. *Then ask the user to input each student’s grade and use loop statements to read in each grade. Check input grade to make sure 0<=grade<=100, if the user input any other number, print out warning message and ask the user to input a new grade. *Display the highest score, the lowest score, and the average.Here is the sample run:Please input the total number of students: 10Please input the students’ grade: 56 23 89 45 96 -45Grade must between 0 and 100.Please input another score: 45 12 85 74 65The highest grade is: 96The lowest grade is: 12The average grade is: 59Note: You do not need to use array to save each input score for this lab. A Single loop to read in each grade, compare with the current highest grade, lowest grade, and calculate the running sum at the same time.(Java)

Answers

Using knowledge in computational language in python it is possible to write a code that  prompts the user to enter the total number of students first. *Then ask the user to input each student’s grade and use loop statements.

Writting the code:

#calculating Average

   def calc_average(scores):

           return sum(scores)/len(scores)

   grade_dist = {

   (90, 101):'A',

   (80,90):'B',

   (70, 80):'C',

   (59, 70):'D',

   (0,59):'F'

   }

   def get_grade_freq(scores):

       grades = {'A':0, 'B':0, 'C':0, 'D':0, 'F':0}

       for score in scores:

         for k, v in grade_dist.items():

           if score in range(k[0], k[1]):

             grades[v]+=1

       print("Grade distributions")

       for grade, number in grades.items():

           print("Number of {}’s = {}".format(grade, number))

   def get_scores(n):

       scores = []

       cond = True

       while cond and n>0:

         score = int(input("Enter an exam score between 0 and 100 or -1 to end : "))

         if score==-1:

           cond=False

           return -1

         if score not in range(0,101):

             print("Sorry, {} is not in the range of 0 and 100 or -1. Try Again!".format(score))

         if score in range(0,101):

           scores.append(score)

           n-=1

       return scores

   def main():

       n = int(input('total number of exams ' ))

       scores = get_scores(n)

       if scores == -1:

           exit(-1)

       average = calc_average(scores)

       print("You entered {} valid exam scores with an average of {}.".format(n, average))

       get_grade_freq(scores)

   if __name__=='__main__':

       main()

See more about python at brainly.com/question/12975450

#SPJ1

*Write a program that prompts the user to enter the total number of students first. *Then ask the user

What type of card contains an integrated circuit chip that can hold information, which then can be used as part of the authentication process

Answers

Answer:

C. Smart Card

Explanation:

I majored in Technology.

Answer:

A smart card, chip card, or integrated circuit card (ICC or IC card)

Explanation:

smart card

When numbers are formatted in percent format, they are multiplied by _______ for display purposes.

1000
100
10
20

Answers

They are multipled by 100
They are multiplied by 100

Five uses of the start button

Answers

Starting something

Possibly turning it off

Making something work

Fixing the Start Button

Beginning something

What command can you use to display ports that are currently listening for communications on your computer?

Answers

The command to display ports that are currently listening for communications on a computer is "netstat."

The "netstat" command is a network utility tool available in various operating systems, including Windows, Linux, and macOS. It allows users to view the active network connections and display information about the ports that are currently listening for communications on a computer.

By executing the "netstat" command with specific options, such as "-a" (all connections and listening ports) or "-n" (display addresses and port numbers numerically), users can obtain a list of active network connections, including the listening ports. The output typically includes details such as the local address and port, the foreign address and port, the state of the connection, and the process ID associated with each connection.

This information can be valuable for troubleshooting network-related issues, identifying open ports, monitoring network activity, or ensuring proper configuration of network services. The "netstat" command provides a convenient way to gather essential information about the listening ports on a computer's network interfaces.

Learn more about Linux here:

https://brainly.com/question/32144575

#SPJ11

1)Which tool can you use to find duplicates in Excel?
Select an answer:
a. Flash Fill
b. VLOOKUP
c. Conditional Formatting
d. Concatenation
2)What does Power Query use to change to what it determines is the appropriate data type?
Select an answer:
a.the headers
b. the first real row of data
c. data in the formula bar
3)Combining the definitions of three words describes a data analyst. What are the three words?
Select an answer:
a. analysis, analyze, and technology
b. data, programs, and analysis
c. analyze, data, and programs
d. data, analysis, and analyze

Answers

The tool that you can use to find duplicates in Excel is c. Conditional Formatting

b. the first real row of datac. analyze, data, and programs

What is Conditional Formatting?

Excel makes use of Conditional Formatting as a means to identify duplicate records. Users can utilize this feature to identify cells or ranges that satisfy specific criteria, like possessing repetitive values, by highlighting them.

Using conditional formatting rules makes it effortless to spot repeated values and set them apart visually from the other information. This function enables users to swiftly identify and handle identical records within their Excel worksheets, useful for activities like data examination and sanitation.

Read more about Conditional Formatting here:

https://brainly.com/question/30652094

#SPJ4

What is the Server Core installation option in Windows Server?

Answers

The Server Core installation option in Windows Server is a minimal installation option that provides a low-maintenance server environment with limited graphical user interface (GUI) elements.

What is Server?

A server is a computer or other device on a network that provides a service, such as storing and sharing data, hosting websites, or sending and receiving emails. Servers are typically located in a secure, climate-controlled environment, such as a data center, and are managed by an administrator. They are connected to the internet or to a local network, usually via a router. Servers are usually more powerful than the computers and other devices that are connected to them, and they are designed to handle a large number of requests from multiple users or devices. They can store, process, and transfer large amounts of data and are essential components in any networked environment.

To learn more about Server

https://brainly.com/question/27960093

#SPJ4


In project management, which step involves the project manager identifying
tasks needed to complete a project and the employees qualified to complete
them?
A. Planning
B. Executing
C. Initiating
D. Monitor

Answers

In project management, the step that involves the project manager identifying tasks needed to be completed and the employees qualified to complete them is known as Planning.

Project Executing

Project Executing is the stage of project management where the project manager's plan is put into action.

At this stage, meetings are held, outlines are detailed and carried out, and everyone that should be involved in the task are contacted and assigned roles.

This stage involves identifying tasks and assigning them to employees qualified to carry out and complete the tasks.

Project management

It is the application of processes, skills and knowledge to achieve specific project purposes

Therefore, the correct answer is option B.

Read more about project management here:

https://brainly.com/question/20070421

Imagine that you are going to recommend a pet to someone. What are three questions you would ask them to help make that recommendation?

Answers

Answer: what kind of pet do u like? Would u like a big animal? Would u want a reptile or a dog and that stuff?

Explanation:

The  three questions to ask to help make a suitable recommendation:

What is your daily routine like, and how much time can you dedicate to caring for a pet?Do you have any allergies or sensitivities to pet dander or fur?What type of living situation do you have (apartment, house, etc.), and are there any pet-related restrictions?

What is the recommendation

If we know what a person does every day, it will help us figure out if they have enough time to take care of a pet.

This includes giving them food, keeping them clean, making sure they get enough exercise, and spending time with them. Some pets need more time and care than others, so it's important to choose a pet that matches the person's lifestyle.

Read more about recommendation here:

https://brainly.com/question/25288497

#SPJ3

what is the working principle of computer?​

Answers

Answer:

input, process, output, storage

que es el prototipo de representación tradicional

Answers

Answer:

abahueheheje ehehebe ehebe even 3ehe ebe

for purposes of computing gdp, how are net exports calculated?

Answers

In the calculation of GDP, net exports are determined by subtracting total imports from total exports.

Net exports are the value of a country's total exports minus the value of its total imports. It's a crucial indicator of a country's international trade competitiveness, which shows the difference between a country's income and expenditure from the foreign sector of its economy.

When exports are higher than imports, a country experiences a trade surplus, while when imports are greater than exports, it has a trade deficit. Net exports are one of the four major components of GDP, with the other three being consumption, investment, and government spending.

To calculate net exports for GDP, total exports are subtracted from total imports. For instance, if a country exports $500 billion worth of goods and imports $400 billion worth of goods, the net exports would be $100 billion ($500 billion - $400 billion).

To summarize, net exports are calculated by subtracting the total value of a country's imports from the total value of its exports. It is one of the components used to determine the GDP.

To learn more about net exports: https://brainly.com/question/26428996

#SPJ11

Your local changes to the following files would be overwritten by merge.

Answers

If you haven't done so, you can stash your changes temporarily, pull the remote changes, and then apply your changes back to the merged code.

What can you do to avoid losing your local changes when merging changes made by someone else in a repository?

When multiple people work on the same files in a project, conflicts can occur when merging changes. Git, a popular version control system, will alert you if your local changes conflict with changes made by someone else in the repository.

To avoid losing your local changes, you should first commit and push them to the repository before pulling changes from the remote branch. If you haven't done so, you can stash your changes temporarily, pull the remote changes, and then apply your changes back to the merged code.

Learn more about merged code.

brainly.com/question/14192987

#SPJ11

Other Questions
please explain chlorine to me in fullthank you The sales tax in the town where Amanda lives is 7%. Amanda paid $28 in sales tax on a new stereo. What was the price of the stereo? true or false every program or app requires ram, which is the volatile and temporary storage location for open apps and data.' What is the major reason the Safavid, Mughal, and Ottoman Empires were able to takecontrol of vast territories? What is the purpose of cytokinesis?to divide the nucleusto divide the cytoplasmto make another copy of DNAto form a parent cell from a daughter cellThe anwser is B 1. Distinguish in detail the difference and similarity between Bismarck model vs. Beveridge mode URGENT PLEASEEEEQUESTION 47 In the small intestine, chylomicrons are picked up by lacteals; simple sugars and amino acids directly enter the blood. O True False QUESTION 48 Cytosol is intracellular fluid; most extrac Represent as an expression. The sum of 4 times a number (n) and negative 17. 3 questions 30 points pls The figure below shows a shaded region and a non-shaded region. Angles in the figure that appear to be right angles are right angles.https://seminole.flvs.net/webdav/assessment_images/educator_mjmath2_v14/05_10_02_assessment.gifWhat is the area, in square feet, of the shaded region?What is the area, in square feet, of the non-shaded region? According to the county election, who participated in elections in the mid nineteenth century?. hat type of peripheral neuron releases norepinephrine onto a beta receptor? (1 mark) postganglionic neurons The five-forces model helps to determine both the nature of competition in an industry and the profit potential for the industry. true/ false Which of the following expressions is equivalent to 25r^4+40r^2s+16s^2?A. (5r+4s)^2B. (5r^2+4s)^2C. (5r+4s^2)^2D. (5r^2+4s^2)^2 In a survey of 802 U.S. adult drivers, 265 state that traffic is getting worse in their community. Construct a 95% confidence interval for the proportion of residents who think traffic is getting worse in their community. Which best summarizes the intent of Franklin Roosevelt's Hundred Days legislation and programs?to provide Americans with relief. Find the rate. Principle= $50, Interest= $10, Time= 2 years I need help!Round to the nearest Hundredth 2 #s after decimal!!!!!!! the balance sheet of cattleman's shows assets of $87,000 and liabilities of $15,400. the fair value of the assets is $89,700 and the fair value of its liabilities is $15,400. longhorn paid cattleman's $82,520 to acquire all of its assets and liabilities. longhorn should record goodwill on this purchase of: Why do you think Chamberlain was so excited after theMunich Agreement? How might other nations have feltabout the Munich Agreement? Why?