Write a Java application that allows a user to enter student data that consists of a Student number, First name, Surname, and average assignment mark. Depending on whether the students average assignment mark is at least 40, output each record either to a file of students who passed (call it pass.txt) or students qualifying for supplementary (call it supp.txt).​

Answers

Answer 1

Answer:

Following are the given code to the given question:

import java.io.*;//import package

import java.util.*;//import package

public class Main //defining a class Main

{

public static void main(String[] args) throws IOException//defining main method

{

Scanner obx = new Scanner(System.in);//creating Scanner class object

System.out.println("Enter Student Number: ");//print message

long studentNumber = obx.nextLong();//defining a studentNumber that input value

obx.nextLine();//use  for next line

System.out.println("Enter Your First Name:");//print message

String name = obx.nextLine();//input value

System.out.println("Enter Your Surname:");//print message

String surName = obx.nextLine();//input value

System.out.println("Enter Your Average Assisgnment Marks:");//print message

int avgAssignMarks = obx.nextInt();//input value

if(avgAssignMarks>=50)//use if to check Average value greater than equal to 50  

{

FileWriter fw = new FileWriter("pass.txt", true);//creating FileWriter object

PrintWriter out = new PrintWriter(fw);//creating PrintWriter object

out.println("Student Number: "+studentNumber);//print message with value

out.println("Student Name: "+name);//print message with value

out.println("Student Surname: "+surName);//print message with value

out.println("Student Average Assignmet Marks: "+avgAssignMarks);//print message with value

out.println("=================================================");

out.close();

}

else//else block  

{

FileWriter fw = new FileWriter("supp.txt", true);//creating FileWriter object

PrintWriter out = new PrintWriter(fw);//creating PrintWriter object

out.println("Student Number: "+studentNumber);//print message with value

out.println("Student Name: "+name);//print message with value

out.println("Student Surname: "+surName);//print message with value

out.println("Student Average Assignmet Marks: "+avgAssignMarks);//print message with value

out.println("=================================================");

out.close();

}

}

}

Output:

Please find the attached file.

Explanation:

In this code, a class "Main" is declared inside the class main method is declared inside the main method a scanner class, FileWriter, and PrintWriter object is creating that defines the string and long variable which is used to input value from the user-end, and store the value into the pass.txt file.


Related Questions

Modify the CountByFives application so that the user enters the value to count by. Start each new line after 10 values have been displayed.
public class CountByAnything
{
// Modify the code below
public static void main (String args[])
{
final int START = 5;
final int STOP = 500;
final int NUMBER_PER_LINE = 50;
for(int i = START; i <= STOP; i += START)
{
System.out.print(i + " ");
if(i % NUMBER_PER_LINE == 0)
System.out.println();
}
}
}

Answers

Answer:

The modified program is as follows:

import java.util.*;

public class CountByAnything{  

public static void main (String args[]){

   Scanner input = new Scanner(System.in);

final int START = 5;

final int STOP = 500;

int countBy; int count = 0;

System.out.print("Count By: ");

countBy = input.nextInt();

final int NUMBER_PER_LINE = 10;

for(int i = START; i <= STOP; i += countBy){

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

count++;

if(count == NUMBER_PER_LINE){

System.out.println();

count = 0;} } } }

Explanation:

To solve this, we introduce two variables

(1) countBy --> This gets the difference between each value (instead of constant 5, as it is in the program)

(2) count --> This counts the numbers displayed on each line

The explanation is as follows:

final int START = 5;

final int STOP = 500;

This declares countBy and count. count is also initialized to 0

int countBy; int count = 0;

This prompts the user for countBy

System.out.print("Count By: ");

This gets value for countBy

countBy = input.nextInt();

final int NUMBER_PER_LINE = 10;

This iterates through START to STOP with an increment of countBy in between two consecutive values

