Do you know some website that can make a questionnaire? And I can use the link then put up on the social media so that everyone can do it.​

Answers

Answer 1

Answer:

You can use the following websites for more of a simple and smooth experience

SoGoSurvey.

Survey Monkey.

Typeform.

Google Forms.

Client Heartbeat.

Zoho Survey.

Survey Gizmo.

Survey Planet.

Hope this helped!

Explanation:

Answer 2

Answer:

brainly!

Explanation:

i think this is what you are talking about


Related Questions

An external entity may be: (1 point) (Points : 1.5) a person.
another department.
another computer system.
All of the above.

Answers

Answer: All of the above

Explanation:  External entity is the thing that belongs to the outside surface or environment.In relation with the organizational field , external entity is the any outside source that is not a part of the organization.A person can be external entity if he/she is not a part of organization or employee.

Another department can be external entity with respect to a particular department of the same organization ,E.g.- Finance department can be external entity for the human resource department and vice-versa.

Computer system belonging to a person can be external entity for the other employee even being in same or different department of the organization E.g.- Employee 1 has computer system and it is a external source for the employee 2 because it does not belong to him and is outside of the his surrounding .

Thus, all the options are correct.

Create a class Book with two private int fields, numPages and currentPage. Supply a constructor that takes one parameter and sets numPages to that value and currentPage to 1. Provide accessor methods for both fields. Also provide a method nextPage that increments currentPage by 1, but only if currentPage is less than numPages.

Answers

Answer:

The code is in the explanation.

Explanation:

/*Creating the class*/

public class Book{

      /*Here we put the attributes of the class;

      In our case, they are the two private ints*/

      private int numPages;

      private int currentPage;

    /*Here is the constructor.

    The constructor always has the same name as the class

     In (), are the parameters.*/

     public Book(int numberOfPages){

                numPages = numberOfPages; /*sets numPages to the value

                                                                    of the parameter*/      

               currentPage = 1; /*sets currentPage to 1*/    

}

   /*An acessor method is a method with which we can get the value of a      variable*/

    /*Acessor method for numPages*/

   /*numPages is an int, so the acessor method returns an int*/

    public int getnumPages(){

            return numPages;

    }

    /*Acessor method for currentPage*/

    public int getcurrentPage(){

           return currentPage;    

     }

     /*Method next page*/

     /*This method does not return anything, so it is a void method*/

     public void nextPage(){

     /*Verify that currentPage is less than numPages*/

     if (currentPage < numPages){

             currentPage = currentPage + 1;

     }

     }

}

The Java class Book contains private fields numPages and currentPage. Its constructor sets numPages to a given value and currentPage to 1. Accessor methods retrieve these values. The nextPage() method increments currentPage by 1 if it's less than numPages.

Here's the implementation of the Book class in Java:

```java

public class Book {

   private int numPages;

   private int currentPage;

   public Book(int numPages) {

       this.numPages = numPages;

       this.currentPage = 1;

   }

   public int getNumPages() {

       return numPages;

   }

   public int getCurrentPage() {

       return currentPage;

   }

   public void nextPage() {

       if (currentPage < numPages) {

           currentPage++;

       }

   }

}

```

This Book class has two private fields: `numPages` and `currentPage`. The constructor initializes `numPages` with the given value and sets `currentPage` to 1. Accessor methods `getNumPages()` and `getCurrentPage()` return the values of the respective fields. The `nextPage()` method increments `currentPage` by 1 if it's less than `numPages`.

correct answers plz
[tex] \sqrt{x-8} = 3[/tex]

Answers

Answer:

x = 17

Explanation:

[tex]\sqrt{x-8} = 3\\\\\sqrt{x-8}^{2}  = 3^{2} \\\\\\x - 8 + 8 = 9 + 8\\ \\x = 17[/tex]

Hey!

-----------------------------------------------

Steps To Solve:

~Square both sides

√x - 8² = 3²

~Simplify

x - 8 = 9

~Add 8 to both sides

x - 8 + 8 = 9 + 8

~Simplify

x = 17

-----------------------------------------------

Answer:

[tex]\large\boxed{x~=~17}[/tex]

-----------------------------------------------

Hope This Helped! Good Luck!

Create a float variable named circumference.

Answers

Answer:

Float circumference; // Create a float variable

Explanation:

The float datatype is used for storing the decimal point values .The syntax  to declaring  any float variable is given below.

float variable-name;

float  circumference; // create a float variable

circumference=89.9007;; // store the value in circumference

Following are program in c++

