what is a symbol such as a heavy dot or another character that precedes a text in a power point

Answers

Answer 1

Answer:

I think the answer is a bullet.

Hope this helps


Related Questions

A(n) _____ is any piece of data that is passed into a function when the function is called.

Answers

Answer:

A parameter is a piece of information that is passed to a function to allow it to complete its task. A parameter can be any one of the four data types: handle, integer, object, or string.

Write a algorithm to calculate the sum of digits in a given three digit number

Answers

\({\huge{\pink{↬}}} \:  \: {\huge{\underline{\boxed{\bf{\pink{Answer}}}}}}\)

Sum of digits algorithm

Step 1: Get number by user.

Step 2: Get the modulus/remainder of the number.

Step 3: sum the remainder of the number.

Step 4: Divide the number by 10.

Step 5: Repeat the step 2 while number is greater than 0.

Task 2:
The Car Maintenance team wants to add Tire Change (ID: 1)
maintenance task for all cars with the due date of 1 September,
2020. However, the team also wants to know that if an error occurs
the updates will rollback to their previous state. Create a script for
them to first add all tasks and then rollback the changes.

Answers

Assuming a person have a database table  that is said to be named "MaintenanceTasks" with  also a said columns "ID", "TaskName", "DueDate", as well as "CarID", the code attached can be used to add the Tire Change maintenance task.

What is the script  about?

The above  script is one that tend to make  use of  a SQL transaction to be able to make sure that all changes are said to be either committed or they have to be rolled back together.

Therefore, The IFERROR condition  is one that checks for any errors during the transaction, as well as if an error is know n to have take place, the changes are said to be rolled back.

Learn more about script from

https://brainly.com/question/26121358

#SPJ1

Task 2:The Car Maintenance team wants to add Tire Change (ID: 1)maintenance task for all cars with the

five technology tools and their uses​

Answers

Answer:

Electronic boards

Videoconferencing ability

Search engines

Cloud services

Computing softwares

Explanation:

Technology tools are used to simplify task bring ease, comfort as well as better satisfaction :

The use of electronic boards for teaching is an essential tool for students and educators alike as it provides great features aloowibg teachers to write and make drawings without hassle. This clear visual display goes a long way to aide student's understanding.

Videoconferencing breaks the barrier that distance and having to travel bring swhen it comes to learning. With this tools, students and educators can now organize classes without having to be physically present un the same class room.

Search engines : the means of finding solutions and hints to challenging and questions is key. With search engines, thousands of resources can now be assessed to help solve problems.

Cloud services : this provud s a store for keeping essential information for a very long time. Most interestingly. These documents and files can be assessed anywhere, at anytime using the computer.

Computing softwares : it often seems tune consuming and inefficient solving certain numerical problems, technology now p ovide software to handles this calculation and provides solutions in no time using embedded dded to codes which only require inputs.

In Coral Code Language - A half-life is the amount of time it takes for a substance or entity to fall to half its original value. Caffeine has a half-life of about 6 hours in humans. Given the caffeine amount (in mg) as input, output the caffeine level after 6, 12, and 18 hours.

Ex: If the input is 100, the output is:

After 6 hours: 50.0 mg
After 12 hours: 25.0 mg
After 18 hours: 12.5 mg
Note: A cup of coffee has about 100 mg. A soda has about 40 mg. An "energy" drink (a misnomer) has between 100 mg and 200 mg.

Answers

To calculate the caffeine level after 6, 12, and 18 hours using the half-life of 6 hours, you can use the formula:

Caffeine level = Initial caffeine amount * (0.5 ^ (time elapsed / half-life))

Here's the Coral Code to calculate the caffeine level:

function calculateCaffeineLevel(initialCaffeineAmount) {

 const halfLife = 6; // Half-life of caffeine in hours

 const levelAfter6Hours = initialCaffeineAmount * Math.pow(0.5, 6 / halfLife);

 const levelAfter12Hours = initialCaffeineAmount * Math.pow(0.5, 12 / halfLife);

 const levelAfter18Hours = initialCaffeineAmount * Math.pow(0.5, 18/ halfLife);

 return {

   'After 6 hours': levelAfter6Hours.toFixed(1),

   'After 12 hours': levelAfter12Hours.toFixed(1),

   'After 18 hours': levelAfter18Hours.toFixed(1)

 };

}

