Differentiatebetween:

a) Firmware Computers and Virtual Computers

b) Early binding and Late Binding

c) BNF and EBNF

Answers

Answer 1

Answer:

a)Firmware Computers and Virtual Computers

Firmware Computers-A type of computer program that offers low-level device-specific hardware control.Once installed, the firmware is generally altered rarely and only by the manufacturer's updates. Firmware loss can often lead to the loss of function of a hardware device depending completely on the scenario.

Virtual Computers-The most common purpose of the software is to describe a program/piece of data to be changed, viewed or otherwise interacted by the user most often.A software or firmware upgrade allows a continuous change — generally a feature enhancement, performance enhancement, or error correction

b) Early binding and Late Binding

Early binding-The compiler matches the function call at compile time in early binding with the right function definition. It can be called as Compile-time Binding/Static Binding. The compiler defaults to the feature definition called during the moment of compilation. So, because of early binding, all the feature calls you've studied up to now.

Late binding-The compiler matches the function call at run-time with the right function definition in the event of late binding. It is also referred to as Run-time Binding.

The compiler defines the object type at run-time in late binding and then checks the function definition with the function call.

c) BNF and EBNF

BNF(Backus – Naur form)-It is used to officially describe a language's grammar, so there is no discrepancy or ambiguity about what is permitted and what is not. In reality, BNF is so unambiguous that there is a lot of mathematical theory around this kind of grammar, and you can effectively build a parser mechanically for a language with a BNF grammar.

EBNF(Extended Backus–Naur form)-It is used to convey a grammar that is context-free. EBNF is used to describe formally a formal language such as a language for computer programming. This is extension metasyntax notation of the fundamental Backus – Naur form (BNF).

Answer 2

Answer:

jfff

Explanation:


Related Questions

Do you think there are some disadvantages to "For Loop"? Or when using it is not good for its program?

Answers

Answer:

I think there are no disadvantages of for loop as far as i know.

Since for loop is entry controlled loop (i.e , the condition is checked for entering in the loop body).So when you want to execute the body first in the program for loops are not good fit for this type of conditions.You can use do while loop in these cases which is an exit controlled loop(body is executed first after the condition is checked) .

for example:-Iterating over and printing the circular linked list.

What are different types of inner classes ?

Answers

Answer:

Inner class in Java is basically a class in a class, i.e. a member of another class.

There are 4 types of inner classes in Java.

a)  Nested Inner class

b)  Method local Inner class

c)  Anonymous Inner class

d)  Static nested class

Suppose you want to write a program that will read a list of numbers from a user, place them into an array and then compute their average. How large should you make the array?

Answers

Answer:

The size of the array is dependent on the amount of memory the program can access.

Explanation:

Here according to the question the user is in need of memory space equal to the amount of numbers read from the list. So the size of the array should be equal to the total numbers read from the list. if the user reads 5 number from the list then the size of the array should be int a[5] if the numbers are integers. Wastage of memory space is not appreciated in a good piece of code.

C++ programming true or false questions

1. We have a class called animalType. Answer the following questions about clas animalType.

a. Its constructors will be named animalType. (True or False)

b. Return type of its constructors will be void. (True or False)

Answers

Answer:

a. True

b. False

Explanation:

Constructor is used to initialize the object of the class.

Rules of constructor:

1. Constructor name must same as the class name. it means, if the class name is animalType, then constructor name must be animalType.

2. Constructor does not have any return type. it means, it does not return anythings.

Therefore, part (a) is true,  Constructor name must same as the class name.

and part (b) is false, because constructor does not have any return type.

Which of the following is the new linecharacter?\r\n\l\b

Answers

Answer:

\n

Explanation:

\n is called the new line character.It is used to go to the next line or the start of the new line.\n is used in Linux while in windows uses \r\n called carriage return.But generally \n is used in most of the programming languages also.

In java, Write a while loop that prints userNum divided by 2 (integer division) until reaching 1. Follow each number by a space. Example output for userNum = 20:

Answers

Answer:

while(userNum > 1){

        userNum = userNum /2;

        System.out.print(userNum+" ");

     }

Explanation:

Probably don't need the print statement, but it doesn't cause an error.

This solution uses a while loop in Java to repeatedly divide a number by 2 and print the result until the number is less than 1. The example code and explanation illustrate the process clearly.

To solve this problem, you need to write a while loop in Java. This loop will continue dividing the given number by 2 until it reaches 1. Here's the step-by-step solution:

Example Code:

import java.util.Scanner;
public class Main {
   public static void main(String[] args) {
       Scanner scanner = new Scanner(System.in);
       int userNum = 20; // You can change this to any number.
       while (userNum >= 1) {
           System.out.print(userNum + " ");
           userNum = userNum / 2;
       }
   }
}

In this code:

We initialize userNum with a value (20 in this example).The while loop continues as long as userNum is greater than or equal to 1.In each iteration, we print userNum followed by a space and then divide it by 2 using integer division.

The output for userNum = 20 will be: 20 10 5 2 1 .

Suppose a vector of ints initially has these 8 elements:
6 7 5 9 1 3 2 4
(a) How many swaps will be performed during a selection sort of the elements?

Answers

Answer:

Using the Selection Sort algorithm there will be 5 swaps in total within the vector of ints.

Explanation:

A Selection Sort algorithm compares the first value in the vector with the rest of the values and swaps it for the lowest value. It then moves on to the next value in the vector and repeats the process until the whole vector is sorted.

Initial Vector : 6 7 5 9 1 3 2 4

1st Swap :   1 7 5 9 6 3 2 4

2nd Swap:  1 2 5 9 6 3 7 4

3rd Swap :  1 2 3 9 6 5 7 4

4rth Swap:  1 2 3 4 6 5 7 9

5th Swap:   1 2 3 4 5 6 7 9

After the 5th Swap the Vector is completely Sorted.

I hope this answered your question. If you have any more questions feel free to ask away at Brainly.

ETL & ELT are thesame.? True? False

Answers

Answer:

False.

Explanation:

ETL & ELT are NOT the same.

with open source operating systems,both the executable code and source code are available:

true or false?

Answers

Answer:v True

Explanation: Open source operating system is the system that has source code that can be modified and enhance them . It can also be shared between the public as it is available in the open form . There are many examples of the open source operating system like Linux, Ubuntu etc. which has both executable code and source code as well. so therefore the given statement is true.

When a method returns an array reference, you include ____ with the return type in the method header.

a.
( )

b.
[ ]

c.
< >

d.
{ }

Answers

Answer:

b. []

Explanation:

Arrays are represented using [] . When a method returns an array reference, the method header contains an entry of the type <data-type>[].

For example, a method test which returns a reference to integer array and takes no parameters is of the form:

int[] test();

Similarly a method list_chars which takes a String as an argument and returns an array of chars has the form:

char[] list_chars(String s);

)What is proceduralabstraction, and why is it important inComputer Science

Answers

Answer:

Procedural abstraction is a method in which all sub tasks of a whole functionality must be created separately as method and each method/ procedure must be performing a distinct functionality. For example if we want to write a program to calculate and display result of students in class and create separate methods to get students record, to calculate grades to display results is a procedural abstraction approach. Here not only the methods created have distinctive function the administrative can vary the level of abstraction as well.

It is important in computer science for the following ways:

1) Increase the level of code readiness as all separate functionality tasks will have a separate methods.

2) Prevents unauthorized of data.

When an integer is subtracted from a pointer variable, the value of the pointer variable is decremented by the integer times half the size of the memory to which the pointer is pointing.

True

False

Answers

Answer:

False

Explanation:

When you apply subtraction (arithmetic operation) on Pointer variable ,then pointer variable is decremented by the (integer*sizeofmemory).

Example

            #include<stdio.h>

           //driver function

             int main()

          {

            float *ptr=(float *)100; //initializing  ptr as pointer type

            ptr=ptr-2; //subtracting pointer by 2(integer)

           printf("New Value of ptr is %u",ptr);

            return 0;

          }

Output

New Value of ptr is 92

Explanation of Code

ptr = ptr   - 2 * (sizeof(float))

   = 100  - 2 * (4) //float size is 4 bytes

   = 100  - 8

   = 92

Which of the following is a true statement?

a. Message body in reachable by the main program.

b. Two methods can have the same header.

c. Formal and actual parameters may have the samenames.

d. Local variables are recognized by the mainprogram.

Answers

Answer: D. Local variables are recognized by the main program

Explanation: Local variables can be accessed in the function that they are defined within .If you require the variables which should be accessible by  every function in a particular program the they should be defined globally in the program . Therefore  local variables are recognized by the main program throughout.

Answer:

d. Local variables are recognized by the main program.

Explanation:

Local variables are recognized by the main program, is a true statement.