for(int i = START; i <= STOP; i += countBy){

This prints each number

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

This counts the numbers on each line

count++;

If the count is 10

if(count == NUMBER_PER_LINE){

This prints a new line

System.out.println();

And then set count to 0

count = 0;}

An analyst created a map and shared it with the organization. The map references two layers: a feature layer that is shared to the Marketing group and a tiled layer that is shared publicly. Who can open the feature layer

Answers

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

A feature layer is a collection of related geographic features, such as highways, cities, buildings, plots, and earthquake epicenters. Features may be polygons, lines, or points (areas).

What is feature layer?

The best way to visualize data over basemaps is with feature layers. For feature layers, you can modify the style, transparency, visible range, refresh interval, and label settings, which affect how the layer appears on the map.

You may view, edit, examine, and run queries against features and their properties using a feature layer.

Each kind of feature layer fills a particular purpose and, as a result, functions significantly differently. See Feature layer functionality for a comparison of the functionality offered by each type of feature layer.

To learn more about feature layer, refer to the link:

https://brainly.com/question/29221148

#SPJ5

You are configuring NIC teaming on a server with two network adapters. You chose Switch Independent Mode. You now must choose between the two modes determining if one adapter is left offline or both adapters are functional. You require a mode for the highest throughput. What mode do you choose?

Answers

Answer:

The appropriate answer is "Active/Active mode".

Explanation:

Now just after the customers or clients respond to the traditional standards, the board is comprised the information rapport with the cloud service, which would be considered as Active mode.The car glides primarily somewhere at a specified constantly controlled rate of the conductor. Currently entering the grounding connection boosts the flow of electrons further into the receiver as well as the transmitter.

Thus the above is the correct solution.

Discuss five processes for analyzing a qualitative study

Answers

1. Prepare and organize your data.

Print out your transcripts, gather your notes, documents, or other materials. Mark the source, any demographics you may have collected, or any other information that will help you analyze your data.

2. Review and explore the data.

This will require you to read your data, probably several times, to get a sense of what it contains. You may want to keep notes about your thoughts, ideas, or any questions you have.

3. Create initial codes.

Use highlighters, notes in the margins, sticky pads, concept maps, or anything else that helps you to connect with your data. See the attached document that demonstrates how one might highlight key words and phrases as well as make notes in the margins to categorize the data:

4. Review those codes and revise or combine into themes.

Identify recurring themes, language, opinions, and beliefs.

5. Present themes in a cohesive manner.

Consider your audience, the purpose of the study, and what content should be included to best tell the story of your data.

Hope this helped you!!!

Answer:

Prepare and organize your data. Print out your transcripts, gather your notes, documents, or other materials.

Review and explore the data.

Create initial codes.

Review those codes and revise or combine into themes.

Present themes in a cohesive manner.

What term refers the built-in redundancy of an application's components and the ability of the application to remain operational even if some of its components fail

Answers

Answer:

Fault tolerance.

Explanation:

A software can be defined as a set of executable instructions (codes) or collection of data that is used typically to instruct a computer on how to perform a specific task and solve a particular problem.

Simply stated, it's a computer program or application that comprises of sets of code for performing specific tasks on the system.

Fault tolerance is an ability of the component of a software application or network to recover after any type of failure. Thus, it is the redundancy of an application's components built-in by default and the ability of this software application to remain functional or operational even if some of its components fail or it encounter some code blocks.

Basically, fault tolerance makes it possible for a software application or program to continue with its normal operations or functions regardless of the presence of hardware or system component failure.

Hence, it is an important requirement for any software application that should be incorporated by software developers during the coding stage of the software development life cycle (SDLC).

Write a Prolog predicate makeset(L1, L2) that takes list L1 of integers and removes the repeating elements. The result is returned in list L2. For example, makeset([1,3,4,1,3,9],Set). would return [1,3,4,9].

Answers

Answer and Explanation:

Using Javascript:

We could just use ES6 syntax and quickly get our result with no long coding. ECMA script 2015, the sixth version of javascript programming language has an array method that returns the unique values of an array in a new array.

var allValues = [ 1,3,4,1,3,9 ];

let uniqueValues = [...new Set(allValues)];

console.log(uniqueValues);

This will output only the unique values 1,3,4,9

With the GIS moving into the cloud, developers of enterprise applications based on SAP, Microsoft Office, SharePoint, MicroStrategy, IBM Cognos, and Microsoft Dynamics CRM are not using it to create a wide range of mobile applications.
a. True
b. False

Answers

Answer:

):

Explanation:

Calculate the total capacity of a disk with 2 platters, 10,000 tracks, an average of
400 sectors per track, and 512 bytes per sector?

Answers

Answer:

[tex]Capacity = 2.048GB[/tex]

Explanation:

Given

[tex]Tracks = 10000[/tex]

[tex]Sectors/Track = 400[/tex]

[tex]Bytes/Sector = 512[/tex]

[tex]Platter =2[/tex]

Required

The capacity

First, calculate the number of Byte/Tract

[tex]Byte/Track = Sectors/Track * Bytes/sector[/tex]