// Example usage:

const initialCaffeineAmount = 100;

const caffeineLevels = calculateCaffeineLevel(initialCaffeineAmount);

console.log('After 6 hours:', caffeineLevels['After 6 hours'], 'mg');

console.log('After 12 hours:', caffeineLevels['After 12 hours'], 'mg');

console.log('After 18 hours:', caffeineLevels['After 18 hours'], 'mg');

When you run this code with an initial caffeine amount of 100 mg, it will output the caffeine levels after 6, 12, and 18 hours:

After 6 hours: 50.0 mg

After 12 hours: 25.0 mg

After 18 hours: 12.5 mg

You can replace the initialCaffeineAmount variable with any other value to calculate the caffeine levels for different initial amounts.

for similar questions on Coral Code Language.

https://brainly.com/question/31161819

#SPJ8

Add code to ImageArt to start with your own image and "do things to it" with the goal of making art. You could, for example, change the brightness and blur it. Or you could flip colors around, and create a wavy pattern. In any case, you need to perform at least two transforms in sequence.

Add code to ImageArt to start with your own image and "do things to it" with the goal of making art.

Answers

Attached an example of how you can modify the code to apply brightness adjustment and blur effects to the image.

What is the explanation for the code?

Instruction related to the above code

Make sure to replace   "your_image.jpg" with the path to your own image file.

You can   experiment with different image processing techniques, such as color manipulation, filtering,edge detection, or any other transformations to create unique artistic effects.

Learn more about code at:

https://brainly.com/question/26134656

#SPJ1

Add code to ImageArt to start with your own image and "do things to it" with the goal of making art.

LAB: Output values below an amount - methods
Write a program that first gets a list of integers from input. The input begins with an integer indicating the number of integers that follow. Then, get the last value from the input, and output all integers less than or equal to that value. Assume that the list will always contain less than 20 integers. Ex: If the input is: 5 50 60 140 200 75 100 the output is: 50 60 75
For coding simplicity, follow every output value by a space, including the last one. Such functionality is common on sites like Amazon, where a user can filter results. Write your code to define and use two methods: public static void getUserValues(int[] myArr, int arrSize, Scanner scnr) public static void outputIntsLessThanorEqualToThreshold (int[] userValues, int userValsSize, int upperThreshold) Utilizing methods will help to make main() very clean and intuitive.

Answers

Answer:

The program in Java is as follows:

import java.util.*;

public class Main{

public static void getUs erValues(int[ ] myArr, int arr Size, Scanner scnr){

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

        myArr[i] = scnr.nextInt();     }

    outputIntsLessThanorEqualToThreshold (myArr, arrSize, myArr[arrSize-1]);

}

public static void outputIntsLessThanorEqualToThreshold (int[] userValues, int userValsSize, int upperThreshold){

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

        if(userValues[i]<upperThreshold){

            System.out.print(userValues[i]+" ");         }     }

}

public static void main(String[] args) {

 Scanner scnr = new Scanner(System.in);

 int n;

 n = scnr.nextInt();

 int [] myArr = new int[n];

 getUserValues(myArr,n,scnr); }

}

Explanation:

See attachment for complete program where comments are used to explain each line

In this lab, you declare and initialize constants in a Java program. The program file named NewAge2.java, calculates your age in the year 2050.

// This program calculates your age in the year 2050.
// Input: None.
// Output: Your current age followed by your age in 2050.

public class NewAge2
{
public static void main(String args[])
{
int currentAge = 25;
int newAge;
int currentYear = 2023;
// Declare a constant named YEAR and initialize it to 2050

// Edit this statement so that it uses the constant named YEAR.
newAge = currentAge + (2050 - currentYear);

System.out.println("My Current Age is " + currentAge);
// Edit this output statement so that is uses the constant named YEAR.
System.out.println("I will be " + newAge + " in 2050.");

System.exit(0);
}
}