#include <iostream> // header file

using namespace std; //namespace

int main() // main function

{

   float circumference; // creating variable float

   circumference=89.9007; // storing value

   cout<<circumference;  // display value circumference

   return 0;

}

Output:

89.9007

______The component of a computer that contains the ALU (Arithmetic Logic Unit) is the RAM. (T/F)

Answers

Answer: False

Explanation:

 The given statement is false as, the component of the computer basically contain the arithmetic logic unit (ALU) in the central processing unit (CPU). The CPU operations are basically performed by the one and more than one arithmetic logic unit.

It is basically load the data from the input register in the computer system. The CPU basically provide various instruction and operation to the ALU so that it can perform various types of operation in the data.

The ALU stored the result in the output register of the system.

Which database property type increases the efficiency of a search on the designated field in the physical database?

Validation rule
Validation text
Indexed
Expression

Answers

Answer: Indexed

Explanation: Indexed property in the database system is for indexing .In this process reduction of the record/disk numbers results in the increase in the optimized performance. The structure of the index is in column form.

This technique rapidly provides the data from the table containing database when every query arises or requirement is proposed. Therefore the efficiency of the database increases.

Other options are incorrect because validation rule and text are regarding the  verification of the data user and text respectively and expression is defined as the group of one or more value.Thus the correct option is indexed.

write a program that does the following: 1. Declare the string variables firstname and last name. 2. Prompt the user for first name and last name. 3. Read in the first name and last name entered by the user. 4. Print out Hello follow by users full name. These questions could be found from this book C++ without fear second edition by Brian overland

Answers

Answer:

// here is code in c++.

#include <bits/stdc++.h>

using namespace std;

// main function

int main()

{

   // variable declaration

 string firstname,lastname;

 // ask to enter first name

 cout<<"enter the first name:";

 // read firs tname

 cin>>firstname;

 // ask last name

 cout<<"enter the last name:";

 // read last name

 cin>>lastname;

 // print the output

 cout<<"hello "<<firstname<<" "<<lastname<<endl;

return 0;

}

Explanation:

Part 1, declare variables "firstname" and "lastname".Part 2, Ask user to enter first and last name.Part 3, read the value of first and last name and assign to variables "firstname" and "lastname" respectively.Part 4, Print "hello" followed by first name and last name.

Output:

enter the first name:robert

enter the last name:doweny

hello robert doweny

mkdir() is the command in Java to create a new directory.
a) True b) False

Answers

Answer:

True.

Explanation:

mkdir() method in java is a part of the file class.The mkdir() command is used to create a new directory and it is denoted by the path name that is abstract.This function mkdir() returns true if the directory is created and false if the directory is not created by this function.

Hence the answer for this question is True.

Dеclarе and allocatе mеmory (on thе hеap) for a onе-dimеnsional array of 256 doublеs namеd pricеs

Answers

Answer:

double *prices=new double [256];

Explanation:

To allocate memory on heap we use new keyword.In the above statement an array name prices is declared and the memory allocated to it is on the heap memory.

First look at double * prices.It is a pointer this pointer is created on the stack memory which holds starting address of the array present on the heap memory of size 256..

Which of the following keywords is used to remove a database table in Oracle? (Points : 2) DROP TABLE
ALTER TABLE...DROP
DELETE TABLE
TRUNCATE TABLE

Answers

Answer:

DROP TABLE

Explanation:

DROP TABLE is used to remove a database table in Oracle.

The syntax is DROP TABLE <TableName>;

For example: Suppose there is a table called Student in the database which needs to be removed. Then the administrator with the required privilege can issue with the following command:

DROP TABLE Student;

This is distinct from DELETE statement which is used to delete individual row or set of rows.

Convert decimal number 262 to an octal number.

Answers

Answer:

406.

Explanation:

continuously dividing the base 10 or decimal number by 8 till the decimal number does not becomes zero and the result is the remainders in reverse.  

Remainder on 262 / 8 = 6.  

Remainder on 32 / 8 = 0.  

Remainder on 4 / 8 = 4.  

Octal number=406.

Final answer:

To convert decimal 262 to octal, divide by 8 and write down remainders. Continue until quotient is zero. Writing remainders in reverse order gives the octal number 406.

Explanation:

To convert the decimal number 262 to an octal number, you need to divide the number by 8 and write down the remainder. Continue the process with the quotient until the quotient is zero. Let's break it down step-by-step:


 262 ÷ 8 = 32 with a remainder of 6. Write down 6.
 32 ÷ 8 = 4 with a remainder of 0. Write down 0.
 4 ÷ 8 = 0 with a remainder of 4. Write down 4.