However, message body in reachable by the main program, two methods can have the same header, and formal and actual parameters may have the same names are NOT true statements.

A class diagram _____.
Answer

provides an overview of a class's data and methods

provides method implementation details

is never used by nonprogrammers because it is too technical

all of the above

Answers

Answer:

provides an overview of class's data and methods

Explanation:

Class Diagram is used in software engineering to represent:

- classes

- attributes

- methods

- relationship between classes

It provides a representation of the static layout of the application in object oriented design. It does not provide method implementation details. In fact code skeleton can be automatically generated from class diagram using appropriate UML tools.

wHAT ARE THE 5 LAYERS in the internet protocol stack andwhat are the principal responsibilities of eack of theselayers.?

Answers

Answer: The 5 different layers in the IP stack are as follows:

1. Physical Layer

2. Data Link Layer

3. Network Layer

4. Transport Layer

5. Application Layer

Explanation:

The functions of the different layers are:

The physical layer is concerned with transfer of bits  across the different nodes, The data link layer is concerned with transmission of frames with error detection and correction. The network layer is concerned with routing the packets across various nodes in the router. The transport layer deal with the implementation of protocols such as TCP and UDP. The Application layer host a numerous software applications such as  HTTP, SMTP for client server connections.

Which statement will call this module and pass 12 as the argument?

Module showValue (Integer quantity)

Answer
a) Call showValue( Integer)

b) Call showValue (12)



c) Call showValue( Integer 12)

d) Call showValue( Real)

Answers

Answer:

Call showValue (12)

Explanation:

The function is a block of the statement which performs the special task.

if you define the function, then you have to call that function.

Then, program control moves to the function and start to execute otherwise not execute the function.

the syntax for calling the function:

name(argument_1, argument_2,....);

we can put any number of arguments in the calling.

check the options one by one for finding the answer:

Call showValue( Integer): this is valid calling but it passes the variable, not the 12. this is not correct.

Call showValue( Integer 12): This is not valid calling, because it passes the data type as well which is incorrect.

Call showValue( Real): this is valid calling but it passes the variable, not the 12. this is not correct.

Call showValue (12): this valid calling and also pass the value 12.

Therefore, the correct answer is option b.

What is the

stored program concept?

Answers

Answer:

 The stored program concept is defined as, in the architecture of computer where computer acts as internal store instruction and it is important because has high flexibility and user does not required to execute the instruction again and again. It is basically works on the principle of Von neumann architecture, as in which the instruction and the data are both same logically and can be used to store in the memory.

Methods used with object instantiations are called ____ methods.

a.
accessor

b.
instance

c.
internal

d.
static

Answers

Answer:

b. instance

Explanation:

Methods used with object instantiations are the instance methods. When a class is instantiated we get a reference to the object. Invoking a method on the object , executes the corresponding instance method.

For example:

String s = new String("test");

int len = s.length();

Here length() is an instance method of String object s.

What to do: please remember to comment each line.
1 Initialize x to be zero

2 Prompt the user for the next operation (Addition or Subtraction)

3 Prompt the user for the next operand (y).

4 Perform the operation (x + y or x – y depends on the operation selected by
the user), and store back the result to x.

5 Output x in decimal.

6 Go back to step 2 until user input “q” as the next operation, then exit.

Answers

Answer:

#include <iostream>

using namespace std;

int main()

{

   //initialization

  float x=0.0;

  float y;

  char operation;

  //print the message

   cout<<"Please enter the operation (Addition or Subtraction): ";

   cin>>operation;

   //loop for enter th operand again until enter 'q'

  while(operation != 'q'){

       //print the message for operand x

      cout<<"\nPlease enter the operand x: ";

      cin>>x;

       //print the message for operand y

      cout<<"\nPlease enter the operand y: ";

      cin>>y;

   //check for condition for '+' and if true then add the operands

      if(operation == '+'){

          x=x+y;

      }else if(operation == '-'){  //if user enter '-' then subtract the operands

          x=x-y;

      }

      //print the output

      cout<<"\nThe output is: "<<x<<endl;

      cout<<"\nPlease enter the operation (Addition or Subtraction): ";

      cin>>operation;

  }

  return 0;

}

Explanation:

Create the main function and define the variable x equals zero and declare the variables y and operation.

print the message for the user to enter the operation ('+' or '-') by using the instruction cout.

Store the value in the variable by using the instruction cin.

Then, take the loop to repeat the statement again and again until the condition is true.