Answers

A Java programme uses a constant YEAR to calculate age in 2050. declares the variables currentAge, currentYear, and newAge. present age and age in 2050 are output.

What do Java variables and constants mean?

A constant is a piece of data whose value is fixed during the course of a programme. As a result, the value is constant, just as its name suggests. A variable is a piece of data whose value may vary while the programme is running.

How is a constant initialised?

At the time of its declaration, a constant variable must be initialised. In C++, the keyword const is put before the variable's data type to declare a constant variable. Any data type, whether int, double, char, or string, can have constant variables declared for it.

To know more about Java visit:

https://brainly.com/question/12978370

#SPJ1


Which statement describes Augmented Reality (AR) technology?

Answers

Answer:

Augmented Reality (AR) superimposes images and audio over the real world in real time. It does allow ambient light and does not require headsets all the time.

yan po ang szgot

wala po kasi pagpipilian

HOPE IT HELPS

pls follow ke

HELP ASAP! Can someone help me identify the issue with my c++ code? My output looks like the given outcome but is wrong. Please help, I'll appreciate it.

#include //Input/Output Library
#include //Format Library
using namespace std;
const int COLS = 6;
const int ROWS = 6;
void fillTbl(int array[ROWS][COLS], int);
void prntTbl(int array[ROWS][COLS], int);
int main(int argc, char **argv)
{
int tablSum[ROWS][COLS];
prntTbl(tablSum, ROWS);
return 0;
}
void fillTbl(int array[ROWS][COLS], int numRows)
{
for (int row = 1; row <= numRows; row++)
{
cout << setw(4) << row;
}
}
void prntTbl(int array[ROWS][COLS], int print)
{
cout << "Think of this as the Sum of Dice Table" << endl;
cout << " C o l u m n s" << endl;
cout << " |";
for (int row = 1; row <= ROWS; row++)
{
cout << setw(4) << row;
}
cout << "" << endl;

cout << "---------------------------------" << endl;
for (int row = 1; row <= 6; row++)
{
if (row == 1)
cout << " ";
if (row == 2)
cout << "R ";
if (row == 3)
cout << "O ";
if (row == 4)
cout << "W ";
if (row == 5)
cout << "S ";
if (row == 6)
cout << " ";
cout << row << " |";
for (int col = 1; col <= 6; col++)
{
cout << setw(4) << row + col;
}
cout << endl;
}
}

HELP ASAP! Can someone help me identify the issue with my c++ code? My output looks like the given outcome
HELP ASAP! Can someone help me identify the issue with my c++ code? My output looks like the given outcome

Answers

I see that your code is missing the function call to fillTbl() which is responsible for populating the tablSum array. Y

The Program to use

fillTbl(tablSum, ROWS);

This will ensure that the array is properly filled before being printed.

Therefore, you need to call this function before calling prntTbl() in the main() function. Add the following line before prntTbl(tablSum, ROWS);:

To guarantee the correct filling of the array, it must be ensured prior to its printing.

Read more about debugging here:

https://brainly.com/question/18554491

#SPJ1

Compare and contrast predictive analytics with prescriptive and descriptive analytics. Use examples.

Answers

Explanation:

Predictive, prescriptive, and descriptive analytics are three key approaches to data analysis that help organizations make data-driven decisions. Each serves a different purpose in transforming raw data into actionable insights.

1. Descriptive Analytics:

Descriptive analytics aims to summarize and interpret historical data to understand past events, trends, or behaviors. It involves the use of basic data aggregation and mining techniques like mean, median, mode, frequency distribution, and data visualization tools such as pie charts, bar graphs, and heatmaps. The primary goal is to condense large datasets into comprehensible information.

Example: A retail company analyzing its sales data from the previous year to identify seasonal trends, top-selling products, and customer preferences. This analysis helps them understand the past performance of the business and guide future planning.

2. Predictive Analytics:

Predictive analytics focuses on using historical data to forecast future events, trends, or outcomes. It leverages machine learning algorithms, statistical modeling, and data mining techniques to identify patterns and correlations that might not be evident to humans. The objective is to estimate the probability of future occurrences based on past data.