Now, write the remainders in reverse order to get the octal number. So, 262 in decimal is 406 in octal.

Assume a 8x1 multiplexer’s data inputs have the following present values: i0=0, i1=0, i2=0, i3=1, i4=0, i5=0, i6=0, i7=0. What should be value of the select inputs s2, s1 and s0 for the value on the multiplexer’s output d to be 1?

s2=

s1=

s0=

Answers

Answer: s₂ = 0  s₁ = 1  s₀ = 1

Explanation:

In brief, a multiplexer is a digital circuit (generally buit with combiantional logic) , that selects one of the inputs to be present at the output, based on the combination of the values present in auxiliary inputs called select inputs.

As a rule, the number of inputs (m) and the number of select inputs (n) satisfy this condition:  m = 2ⁿ

At any time, the input which order, be equal to the binary combination of the select inputs, will be present at the output.

In our case, being an 8x1 multiplexer, we will have 3 select inputs, denoted as s₂, s₁, s₀.

The only input which current value is "1", is i3, so, in order to send an "1"to the output, the binary combination at the select inputs must match the number of the input to be selected, i. e., 3.

So,  s₂s₁s₀ must be read as 3 in binary; 011, so s₂=0 s₁=1 s₀= 1.

Use truth tables to show that the following pairs of expressions are logically equivalent.

(a) p ↔ q and (p → q) ∧ (q → p)

(b) ¬(p ↔ q) and ¬p ↔ q

(c) ¬p → q and p ∨ q

Answers

Answer:

I attached you a picture with the answers

Explanation:

A truth table is a tabular representation of all the combinations of values for inputs and their corresponding outputs. It is a mathematical table that shows all possible outcomes that would occur from all possible scenarios that are considered factual, hence the name. Truth tables are usually used for logic problems as in Boolean algebra and electronic circuits.

When a block exists within another block, the blocks are a) structured b) nested c) sheltered d) illegal

Answers

In programming, when a block exists within another block, it is described as nested. Nesting is a common and logical structure used to organize code.

When a block exists within another block, the blocks are b) nested. In the context of computer science, especially in programming, nesting refers to having one set of instructions inside another set.

This is a common structure in many programming languages where, for example, you can have a conditional statement inside a loop, or one function defined within another. Nesting helps in organizing code logically and can make the code easier to read and maintain.

Create a single line comment before you define your variables that says ""Variable Definitions"".

Answers

Answer:

// Variable Definitions

int a=67;

float b=78.8797;

Explanation:

For creating a single line comment we use // slash. It is used for making the comment in the program. In this we made a comment with help of  // after that we create a two variable i.e a and b of integer and float type.

.When an argument is passed ______________, the called method can access and modify the caller’s original data directly.

a.either by value or by reference

b.by value

c.using keyword ref

Answers

Answer:

c.using keyword ref

Explanation:

In C# when we have pass any variable by reference we use the ref keyword. When we pass a variable by reference in the function the changes done in the function are directly happening on the original variables.

When a variable is  passed by value a copy of these variable is created in the function and the operation is done on those copies.No changes can be seen on the original variables.

Hence the answer is option c.

) The order of messages on a sequence diagram goes from _____. (Points : 6)
right to left
bottom to top
left to right
top to bottom

Answers

Answer:

Top to bottom

Explanation:

A sequence diagram shows the sequence or the order in which the interaction between components takes place.

It places them in order of the occurrence of the events or interactions between the components or objects thus arranging these from top to bottom.

The sequence diagram shows the way an object in a system functions and the order it follows.

Convert A4B from hexadecimal to binary. Show your work.

Answers

Answer:

The answer is A4B₁₆ =  2635₁₀ =  101001001011₂

Explanation:

To convert from hexadecimal base system to binary base system, first you can do an intermediate conversion from hexadecimal to decimal using this formula:

where position of the x₁ is the rightmost digit of the number and the equivalents hexadecimal numbers to decimal:

A = 10.B = 11.C = 12.D = 13.E = 14.F = 15.

A4B₁₆ = A*16²+4*16¹+B*16⁰ = 2560 + 64 + 11 = 2635₁₀

Now, you have the number transformed from hexadecimal to decimal. To convert the decimal number 2635 to binary: Divide the number repeatedly by 2, keeping track of each remainder, until we get a quotient that is equal to 0:

2635 ÷ 2 = 1317 + 1;