print the message inside the loop for asking about the operands from the user.

then, use condition statement for checking the operation and if condition match, then execute the particular operation.

The above operation executes until the user enters not enter the character 'q'.

when the user enters the 'q', the loop terminates and print the output.

__________ refers to the idea that eachemployee should report

to only one manager.

a. Span of control

b. Unity of command principle

c. Emergent leadership

d. Bureaucracy

Answers

Answer:

The correct answer is B. Unity of command principle refers to the idea that each employee should report to only one manager.

Explanation:

The Unity of Command Principle is one of the 14 administration principles imposed by Henry Fayol that determines that none of the employees of an organization should receive orders from more than one superior.

That is to say, the principle of the unity of command establishes that no employee should have more than one superior in order to avoid confusing situations and disorders that affect the productivity of the organization in question.

Reference variables allow arguments to be passed by ____________.

Answers

Answer:

Reference

Explanation:

The Reference type variable is such type of variable in C# that holds the reference of memory address instead of value. Examples for reference type are classes, interfaces, delegates and arrays.

We can pass parameters to the method by reference using ref keyword

It’s mandatory to initialize the variable value before we pass it as an argument to the method in c#

For example,

int x = 10;  // Variable need to be initialized

Add(ref x); // method call

If you pass parameters by reference in method definition, any changes made to it affect the other variable in method call.

Here's a sample program:

using System;

namespace ConsoleApplication

{

   public class Test

   {

       public static void Main()

       {

           int i = 10;

           Console.WriteLine("i=" + i);

           Add(ref i);

           Console.WriteLine("i=" + i);

           Console.ReadLine();

       }

       public static void Add( ref int j)

       {

           j = j + 10;

           Console.WriteLine("j="+j);

       }

   }

}

Output:

i=10

j=20

i=20

The simplest statement you can use to make a decision is the ____ statement.

a.
Boolean

b.
true false

c.
if

d.
this

Answers

A is the answer to the question

The simplest statement you can use to make a decision is the if statement. Thus, option C is correct.

What is a statement?

A statement within a programming language is just a syntactic construct of an arbitrary programming language that also expresses a course of action. A series of one or more statements make up a program built in this language. There could be internal parts to a proposition.

The simplest illustration of a decision framework in Java seems to be the if statement. A conceptual test that can result in a positive or negative outcome is expressed in an if statement.

The if statements inside the if the branch were carried out if the test's outcome is true. In this case, the statement can either be true or the statement can either be false depending upon the condition.

Therefore, option C is the correct option.

Learn more about statement, here:

https://brainly.com/question/20837448

#SPJ6

- What is the final value of the variable myPar given the following code fragment? int counter = 5; int myPar = 1; do { myPar = myPar + 2; counter = counter + 1; } while(counter <= 1);

Answers

Answer:

3

Explanation:

do-while is the loop statement used for executing the part of the code again and again until the condition not false.

when the condition is false, the program terminates the loop statement and starts executing the next of the do-while statement.

It has the special property, it executes the statement first and then checks the condition.

So, it executes the statement once if we provide the condition false.

Another side, the other loop statement like for loop, while loop they check the condition first and then start executing the statement if condition true.

In the question, the counter is 5 and myPar is 1

then the program executes the statement first.

so, myPar = 1+2=3

myPar assigns through the value 3. then counter increase by one.

the counter value becomes 2.

then check the condition 2 <= 1, condition false and program terminate.

Therefore, the answer is 3.

Write a program that gets a list of integers from input, and outputs the integers in ascending order (lowest to highest). The first integer indicates how many numbers are in the list. Assume that the list will always contain less than 20 integers. Ex: If the input is:

Answers

Answer:

integers=[]

while True:

      number=int(input())

      if number<0:

       break

      integers.append(number)  

print("",min(integers))

print("",max(integers))

Explanation:

The _________ is the part of a function definition that shows the function name, return

type, and parameter list.

Answers

Answer:

The function prototype is the part of a function definition that shows the function name, return type, and parameter list.

Explanation:-

In general we write a function definition as:

return_type function_name(parameter list)   //this is the prototype

{

    //function body

}

Final answer:

The term that completes the student's sentence is 'function header' or 'prototype', which includes the function name, return type, and parameters. It is essential for understanding how to use the function and what to expect from it.

Explanation:

The blank in the student's question should be filled with the term function header or prototype. This is the part of a function definition that shows the function name, return type, and parameter list. The function header specifies what the function is called, what type of data it returns, and what arguments it takes. The structure of the function header can vary between programming languages, but generally it includes the function name, followed by parentheses that contain the parameters (or arguments), and prefixed by the return type.

For example, in the function definition of int main(), 'int' is the return type indicating that the function will return an integer value, 'main' is the function name, and the empty parentheses indicate that this function takes no arguments. In another example, a function named 'f' might take three arguments - a, b, and c - and work with them internally to produce a result.

Understanding the function header is crucial for programming because it allows you to know how to properly call the function and what kind of data to expect back from it. Creating clear and concise function headers makes programs easier to read, understand, and debug.

The minimum spanning tree of an undirected graph G exists if and only if G is connected. True or False?

Answers

Answer: True

Explanation:

The definition of minimum spanning tree(MST) says that the graph must be connected and undirected to be considered for MST. It has (V-1) edges where V is the number of vertices. The minimum spanning tree is implemented using Kruskal's algorithm whereby it starts by considering the minimum weighted edge and covers all the edges upto (V-1) edges. So for MST it has to be connected

Why we need each section of prologprogram?

Answers

Answer:

Prolog program are used in the artificial intelligence and the web development in a systematic manner process. As, it is also sometimes known as declarative language which basically consist of some facts and list. Prolog program are divided into the sections that are:

Domain sectionsClauses sectionsPredicates sectionsGoal sections

We need each section of the prolog program because all the sections introduced the systematic program and performed there particular functions so by using all these processing steps an efficient function are formed.

What happens when an exception is thrown, but the try statement does not have a catch clause that is capable of catching it?

Answers

Answer:

A checked exception indicates something beyond your control has gone wrong. ... If an exception does not have a matching catch clause, the current method terminates and throws the exception to the next higher level. If there is no matching catch clause at any higher level, then the program terminates with an error.

As it is a good practice that C# broughtback the concept of GOTO statement and Pointer? If your answer isyes then how C# control the worst effect of those features. Pleasebe brief?

Answers

Answer:

No for GOTO

Yes for Pointer

Explanation:

GOTO statement

This declaration is used to pass control to the program's marked declaration. The label is the valid identifier and is positioned just before the declaration from which the control is transmitted.

It becomes hard to trace a program's control flow, making it hard to comprehend the program logic. Any program in C language can be written without using a GOTO statement.

Pointers

A C # pointer is nothing but a variable holding another type of memory address. However, in C # pointer only the memory address of the value types and arrays can be declared.

C # supports pointers to a restricted extent. Unlike reference kinds, the default trash collection system does not track pointer kinds. Pointers are not allowed to point  to a type of structure containing a type of reference or a type of reference.

During the garbage collection process, the C #garbage collector can move objects in memory as they wish. The C #offers a unique fixed keyword for telling Garbage Collector not to move an item. This implies that the place of the value kinds referred to is fixed in memory. This is called pinning in C #.

The GOTO statement and pointers in C# can simplify some coding tasks but can also make the code harder to read and C# controls these downsides by offering structured programming constructs and by restricting pointer usage to unsafe contexts.

The introduction of the GOTO statement and pointers in C# can be seen both positively and negatively. While the GOTO statement allows for easier navigation and breaking out of control structures, it often results in code that is hard to read and maintain. To mitigate such issues, C# provides structured programming constructs like loops, conditional statements, and methods to manage control flow more effectively.

C# also manages the risks of pointers by requiring explicit permissions and special contexts for their usage, thus limiting their misuse.

Control Mechanisms in C#

Instead of GOTO, use loops (for, while) and conditionals (if, switch) for better readability.Pointers are only allowed in unsafe contexts to highlight potential risks.

. What is an RFC?How it's produced?

Answers

Answer: Request for Comments(RFC)is an official document containing methods, behaviors, research, internet specifications, protocols in systems connected to the internet.

RFC are produced by computer scientist , experts in the field of networking, protocols who author them and then send for approval from Internet Engineering Task Force(IETF). After there approval it is then assigned a serial number after which it cannot be modified.

Explanation:

RFC is an official document to propose and bring out new changes in the field of engineering and communication.

Once RFC has been produces it can also bring out modifications in the form of amendments.