Example: A bank using predictive analytics to assess the creditworthiness of customers applying for loans. It evaluates the applicants' past financial data, such as credit history, income, and debt-to-income ratio, to predict the likelihood of loan repayment or default.

3. Prescriptive Analytics:

Prescriptive analytics goes a step further by suggesting optimal actions or decisions to address the potential future events identified by predictive analytics. It integrates optimization techniques, simulation models, and decision theory to help organizations make better decisions in complex situations.

Example: A logistics company using prescriptive analytics to optimize route planning for its delivery truck fleet. Based on factors such as traffic patterns, weather conditions, and delivery deadlines, the algorithm recommends the best routes to minimize fuel consumption, time, and cost.

In summary, descriptive analytics helps organizations understand past events, predictive analytics forecasts the likelihood of future events, and prescriptive analytics suggests optimal actions to take based on these predictions. While descriptive analytics forms the foundation for understanding data, predictive and prescriptive analytics enable organizations to make proactive, data-driven decisions to optimize their operations and reach their goals.

22. Copying formulas saves a lot of time. Which of the following is a method for copying a formula?
a.
Ctrl+c to copy the formula, Ctrl+v to paste the formula.
b. Drag the Fill Handle down, up, left or right to copy a formula.
C.
Press the Copy button on the Ribbon to copy the formula and the Paste button on the Ribbon to Paste it.
All of the above options are correct.
d.

Answers

a!!! it’s the only one that rlly makes sense . the other ones are wrong because there’s only like 2 ways to copy paste on pc

Best Methods to Convert PST Files to PDF Format?

Answers

Answer:

Conversion of PST files to PDF is possible in simple steps. You need to download the Run SysTools Outlook PST to PDF Converter.

Explanation:

Step 1: Download the tool.

Step 2: Add the PST file.

Step 3: Have a complete outlook on the data.

Step 4: Click Export.

______ is defined as the level of power and control that an individual has over their learning.

A.
Student agency

B.
E-Learning

C.
Educational agency

D.
Independence

Answers

Answer:

B, E-Learning

Explanation:

Changing the color of the text in your document is an example of

Answers

Answer:

???????????uhhh text change..?

Explanation:

Answer:

being creative

Explanation:

cause y not?

What common feature of well-made web apps helps them stand out from static email advertisements?

Answers

Answer:

For the test, I litterally came here while taking it and couldn’t find an answer, I got a horrible 70.. but all I know it’s not C or D

Explanation:

I took the test, sorry I don’t have an actual answer

jingle about community technology

Answers

The phrase "jingle bells jingle bells jingle all the way" is an example of onomatopoeia, a figure of speech in which words imitate or mimic sounds. In this case, the repetition of the word "jingle" creates a musical and rhythmic effect, resembling the sound of bells ringing. Onomatopoeia is often used to make language more vivid and engaging.

Figurative language refers to the use of words or expressions in a way that goes beyond their literal meaning, often used to create a more vivid or imaginative description.

It involves the use of various literary devices, such as metaphors, similes, personification, hyperbole, and more. Figurative language adds depth, imagery, and emotional impact to a text, allowing writers to convey ideas and evoke certain feelings or impressions in the reader's mind.

Learn more about Figurative language on:

https://brainly.com/question/17418053

#SPJ1

The complete question will be:

What type of figurative language is jingle bells jingle bells jingle all the way

Which algorithm steps correctly solve the problem: How many occurrences of 2 exist in the array?
(1) increment counter if 2 is found (2) loop through array (3) inspect each array element
(1) inspect each array element (2) loop through array (3) increment counter if 2 is found
(1) loop through array (2) increment counter if 2 is found (3) inspect each array element
(1) loop through array (2) inspect each array element (3) increment counter if 2 is found

Answers

The correct algorithm steps to solve the problem "How many occurrences of 2 exist in the array?" is:

(1) loop through array(2) inspect each array element(3) increment counter if 2 is found

Therefore, option (4) is the correct sequence of steps:

Why is this correct?