1317 ÷ 2 = 658 + 1;

658 ÷ 2 = 329 + 0;

329 ÷ 2 = 164 + 1;

164 ÷ 2 = 82 + 0;

82 ÷ 2 = 41 + 0;

41 ÷ 2 = 20 + 1;

20 ÷ 2 = 10 + 0;

10 ÷ 2 = 5 + 0;

5 ÷ 2 = 2 + 1;

2 ÷ 2 = 1 + 0;

1 ÷ 2 = 0 + 1;

Now, construct the integer part base 2 representation, by taking the remainders starting from the bottom of the list:

2635₁₀ =  101001001011₂

Write a method with the signature "boolean[] createAlternating(int length)" that takes an integer representing the size of an array, and then returns a new boolean array of that size where each index alternates between true and false (e.g., index 0 is true, index 1 is false, index 2 is true, and so on).

Answers

Answer:

// program in java.

import java.util.*;

// class definition

class Main

{

// mthod that fill the array with true and false

 public static  boolean [] createAlternating(int length)

{

// create array

   boolean arr[]=new boolean[length];

// fill the array

   for(int a=0;a<length;a++)

   {

       if(a%2==0)

       arr[a]=true;

       else

       arr[a]=false;

   }

// return array

   return arr;

}

// main method

public static void main (String[] args) throws java.lang.Exception

{

   try{

// scanner object to read input

Scanner scr=new Scanner(System.in);

System.out.print("Enter the size: ");

// read the size

int n=scr.nextInt();

// store the array

 boolean  []copy = createAlternating(n);

// print the array elements

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

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

   }catch(Exception ex){

       return;}

}

}

Explanation:

Read the size of array from user with Scanner object.call the method createAlternating() with parameter length.Then create an array of size length.Fill the array true at even index and false at odd index.return the array and print the elements.

Output:

Enter the size: 10

true false true false true false true false true false

Convert (675.6)8 to hexadecimal. (use base 2 instead of base 10 as the intermediate base for conversion).

Answers

Answer:

1BD.C

Explanation:

Keep in mind that octal number has 3 binary fields where the right field is the number 1, the center field is the number 2 and the left field is the number 4. you need that your 3 fields sum the final octal digit.

For example :

(1)8 = (001)2(2)8 = (010)2(3)8 = (011)2

The hexadecimal number has 4 binary fields where the right field is the number 1, the center field is the number 2 , the next center field is the number 4 and the left field is the number 8. you need that your 4 fields sum the final hexadecimal digit.

For example:

(F)16 = (1111)2(1)16 = (0001)2(6)16 = (0110)2

Step 1: Split your octal number  in digits and convert to binary form

         6                             7                           5               .                  6

        110                          111                         101              .                110

Step 2: Join your binary number and split in groups of 4 elements from the point (Important note: If you miss some element to complete the groups at the left of the point complete with zero's at the left, else if you miss some element to complete the groups at the right of the point complete with zero's at the right)

binary complete:      110111101.110

binary in groups of 4:

                     1                1011                      1101            .                110

Complete the groups with zero's (Remember the important note):

               0001                1011                      1101            .              1100

Step 3: Calculate the hexadecimal number

                  1                      B                         D               .               C

     

Sarah finds herself repeating the same keystrokes and mouse operations on a regular basis. What should she use to improve her efficiency?: *
a. Copy and Paste
b. Indices
c. Macros
d. Redo

Answers

Answer: c)Macro

Explanation: Macro function is the computing operation that is collection or group of commands and made into a single instruction.This instruction is created so that the repeated tasks can be  carried out automatically.This function helps in saving the processing time.

Other options are incorrect because copy and paste function copies the selected instruction or text and pastes it to the desired location, indices denotes the index having data collection and redo command is for undoing the function and restoring it.Thus, the correct option is option(c).

Analysts use _____ to show the objects that participate in a use case and the messages that pass between the objects over time for one particular use case. (Points : 6) structural models
sequence diagrams
communication diagrams
class diagrams

Answers

Answer:Sequence diagrams

Explanation: Sequence diagram is the diagram that displays about the connection of the objects in a sequential manner. The sequence depicted through the vertical lines in parallel form was about the object function and the horizontal line showed interaction between them for the exchange of the information.

Other options are incorrect because structural models have the infrastructure in particular format, communication diagrams depicts the exchange of information through communication and class diagram is the diagram that displays the system's class.Thus the correct option is sequence diagram.

A method is a set of instructions that manipulate the data within an object (Points : 2) True
False