[tex]Byte/Track = 400 * 512[/tex]

[tex]Byte/Track= 204800[/tex]

Calculate the number of capacity

[tex]Capacity = Byte/Track * Track[/tex]

[tex]Capacity= 204800 * 10000[/tex]

[tex]Capacity= 2048000000[/tex]  --- bytes

Convert to gigabyte

[tex]Capacity = 2.048GB[/tex]

Notice that the number of platters is not considered because 10000 represents the number of tracks in both platters

Number are stored and transmitted inside a computer in the form of​

Answers

Number are stored and transmitted inside a computer in the form of ASCII code

What is the primary difference between BMPs, JPEGs, and GIFs?

Answers

In simple words,
JPEGs- Images
GIFs- animated images used for messaging

In the properly way to explain,
BMPs- The BMP file format, also known as bitmap image file, device independent bitmap (DIB) file format and bitmap, is a raster graphics image file format used to store bitmap digital images, independently of the display device (such as a graphics adapter), especially on Microsoft Windows and OS/2 operating systems.

Answer:

BMPs are not compressed; JPEGs and GIFs are compressedExplanation:

A TextLineReader is an object that can read a text file one line at a time, parsing each line and turning it into an object of some type. The reason we've implemented it as a class template is so that different TextLineReaders can transform their file into different types of objects; for example, a TextLineReader will return an int from every line, while a TextLineReader will return a Student instead. Because TextLineReader itself can't know how to transform each line from the file into the corresponding result type, a line parser function is provided, which does that transformation (i.e., takes each line's text and returns the appropriate kind of object, or throws an exception if that transformation fails because the format of the line is incorrect).Write the implementation of the TextLineReader class template. You may not change any of the public declarations that were provided, but you can add anything you'd like — including public or private member functions, private member variables, and so on — but you'll need to meet all of the following design requirements.

Answers

no one is going to answer

spreadsheet feature that can be used to arrange data from highest to lowest based on average

Answers

Answer:

RANK.AVG

Explanation:

Required

Arrange data in descending order based on average

The feature to do this is to use the RANK.AVG() function.

By default, the function will return the ranks of the selected data in descending order (i.e. from highest to lowest); though, the sort order can be changed to ascending order.

The syntax is:

=RANK.AVG (number, ref, [order])

Where

number [tex]\to[/tex] The number to use as rank

ref [tex]\to[/tex] The cell range

order [tex]\to[/tex] 0 represents descending order while 1 represents ascending order

describes the use of a replicated fractional factorial to investigate the effect of five factors on the free height of leaf springs used in an automotive application. Write out the alias structure for this design. What is the resolution of this design

Answers

Answer:

the replace of the circumference

Explanation:

When creating a multi-dimensional array dynamically in C/C++ the Memory Manager will go to great pains to make sure the array is completely contiguous with each row followed immediately by another row in the array. The goal is to keep all the data together in memory rather than "wherever it fits." A. True B. False

Answers

Answer:

Here the statement is false.  

Explanation:

In C/C++, we can define multidimensional arrays in simple words as an array of arrays. Data in multidimensional arrays are stored in tabular form (in row-major order).  

General form of declaring N-dimensional arrays:  

data_type  array_name[size1][size2]....[sizeN];  

data_type: Type of data to be stored in the array.  

          Here data_type is valid C/C++ data type

array_name: Name of the array

size1, size2,... ,sizeN: Sizes of the dimensions.

Foe example:

Two dimensional array:

int two_d[10][20];  

Three dimensional array:

int three_d[10][20][30];

QUESTION 2
1 poin
A document contains a list of items that appear in no particular order. Which of the following is the best way to format the list?

Answers

Group of answer choices.

A. Apply numbering to the list.

B. Apply bullets to the list.

C. Apply multilevel numbering to the list.

D. Manually enter a ">" character at the beginning of each item in the list.

Answer:

B. Apply bullets to the list.

Explanation:

Formatting is a feature found in a lot of word processing software applications such as Microsoft Word, Notepad, etc., which is designed to avail end users the ability to apply specific formatting options such as cut, bold, italics, underline, list, etc., to texts based on certain criteria defined by an end user.

Microsoft Word refers to a word processing software application or program developed by Microsoft Inc. to enable its users type, format and save text-based documents.

In Microsoft Word, a list can be formatted using a numbered or bulleted arrangement style. A numbered style (1, 2, 3, 4, etc) is typically used for an ordered list while a bullet is designed to be used for an unordered list.

Hence, the best way to format a document containing a list of items that appear in no particular order is to apply bullets to the list.

For example, a bulleted list of my favorite subjects arranged in no particular order would appear as this;

English languageMathematicsGeographyBiologyChemistryPhysicsComputer technology

The C++ standard library provides code that’s organized into a. folders b. namespaces c. sublibraries d. none of the above

Answers

Answer:

Namespaces ( B )

Explanation:

The codes in the C++ standard library are organized into folders Known as  namespaces .

namespaces are general used to organize various codes into logical groups to avoid name collisions that may occur when there is the presence of multiple libraries in a code base.

) Define a goal for software product quality and an associated metric for that attribute. (b) Explain how you could show that the goal is validatable. (c) Explain how you could show that the goal is verifiable.