This is because you need to traverse the entire array and inspect each element to check if it is equal to 2. If an element is equal to 2, then you increment the counter.

1) loop through array

(2) inspect each array element

(3) increment counter if 2 is found

Read more about algorithm here:

https://brainly.com/question/24953880

#SPJ1

PLS HELP Select the correct answer from each drop-down menu.
Nina is writing an assignment on JavaScript. Help her complete the following sentences.

If the property “length” of a string object is applied to the string “JavaScript", the result would be {blank} (10, 5, or 8.)
For date object, the initial value of the newly created object “mydate” is the {blank} (previous', current, or next day's) date and time.

Answers

Answer:

i think its 5 then current

Explanation:

Answer:

10, current

Explanation:

Just took the test and got it right

happy to help !!

PLS HELP Select the correct answer from each drop-down menu.Nina is writing an assignment on JavaScript.

1a) Design an algorithm and draw a flowchart to display a set of even
numbers between 2 and 98 inclusive with their squares,
square roots, cubes and reciprocals.​

Answers

hi guys, my program displays a set of even numbers ranging from 1 to 100 with their square roots, cubes and reciprocals. pls i need a source code

Network ____ specify the way computers access a network. a. wires b. files c. standards d. instructions

Answers

Answer:

c. standards

Explanation:

Network standard specifies the way computers access a network. They are guided rules that must be taken into consideration for successful integration and interaction of technologies that use a wide variety of networks.

Another integral importance of network standard is that they ensure that individual usage of carried out without issues related to inconsistency.

Examples of Agencies governing the regulation of network standards are the International Telecommunication Union (ITU) and the Institute of Electrical and Electronics Engineers (IEEE)

One foot equals 12 inches. Write a function named feet_to_inches that accepts a number of feet as an argument and returns the number of inches in that many feet. Use the function in a program that prompts the user to enter a number of feet and then displays the number of inches in that many feet.

Answers

Answer:

def feet_to_inches( feet ):

      inches = feet * 12

      print(inches, "inches")

feet_to_inches(10)

Explanation:

The code is written in python.  The unit for conversion base on your question is that 1 ft = 12 inches. Therefore,

def feet_to_inches( feet ):

This code we define a function and pass the argument as feet which is the length in ft that is required when we call the function.

inches = feet * 12

Here the length in ft is been converted to inches by multiplying by 12.

print(inches, "inches")

Here we print the value in inches .

feet_to_inches(10)

Here we call the function and pass the argument in feet to be converted  

       

1. Write a program in C++ that can convert a given integer value
into words. Assume the largest integer value to be 999 billion
For an input of say 1108 your out should be ONE THOUSAND
ONE HUNDRED AND EIGHT​

Answers

Answer:

Hope this works

#include <iostream>

   #include <string>

   #include <vector>

   using namespace std;

   string digitName(int digit);

   string teenName(int number);

   string tensName(int number);

   string intName(int number);

   vector<string> ones {"","one", "two", "three", "four", "five", "six", "seven", "eight", "nine"};

   vector<string> teens {"ten", "eleven", "twelve", "thirteen", "fourteen", "fifteen","sixteen", "seventeen", "eighteen", "nineteen"};

   vector<string> tens {"", "", "twenty", "thirty", "forty", "fifty", "sixty", "seventy", "eighty", "ninety"};

   string nameForNumber (long number) {

       if (number < 10) {

           return ones[number];

       } else if (number < 20) {

           return teens [number - 10];

       } else if (number < 100) {

           return tens[number / 10] + ((number % 10 != 0) ? " " + nameForNumber(number % 10) : "");

       } else if (number < 1000) {

           return nameForNumber(number / 100) + " hundred" + ((number % 100 != 0) ? " " + nameForNumber(number % 100) : "");

       } else if (number < 1000000) {

           return nameForNumber(number / 1000) + " thousand" + ((number % 1000 != 0) ? " " + nameForNumber(number % 1000) : "");

       } else if (number < 1000000000) {

           return nameForNumber(number / 1000000) + " million" + ((number % 1000000 != 0) ? " " + nameForNumber(number % 1000000) : "");

       } else if (number < 999000000001) {

           return nameForNumber(number / 1000000000) + " billion" + ((number % 1000000000 != 0) ? " " + nameForNumber(number % 1000000000) : "");

       }

       return "error";

   }

   int main()

   {

       long input;

       do

       {

           cout << "Please enter a positive integer: ";    

           cin >> input;

           cout << "\n" << nameForNumber(input) << endl;

           cout << "\n\n" << endl;

       }while (input > 0);

       return 0;

   }