Answers

Answer: True

Explanation:

 A method is the collection and set of the instruction that basically used to manipulate the data within the object. It basically perform specific task and we can easily reuse the given code various times without retyping the program again.

When we use methods it save lots of time as we can easily reuse the given code. Object function is known as methods where we can manipulate the data according to the needs of the programmer, when the data are define in the particular object.

. The _____________ is the responsibility of the CISO, and is designed to reduce incidence of accidental security breaches by organization members.

Answers

Answer: SETA program

Explanation:

 The SETA program is basically stand for the security, education, training and awareness. It is basically used to reduce the accidental security which is break by the organization member such as employees, vendors and contractors.

The SETA program provided various benefits to the organization as it improve the behavior of the employees.It basically enhance the training and education program by focus and concentrate on the information security.

It can also inform he member of the organization about the report of violating many policies.

In UML behavioral modeling, a message is _____. (Points : 6) a named location in memory where information is deposited and retrieved
a data structure to hold information
a function or procedure call from one object to another object
a relationship between two objects

Answers

Answer: a function or procedure call from one object to another object

Explanation: UML(Unified Modeling language) behavioral modeling is the depiction of the relation of the elements in a dynamic manner and the dependency on time .Message in the UML behavioral modeling is a functional call taking place from one element to another.

The interaction is the model is seen through the flow of messages.Other options are incorrect because message is not information holding data structure, does not display the relation between object rather presents the flow and is not a memory location .

What are the arguments for writing efficient programs even though hardware is relatively inexpensive?

Answers

Answer: Even though the hardware is inexpensive the writing of program is not efficient through this method as proper development of program is necessary for the clear execution due to factors like:-

The facility of writing program even the cost of hardware is less but it is not a free facility.It also has a slower processing for the execution of the programThe construction of the efficient program is necessary for the compilation and execution of it rather than poorly constructed program is worthless and inefficient in working.

What is the software that provides the mechanisms to access a database called?

Answers

Answer:

Database Management Software.

Explanation:

The software that provides  the mechanism to access the database is called  Database Management Software.There are two types databases  SQL  and  No SQL.There are various types of  database Management Software  present online for ex:-My SQL,Microsoft SQL server,Microsoft Access,Postgres SQL,Mongo DB etc.

Convert binary number 11101111.10111 to decimal

Answers

Answer:

[tex]N_{10}=239.71875[/tex]

Explanation:

In order to obtain the decimal number we have to use the next formula:

[tex]N_(10)=d*2^{(i)}\\where:\\N=real number\\d=digit\\i=position[/tex]

(The position to the right of the decimal point we will take it as negative)

Using the formula we have:

[tex]N_{10}=(1*2^7+1*2^6+1*2^5+0*2^4+1*2^3+1*2^2+1*2^1+1*2^0+1*2^{-1}+0*2^{-2}+1*2^{-3}+1*2^{-4}+1*2^{-5})[/tex]

[tex]N_{10}=239.71875[/tex]

A car holds 16 gallons of gasoline and can travel 312 miles before refueling. Write aC++ program that calculates the number of miles per gallon the car gets. Display the result on the screen.

Answers

Answer:

// here is code in C++.

#include <bits/stdc++.h>

using namespace std;

// main function

int main()

{

   // variables Declaration and initialization

   int no_gallon=16;

   int dis=312;

   // find the miles per gallon

   double mile_gallon=dis/double(no_gallon);

   // print the results

   cout<<"number of gallons: "<<no_gallon<<endl;

   cout<<"distance travel before refueling: "<<dis<<endl;

   cout<<"miles per gallon is: "<<mile_gallon<<endl;

return 0;

}

Explanation:

Declare and initialize the number of gallon and distance travel without refueling. Calculate the miles per gallon by dividing distance with number of gallons.Then print the results.

Output:

number of gallons: 16

distance travel before refueling: 312

miles per gallon is: 19.5

Final answer:

The C++ program calculates miles per gallon by dividing the total distance traveled by the number of gallons of gasoline, then displays the result.

Explanation:

The question involves writing a C++ program that calculates the fuel economy of a car, specifically the number of miles per gallon (MPG) the car gets. Below is a sample C++ program that performs this calculation:

#include <iostream>

int main() {
   // Declare the variables for gallons of gasoline and total miles
   double gallons = 16.0;
   double miles = 312.0;
   // Calculate miles per gallon
   double mpg = miles / gallons;
   // Display the result
   std::cout << "The car gets " << mpg << " miles per gallon." << std::endl;
   return 0;
}
This program defines two variables for the number of gallons of gasoline and the total miles traveled before refueling. It then calculates the MPG by dividing the total miles by the number of gallons and outputs the result to the screen.