Answers

Answer:

Following are the response to the given point:

Explanation:

For point A:

The objective for software development is indeed the testing process to ensure that minimum test of the highest quality product. For some of these goals, QA as well as the evaluation procedure are accountable.

For point B:

Testing experts and QA assessors verify the goal.

For point C:

Testing processes can assess the situation. Whenever the process operates effectively and then all the testing processes have passed correctly and all the development standards were complied with, so we can conclude that the objective was verified.

The range of a finite nonempty set of $n$ real numbers $S$ is defined as the difference between the largest and smallest elements of $S$. For each representation of $S$ given below, describe an algorithm in pseudo code to compute the range. Indicate the time efficiency classes of these algorithms using Big-$O$.

Answers

Answer: Hello your question is poorly written attached below is the well written question

answer:

a) Determine ( compute ) the difference between the max and minimum value. determine the Min and max values using 1.5n comparisons

  time efficiency = θ( n )

b) A(n-1) - A(0)

  time efficiency = θ( 1 )

Explanation:

a) An unsorted array

To find the maximum and minimum values scan the array of elements , then determine ( compute ) the difference between the max and minimum value. to determine the range. Alternatively determine the Min and max values using 1.5n comparisons

Algorithm's time efficiency = θ( n )

b) A sorted array

To determine the range, we will determine the difference between the first and last element i.e. A(n-1) - A(0)

time efficiency = θ( 1 )

Write a Java Program to do the following: Create an LinkedList object and store 5 different Integer objects. Using a ListIterator do the following: Compute sum of all even numbers only.

Answers

Answer:

poop

Explanation:

What is the page table mainly for?

Answers

Answer: See explanation

Explanation:

A page table is used for the tracking and the location of different pages of a task in memory. It helps in showing the mapping of locations between the physical addresses and the virtual addresses.

A page table stores also has the page table entries and this is where the frame numbers are stored as well as the operational status.

Help please! Really need to find this out rn

Answers

I believe it’s the “body” answer, because the term P refers to a paragraph, and paragraph code terms don’t change the entire webpage.

what is theory of knowledge?​

Answers

Theory of knowledge (TOK) plays a special role in the International Baccalaureate® (IB) Diploma Programme (DP), by providing an opportunity for students to reflect on the nature of knowledge, and on how we know what we claim to know.

6 + 7 = 7 + 6 is an example of which property of addition?

Answers

Answer:

commutative

Explanation:

The commutative property states that the numbers on which we operate can be moved or swapped from their position without making any difference to the answer.

Commutative Property of Addition

Implement a program that manages shapes. Implement a class named Shape with a method area() which returns the double value 0.0. Implement three derived classes named Rectangle, Square, and Circle. Declare necessary properties in each including getter and setter function and a constructor that sets the values of these properties. Override the area() function in each by calculating the area using the defined properties in that class.

Answers

Answer:

Explanation:

The following code is written in Python. It creates the parent class Shape and the three subclasses Rectangle, Square, and Circle that extend Shape. Shape has the constructor which is empty and the area method which returns 0.0, while the three subclasses take in the necessary measurements for its constructor. Each subclass also has getter and setter methods for each variable and an overriden area() method which returns the shapes area.

class Shape:

   def __init__(self):

       pass

   def area(self):

       return 0.0

class Square(Shape):

   _length = 0

   _width = 0

   def __init__(self, length, width):

       self._width = width

       self._length = length

   def area(self):

       area = self._length * self._width

       return area

   def get_length(self):

       return self._length

   def get_width(self):

       return self._width

   def set_length(self, length):

       self._length = length

   def set_width(self, width):

       self._width = width