Which of these are examples of an access control system? Select all that apply.

Answers

Some examples of access control systems are: Card-based access control systems, Biometric access control systems, Keypad access control systems, Proximity access control systems

Access control systems are used to limit or control access to certain areas or resources by determining who or what is authorized to enter or exit. In modern-day society, access control systems are widely used in both commercial and residential settings to enhance security and safety. Some examples of access control systems are discussed below.

1. Card-based access control systems- These are the most common types of access control systems. In card-based systems, authorized personnel are issued an access card that contains a unique code or number. When the person swipes the card through a reader, the system checks if the card is valid and then unlocks the door.

2. Biometric access control systems- In this system, the user's unique physical characteristics are used to identify them, such as fingerprints, voice, face, or retina scans. Biometric systems are highly accurate and provide enhanced security.

3. Keypad access control systems- Keypad systems use a secret code entered through a keypad. The code can be changed frequently to prevent unauthorized access.

4. Proximity access control systems- Proximity systems use a small chip or key fob that emits a radio signal to a reader mounted near the door. When the signal is received, the door unlocks. These are just a few examples of access control systems. There are other systems like security guards, smart cards, RFID-based systems, and more.

For more such questions on Proximity access, click on:

https://brainly.com/question/30733660

#SPJ8

i need help look at pic

Answers

Answer:

ok

Explanation:

where is the pic that u want us to have a look at

Select all the activities Samil could so through his banking app.

Answers

Answer:

Make a deposit

Talk to a representative

Transfer money

Check account balances

Explanation:

Answer:

Make a deposit

Talk to a representative

Transfer money

Check account balances

Explanation:

Should Manufacturers Include Extra Programs in Operating Systems for Computers and Mobile Devices?

Answers

Answer:

Well, it depends. Sometimes the extra programs can be useful or just plain fun, in which case the answer is yes. But extra programs can also sometimes be utterly useless and get in the way, in which case the answer is no.\

The development of software for computers benefits greatly from an operating system.

What is operating systems?

Without an operating system, each program would have to contain both its own user interface (UI) and the complete code required to manage all low-level computer operations, such as disk storage, network connections, and other things.

This would greatly increase the size of any application and render software development difficult given the wide variety of underlying hardware available.

Instead, a lot of routine operations, such transmitting a network packet or showing text on a display or other conventional output device, can be delegated to system software, which acts as a bridge between applications and hardware.

Applications can interact with the system in a predictable and consistent manner thanks to the system software.

Therefore, The development of software for computers benefits greatly from an operating system.

To learn more about operating system, refer to the link:

https://brainly.com/question/6689423

#SPJ2

What are best DevOps automation solutions in 2023?

What are best DevOps automation solutions in 2023?

Answers

In 2021 and 2022, DevOps automation solutions will include Jenkins, GitLab, and Ansible. These tools will probably still be extensively utilised in 2023.

Which well-known DevOps solution in the cloud is employed to automate source code management version control and team collaboration?

Building and testing code, managing dependencies, and deploying applications are just a few of the many processes that can be automated with Gradle. Gradle can help to increase the effectiveness of DevOps workflows by automating certain tasks.

What automation tool will be popular in 2021?

The most widely used open-source framework for automating mobile tests for native, hybrid, and mobile web apps is called Appium. To drive native, mobile testing, Appium makes advantage of the Selenium JSON wire protocol's mobile extension.

To know more about DevOps automation visit:-

https://brainly.com/question/25134072

#SPJ1

How is a struck-by rolling object defined?

Answers

Sorry I don’t know I just needed points to ask my question

Answer:

Struck by rolling object is commonly defined as Struck-By Rolling Object Hazard because it was caused by rolling objects or any objects that moves in circular motion that could cause an injury or accident.

Explanation:

Online Book Merchants offers premium customers 1 free book with every purchase of 5 or more books and offers 2 free books with every purchase of 8 or more books. It offers regular customers 1 free book with every purchase of 7 or more books, and offers 2 free books with every purchase of 12 or more books.

Write a statement that assigns freeBooks the appropriate value based on the values of the bool variable isPremiumCustomer and the int variable nbooksPurchased. Assign 0 to freeBooks if no free books are offered. Assume the variables freeBooks, isPremiumCustomer, and nbooksPurchased are already declared.

In C++ please

Answers

fill in the blanks

we should our selves

Other Questions
Hi I need help pleaser Holly lives according to her own rules, unconcerned about designer labels, brand names, and luxury items. holly is at which level in maslows hierarchy of needs? Each of the 10 firms in a competitive market has a cost function of C = 20 +22 The market demand function is Q420-p. Determine the equilibrium price, quantity per fim, and market quantity. The equilib rium price is $(Enter your response as a whole number) The quantity per fem is q=units. (Enter your response as a whole number) The market quantity is Q=units. (Enter your response as a whole number) Suppose the firm faces a price of $34, an average variable cost of $21, and has an average fixed cost of $5. In the short-run, this tim O A. can cover all its costs 8. cannot cover all its costs, a A. and will have a profit per unit of $13. OB. and will have a loss per unit of $13. OC. and will have a profit per unit of $8 D. and will have a loss per unit of $8. during an emotional experience, our _________________ nervous system mobilizes energy in the body that arouses us. 4x + 1/3y^2 What is the value of the expression above when x = 2 and y = 3? You must show all work and calculations to receive full credit. what type of media can the support media be broadly categorized into? The American Civil War began on April 12, 1861. Which event took place on this day and marked the start of the war?A. South Carolina seceded from the UnionB. Abraham Lincoln was elected President of the United StatesC. Jefferson Davis was elected President of the Confederate StatesD. Confederate Army soldiers fired on Fort Sumter A student weighs out 0. 0422 g of magnesium metal. The magnesium metal is reacted with excess hydrochloric acid to produce hydrogen gas. A sample of hydrogen gas is collected over water in a eudiometer at 32. 0c. The volume of collected gas is 43. 9 ml and the atmospheric pressure is 832 mmhg. Using the experimentally collected data, calculate r and the percent error. If an object of mass has velocity b, then its kinetic energy K is given by K = 1/2 * m * v ^ 2. If v is a function of time t, use the chain rule to find a formula for dK/dt. In cos(0.3), what unit would 0.3 be? Is it radians? Also if you were to solve it, would the answer be in radians as well? Please explain. bathtub filled with water has a ladle and a large bowl next to it. how would you empty the water from the tub as quickly as possible?' the kinetic friction force exerted on an object: the kinetic friction force exerted on an object: can vary between zero to a maximum value. is inversely proportional to the normal force exerted on the object. is independent of the speed of the object. is proportional to the normal force exerted on the object. always has a direction opposite to the direction of motion. Please Help Me Solve This! I Need Help Now!Correct Answer = Brainliest X 1 A probability density function of a random variable is given by f(x) = on the interval [2, 8]. Find the expected value, the variance, 18 9 and the standard deviation. The expected value is u (Roun the area of the simpsons new house is 150% of the area of the old house. Write this percentage as a fraction and as a decimal (-2,+[tex]\sqrt{x}[/tex]-7)[tex]x^{2}[/tex] how long should your thesis statement be Remedies measure to decrease unemployment problem The sodium chromate solution from problem 1 was used to titrate a solution made by dissolving 2.000 g of a pure ferrous sait in sulfuric acid. The titration required 39.56 mL. of the sodium dichromate solution. Calculate the percent by mass of iron in the pure salt.The net ionic equation here is the same as in problem 1. You will not be able to write a balanced molecular equation for this because the anion in the ferrous salt was not specified in this problem. -Why was the aid program established?