Briefly tell me what a PUT request does

Answers

Answer:

 The PUT request is the method by which it basically stored the entity that is provided the URI request to the server. The PUT request method basically demands that the encased substance be put away under the provided Request-URI.

As a rule the HTTP PUT strategy replaces the asset at the present URL with the asset contained inside the solicitation. PUT is utilized to both make and update the condition of an asset on the server.

The HTTP PUT strategy makes another asset or replaces a portrayal of the objective asset with the other request payload.

Other Questions
Heat transfer through solid composites depend on (Lower composite heat conductivity higher composite heat conductivity Lower composite heat capacity higher composite heat capacity Why should a toolpath be verified on the screen of a CAM system prior to creating the program code? Ryan transformed figure S into similar figure S.What scale factor did he use for the dilation?A.1/3B.1/2C.2D.3 Identify and describe the portals through which pathogens invade the human body. After his stroke, Brian slowly recovered function in his right arm. The property of the brain that supports learning and recovery of functions lost after brain trauma and that reflects the interactive nature of biological and environmental influences is called _________________. a) gray matter. b) plasticity. c) an action potential. d) Neurotransmission. If 7x+4=37, what is the value of 14x-1 If Tim's top priority is to become famous, his most likely long-term goal is tobecome a(n). A molecule of hydrogen moves at a speed of 115 cm/s. How long will it take to travel the length of a football field (100 yd long)? Which are acceptable reasons for studying history?Select all correct answers.A It shows us what it means to be human.B It promotes a single culture for the world. C It shows that our civilization is better than others.D It makes us better thinkers The legislators of New State institute a law that mothers of children in elementary school, but not fathers, are entitled to seven days off each year in order to attend school events. A lawsuit is brought by a group of fathers challenging the law on equal protection grounds. Which level of scrutiny will be applied to the law?a. intermediate scrutinyb. rational basis scrutinyc. severe scrutinyd. strict scrutinye. legal scrutiny Gabby and Sydney bought some pens and penciled. Gabby bought 4 pens and 5 pencils for $6.71. Sydney bought 5 pens and 3 pencils for $7.12. Find the cost of each. What lands did Spain lose to the British for fighting with the French during the French and Indian War?A)all lands West of the Mississippi River, including FloridaB)all lands East of the Mississippi River, including FloridaC)all lands West of the Mississippi River, including LouisianaD)all lands East of the Mississippi River, including Louisiana when does the tricuspid valve open? What is the value of a stock that you believe will sell in three years for $67 a share and will pay $3.00 in dividends next year, and grow dividends at 4% in year 2, and 5% in year 3 assuming your required return is 15%? Discuss the differences between light and dark reactions of photosynthesis. Simon is factoring the polynomial. x24x12 (x6)(x+______) What value should Simon write on the line? 6 2 2 6 The following data apply to the provision of psychological testing services: Sales price per unit (1 unit = 1 test plus feedback to client) $ 320 Fixed costs (per month): Selling and administration 22,000 Production overhead (e.g., rent of testing facilities) 15,000 Variable costs (per test): Labor for oversight and feedback 160 Outsourced test analysis 21 Materials used in testing 6 Production overhead 8 Selling and administration (e.g., scheduling and billing) 10 Number of tests per month 2,000 tests Required: Calculate the amount for each of the following (one unit = one test) if the number of tests is 2,000 per month. Also calculate if the number of tests decreases to 1,250 per month. (Do not round intermediate calculations. Round your final answers to the nearest whole dollar.) The pH of blood depends on the [HCO3-/H2CO3] balance. ([H2CO3] is equal to the amount of dissolved CO2). Calculate the bicarbonate (HCO3-) : carbon dioxide ratio for a normal blood pH of 7.40. (the pKa1 of carbonic acid is 6.10 at 37oC, body temperature). (A) 20 : 1 (B) 1.3 :1 (C) 2 : 1 (D) 1 : 20 (E) 1 : 0.01 Tobiass closet has 1 red hat and 1 black hat; 1 white shirt, 1 black shirt, and 1 black-and-white-striped shirt; and 1 pair of black pants and 1 pair of blue pants. He is picking an outfit by reaching into his closet and randomly choosing a hat, a shirt, and a pair of pants. What is the probability he picks an outfit containing only black and/or white colors? Need help fast please!!!!