class Rectangle(Shape):

   _length = 0

   _width = 0

   def __init__(self, length, width):

       self._width = width

       self._length = length

   def area(self):

       area = self._length * self._width

       return area

   def get_length(self):

       return self._length

   def get_width(self):

       return self._width

   def set_length(self, length):

       self._length = length

   def set_width(self, width):

       self._width = width

class Circle(Shape):

   _radius = 0

   def __init__(self, radius):

       self._radius = radius

   def area(self):

       area = 2 * 3.14 * self._radius

       return area

   def get_radius(self):

       return self._radius

   def set_radius(self, radius):

       self._radius = radius

quá trình xử lý dữ liệu (OSI) bên máy gởi, nhận có vẽ hình minh họa

Answers

Answer:

haywood is and best president for you me ravi in the a for and have to the a and should you of lost

Explain why an immutable type cannot have a transferFrom method as specified in the Standard interface.

Answers

Answer:

The reason behind the given statement is provided below throughout the explanation portion.

Explanation:

Whenever developers operate in something like a multiprocessing atmosphere or framework, a mutable type seems to be crucial.Immutable type can't, therefore, have transferFrom methods, even if there is no constructor way for determining the further outcomes. At first, a rate is calculated while building mutable structures, thus this can never be changed.

In this exercise we have to explain how it is immutable in a transferform method, like this:

The immutable type cannot have because skilled is no builder way for determining the further outcomes.

First, let's define the  methods we are dealing with:

What is Transferform?

Transfer Form means a standardized form prescribed by the Management Company to be duly filed by the investor to transfer Units and will be stated in this Offering Document. Immutable type can't, accordingly, have transferFrom plans, even though there is no builder habit for deciding the further effects. At first, a rate is deliberate while construction mutable forms, accordingly this can never be transformed.

See more about Transferform at brainly.com/question/14448924

what is SEO and SEM?

Answers

Answer:

SEO stands for “search engine optimization.” In simple terms, it means the process of improving your site to increase its visibility for relevant searches.

SEM, or search engine marketing, is the act of using paid strategies to increase search visibility.

QUESTION 2
1 poin
A document contains a list of items that appear in no particular order. Which of the following is the best way to format the list?

Answers

Answer:

Group of answer choices.

A. Apply numbering to the list.

B. Apply bullets to the list.

C. Apply multilevel numbering to the list.

D. Manually enter a ">" character at the beginning of each item in the list.

Answer:

B. Apply bullets to the list.

Explanation:

Formatting is a feature found in a lot of word processing software applications such as Microsoft Word, Notepad, etc., which is designed to avail end users the ability to apply specific formatting options such as cut, bold, italics, underline, list, etc., to texts based on certain criteria defined by an end user.

Microsoft Word refers to a word processing software application or program developed by Microsoft Inc. to enable its users type, format and save text-based documents.

In Microsoft Word, a list can be formatted using a numbered or bulleted arrangement style. A numbered style (1, 2, 3, 4, etc) is typically used for an ordered list while a bullet is designed to be used for an unordered list.

Hence, the best way to format a document containing a list of items that appear in no particular order is to apply bullets to the list.

For example, a bulleted list of my favorite subjects arranged in no particular order would appear as this;

English language

Mathematics

Geography

Biology

Chemistry

Physics

Computer technology

If a program compiles fine, but it produces an incorrect result, then the program suffers from _______________.

Answers

In my answer I am making an assumption that there is no runtime error, if there is then the error is “a run-time error”.

The answer is the program suffers from a Logic Error

If a program compiles fine, but it produces an incorrect result, then the program suffers from Logic Error.

What is program?

A program has been the set of the instructions that the computer can follow that are written in a programming language. The size of the computer program affects the likelihood that an error may occur. To create an executable that a computer can run, a C program needs to be run through a C compiler. Programs are collections of instructions that a computer follows. Function is an ordered, reusable code unit.

When a program is syntactically sound but has a bug that is only discovered during program execution, it is said to have a runtime error. The Java compiler is unable to catch these errors during compilation; instead, the Java Virtual Machine (JVM) only notices them when the application is running. Runtime problems may occur when a website uses HTML code that is incompatible with a web browser's capabilities.

Therefore, if a program compiles fine, but it terminates abnormally at runtime, then the program suffers a runtime error.

To learn more about program, refer to the link below:

brainly.com/question/11023419

#SPJ2

You've run 200 ft of cable and lost 7dB. What is the loss rate of your cable per 100 ft?

Answers