Other Questions
Which of the following was the most likely reason President Truman decided to use atomic bombs against Japan?A. He feared the loss of life that would be involved in a conventional invasion of JapanB. He had an agreement with the Soviet Union to use advanced weapons to end the war quicklyC. The war was going poorly in Europe, so he needed to end the Pacific war quicklyD. He wanted to punish the Japanese people for the surprise attack on Pearl HarborA) is the correct answer I just passed a test with this question The graph of f(x) = 0.6x is replaced by the graph of g(x) = 0.6x + k. If g(x) is obtained by shifting f(x) up by 6 units, then what is the value of k?A.=-6B.=-1/6C.=1/6D.=6 how long have peolpe studied chemisty This is a form of load balancing where larger workloads are issued to IT resources with higher processing capacitiesa. Pay-Per-Use Monitorb. Asymmetric Distributionc. SLA Monitord. Workload Prioritization If a bike tire has 16 spokes spaced evenly apart, name its angles of rotation.Can you please solve and explain it A right pyramid with a square base has a base edge length of 24 feet and slant height of 20 feet. The height of the pyramid is 'blank' feet. The probability that a continuous random variable takes any specific valuea. is equal to zerob. is at least 0.5c. depends on the probability density functiond. is very close to 1.0 What is the value of x?= 32 = 36 = 37x= 40 PLEASE HELP ME ITS THE LAST QUESTION ONLY HAVE 10 MIN LEFT!!!!!!Tasha used the pattern in the table to find the value of 4 to the power of -4 (refer to the pictures)In which step did Tasha make the first error?Step 1Step 2Step 3Step 4 GEOMETRY - NEED HELP - WILL MARK BRAINLIESTQUESTION 1An observer is 120 feet from the base of a television tower, which is 150 feet tall. Find the angle of depression at the top of the tower. Round to the nearest degree.QUESTION 2Answer for the image posted below.QUESTION 3What is the opposite of sine called, and what is its triangle ratio? Use picture attached:Stardust the unicorn cover a distance of 50 miles on his first trip to the forest. On a later trip he traveled 300 miles while going three times as fast. Is the new time compared with the old time was:? A. The same timeB. A third as muchC. Three times as muchD. Twice as much Read this excerpt from Leo Tolstoy's The Death of Ivan Ilyich:Her attitude towards him and his diseases is still the same. Just as the doctor had adopted a certain relation to his patient which he could not abandon, so had she formed one towards himthat he was not doing something he ought to do and was himself to blame, and that she reproached him lovingly for thisand she could not now change that attitude."You see he doesn't listen to me and doesn't take his medicine at the proper time. And above all he lies in a position that is no doubt bad for himwith his legs up."She described how he made Gerasim hold his legs up.The doctor smiled with a contemptuous affability that said: "What's to be done? These sick people do have foolish fancies of that kind, but we must forgive them. . . ."They all rose, said good-night, and went away.When they had gone it seemed to Ivan Ilyich that he felt better; the falsity had gone with them. But the pain remainedthat same pain and that same fear that made everything monotonously alike, nothing harder and nothing easier. Everything was worse.Again minute followed minute and hour followed hour. Everything remained the same and there was no cessation. And the inevitable end of it all became more and more terrible.Based on the excerpt, how is Praskovya Fedorovna a character foil to Ivan Ilyich? Find the vertex form of y=(x+2)(x-3) The Romans are remembered most for their achievements in: Question 28 options: a) agriculture and literature. b) government and engineering. c) mining and metal production. d) innovative science and philosophy. Why did indians call for independence after world war 1? Why does a surplus exist under a binding price floor? It encourages sellers to produce less of the product. It encourages buyers to purchase more of the product. It makes the price so high that the quantity supplied exceeds the quantity demanded in the legal market. It makes the price so low that the quantity demanded exceeds the quantity supplied on the legal market. It discourages sellers from increasing the quality of the product they sell, which, in turn, increases the quantity demanded. Last year Builtrite had retained earnings of $140,000. This year, Builtrite had true net profits after taxes of $65,000 which includes common stock dividends received of $10,000, and also paid a preferred dividend of $35,000. What is Builtrites new level of retained earnings? A) $180,000 B) $190,000 C) $200,000 D) $170,000 The average human heart Beats 1.15 times 10 to the power of 5 per day. There are 3.65 times 10 to the power of 2 days in one year. How many times does your heart beat. Write your answer in scientific notation, and round to one decimal place Identified the complete subject and the complete predicate in the following sentence: Flowers and candy are traditional gifts for Valentines Day Subjects for the next presidential election poll are contacted using telephone numbers in which the last four digits are randomly selected (with replacement). Find the probability that for one such phone number, the last four digits include at least one 0.