Answer:Explanation: If 5 dB was lost after 200 ft of cable and 100 ft is half of 200 ft, then the rate of loss should be 2.5 dB per 100 ft.

Explanation:

The loss rate is 3.5 dB per 100 ft.

According to the question, 7 decibels were lost after running 200 ft of cable.

This means that half of 7 decibels will be lost after running 100 ft of cable.

Representing this mathematically, we will have;

200 ft = 7 dB

100 ft = ?

100 ft * 7 dB/ 200 ft

=700 dB/200

= 3.5 dB

In conclusion, 3.5 dB of cable was lost per 100 ft.

Learn more about loss rate here:

https://brainly.com/question/14623935

Other Questions
Explain the importance of these students projects about the history of Tulsa? we enjoyed the party sentences has wrong prepositions. can change the sentences."there is some pie in the pan ober the counter top" Complete the transformations below.Then enter the final coordinates of the figure.A(2,4)BA ([?], [])15,2) B" ([], [])C" ([], 1)C(3,1)1) 2) Dilate K = 4Enterwill give brainliest Sah Inc's last free cash flow was $1.75 million. Its free cash flow growth rate is expected to be constant at 25% for 2 years, after which free cash flows are expected to grow at a rate of 6% forever. Its weighted average cost of capital WACC is 12%. Huxley has $5 million in short-term investments and $7 million in debt and has 2 million shares outstanding. What is the best estimate of the current intrinsic stock price C 5) Identify 2/10 as a decimal. * O 10.2 2.10 O .2 o O .02 When creating a company's security policy, it is not necessary that the scope align with the company's annual information security budget. True False What has the creature learned from his experiences among men? Please write at least 100 words I really need help this is due tomorrow. (from gris grimly frankenstein)THANK YOU IF YOU HEP YOUR A LIFESAVER!! :) What is the value of x in the figure below? If necessary, round your answer tothe nearest tenth of a unit.X12D 4 BA. 3.1OB. 12C. 6.9O D. 4 . The temperature on Monday was 5C . By Tuesday the temperature rose to 2C. Find the change in temperature. is y=2x^3 an even or odd function or neither Why is Darry shocked by the Soc who steps forward to fight him ? WILL MARK BRAINLIEST HELP ASAP!!!!In A Struggle for Better Working Conditions," the mill workers in Lowell tried to make their lives better. Write 3or 4 sentences summarizing how they tried to achieve this goal. Use information from the passage and time lineto support your ideas.Select to begin writing. You pick a card at random.456What is P(4)?Write your answer as a fraction or whole number. The measures of two interior angles in a triangle are 108 degrees and 24 degrees. Find the measure of the third interior angle and the measures of the exterior angles.Please give only real answers. I will give 50 points for who answered it right. No docs/No files only type in the answer. A carpenter has two pieces of wood. He wants to find the density of each piece.The first piece came from a birch tree. The piece of birch wood measures 2 meters by 4 meters by 3 meters and weighs (mass) 16 kilograms.The second piece came from a cypress tree. The piece of cypress wood measures 3 meters by 5 meters by 2 meters and weighs (mass) 15.3 kilograms.Which piece of wood has a greater density? A fitness center currently has 320 members. Monthly membership fees are $45. The manager of the fitness center has determined that each time the membership fees increase by $5, approximately 10 members leave and go to a different gym.Write an equation that can be used to find the revenue of the fitness center in dollars, y, after x price increases of $5.help pleaseA. y = -50x2 + 2,050x + 14,400B. y = -50x2 + 3,425x + 14,400C. y = -50x2 + 2,975x + 14,400D. y = -50x2 + 1,150x + 14,400 Is it possible to have multimedia art without digital art? Explain your answer. 20 POINTS In order to sell a product at a profit the product must be priced higher than the total of what it costs you to build the unit, plus period expenses, and plus overhead. At the end of last year the broad cost leader Chester had an Elite product Cake. Use the Inquirer's Production Analysis to find Cake's production cost, (labor materials). Exclude possible inventory carrying costs. Assume period expenses and overhead total 1/2 of their production cost. What is the minimum price the product could have been sold for to cover the unit cost, period expenses, and overhead Dr. Whitehorse, an abnormal psychology professor, explains that he believes that the symptoms of schizophrenia take shape when individuals try to make sense of hallucinations and conclude incorrectly that the source is external. Dr. Whitehorse is providing a _____ explanation of the symptoms of schizophrenia. Please choose the correct answer from the following choices, and then select the submit answer button.