What is a conditional statement? What is another name for conditional statement? Give 2 examples of conditional statements?

Please give a correct answer. Will give brainliest, 5 star and 100 points for the correct answer else will take it back.

Answers

Answer 1

Answer:

A conditional statement instructs a system to do action based on whether a condition is true or false. This is frequently expressed as an if-then or if-then-else expression. A conditional statement is applied to predicate choices on circumstances. When there is no condition around the instructions, they run sequentially. If you add a condition to a block of statements, the execution flow may alter depend on the outcome of the condition. It is also known as a one-way selection statement because we utilize the if condition, provide the argument, and if the argument is passed, the relevant function is performed; else, nothing happens. 

Examples of conditional statements:

1) int time = 20;

if (time < 16) {

 System.out.println("Have a good day.");

} else {

 System.out.println(" Enjoy your evening.");

}

2) using namespace Conditional;

static void Main(string[] args)

{

 // This method determines what a user should do for the day based on the weather condition

 public void Weather(string myWeather)

 {

   // 1st condition

   if (myWeather == "Sun")

   {

     // Decision

     Console.WriteLine("Go to the beach");

   }

   // 2nd condition

   else if (myWeather == "Rain")

   {

     Console.WriteLine("Go to the library")

   }

   // 3rd condition

   else if (myWeather == "Cloudy")

   {

     Console.WriteLine("Go to the park")

   }

   else

   {

     //otherwise

     Console.WriteLine("Rest at home")

   }

 }

}


Related Questions

Miguel is having Internet troubles and is working offline. What can Miguel do with templates?
O
Miguel can search for new templates, but he cannot use a pre-existing template.
Miguel can access pre-existing templates, but he cannot use a downloaded template.
O Miguel can access a downloaded template, but he cannot access a pre-existing template.
Miguel can access a pre-existing template, but he cannot search for new templates.

Answers

Answer:

Miguel can access a pre-existing template, but he cannot search for new templates.

Explanation:

If the template is downloaded (pre-existing), he can use it because it is stored on the computer. Anything online cannot be used.

streaming video apps, such as hulu or netflix, can use as much as _____.

Answers

Streaming video apps, such as Hulu or Netflix, can use as much as "several gigabytes per hour" of data.

Streaming video services consume varying amounts of data depending on the streaming quality selected. Higher-quality video streams, such as HD or 4K, require more data to deliver a clearer and more detailed image. On average, streaming video services can consume several gigabytes of data per hour, especially when streaming in higher resolutions or with a fast internet connection. This high data consumption is something to consider for users with limited data plans or slower internet connections, as it can quickly deplete data allowances or cause buffering issues. It's advisable to monitor data usage and adjust streaming quality settings accordingly to optimize data consumption.

Learn more about gigabytes of data here:

https://brainly.com/question/15315089

#SPJ11

AAA DRIVER'S ED has anyone done this before??? and they know the answer?? bc its not working

AAA DRIVER'S ED has anyone done this before??? and they know the answer?? bc its not working

Answers

The correct sequence for the driver's ED test is:

Check gaugeStart engineRelease keyCheck lightsLet engine idleCheck if gear is in parkCheck parking brakeFoot on brake pedal

What is a Driving Test?

This refers to the official test of how competent a driver is to ride on the highway and must be passed in order to get a driving license.

Hence, we can see that when taking a driver's test, you would be tested on your knowledge of starting a car, checking the gauges and parking brakes, and the correct sequence of doing it.

Read more about driving test here:

https://brainly.com/question/2666433

#SPJ1

Answer: Mine was not working either, it said it was wrong even though i did it correctly, here is the proper sequences:

Explanation:

AAA DRIVER'S ED has anyone done this before??? and they know the answer?? bc its not working

Which of the following adds digital elements to a live view, often by using the camera on a smartphone? O Augmented reality O Forecasting O Problem-solving O Virtual reality​

Answers

Answer:

augmented reality

Explanation:

think "pokemon go" when youre relaxing with your buddy and you feed it berries

As per US copyright laws, Jean's copyright ends in 1988 . Until then, if other people use parts of Jean's book in their work, then they need to obtain permission from .

Answers

Answer:

Jean

Explanation:

Copyright is a legal intellectual property right, exclusively assigned to originator of a creative work - for its publish, performance, recording etc, for a fixed period of time. The creative work can be used by any other person or party, by permission of copyright owner only.

So : As per US copyright laws, Jean's copyright ends in 1988 .Until then, if other people use parts of Jean's book in their work, then they need to obtain permission from Jean

how to print in this on python
#
# #
# # #
# # # #
# # # # #

Answers

Answer:

triangular ##&((+ hhvbh. hhhb hhv

Answer:

for i in range(1, 6):

   print(("# " * i).rstrip())

Explanation:

You need to print one hashtag, then 2, then 3, and so on. We can use Python's string multiplication to get each line quicker.

String multiplication is an easy way to repeat the same string a certain number of times. It's done by multiplying the string to a number.

For example,

"hello" * 6

>> "hellohellohellohellohellohello"

If we multiply the string "#" by any number, we would get a number of hashtags side by side, without any space. To easily avoid this, we can multiply "# " instead to automatically put a space to the right of each hashtag.

We can use a for loop that goes through range(1, 6) to print out 5 rows.

for i in range(1, 6):

Then, we can print the string "# " multiplied by i.

print("# " * i)

However, this will also put a space at the end of the string, which we do not want to print. Hence, we can use the .rstrip() method to strip the string of any spaces on the right. We will first put the whole string in parentheses, then invoke rstrip on it.

print(("# " * i).rstrip())

Let's put both lines together.

for i in range(1, 6):

   print(("# " * i).rstrip())

how can more employment opportunities be generated? (plz help)​

Answers

Answer:

provide cheap credit facilities

Explanation:

One of the best ways for more employment opportunities to be generated would be to provide cheap credit facilities more often. This allows existing businesses to expand by building more production facilities and also new businesses to be created. These facilities need workers to operate the machinery and everyday tasks so that they become profitable. This in term generates jobs and ultimately stimulates the economy. Doing this basically generates a chain of events that lead to more jobs.

how are the internal components of a computer protected against esd?

Answers

By grounding the internal components via attachment to the case, computer internal components are protected against ESD. the case by using numerous fans to circulate warm air through.

How are a computer's interior working parts shielded from ESD Cisco?

When performing routine computer repair work involving electronic devices, qualified service personnel utilize grounding straps to reduce the possibility of electrostatic discharge (ESD). To ground the technician to the system being worked on, these antistatic devices can be wrapped around the wrists or ankle.

What are the three materials kinds that are utilized to shield electronic components from electrostatic discharge?

Packaging materials including shielding bags, corrugated boxes, and rigid or semi-rigid plastic packages offer direct protection against electrostatic discharge for ESDS items.

To know more about Electrostatic Discharge (ESD) visit:-

https://brainly.com/question/30369999

#SPJ4

the courts can adjust the penalties in lawsuits to reflect the fact that infringements may be _____.

Answers

The courts are authorized to adjust the penalties in lawsuits in order to reflect the fact that infringements may be willful.

What is a court?

A court can be defined as an enclosed space such as a hall or chamber, where legal practitioners (judges, lawyers or attorneys and a jury) converge to hold judicial proceedings, especially by listening to evidences and giving a verdict about legal cases.

In the Judicial system, the courts are authorized to adjust the penalties in lawsuits in order to reflect the fact that infringements may be willful.

Read more on Courts here: https://brainly.com/question/1991159

#SPJ1

The courts can adjust the penalties in lawsuits to reflect the fact that infringements may be wilful.

What are the consequences of infringement?

In general, everybody discovered responsible of civil copyright infringement can be ordered to pay both real damages or “statutory” damages affixed at now no longer much less than $750 and now no longer extra than $30,000 in line with paintings infringed. For “willful” infringement, a courtroom docket can also additionally award up to $150,000 in line with paintings infringed.

Infringement or lively inducement of infringement is willful whilst it's miles accomplished intentionally and intentionally, and with know-how of the patent. Copying of an invention, if such copying keeps after the lifestyle of the patent is made known, is proof of willfulness.

Read more about the infringements :

https://brainly.com/question/1078532

#SPJ1

Create a program that functions as a simple boolean calculator for 32-bit integers (The Irvine32 library is required for this solution program). It should display a menu that asks the user to make a selection from the following list: 1. X AND y 2. X OR y 3. NOT x 4. X XOR y 5. Exit program

Answers

Programs that function as a simple boolean calculator for 32-bit integers can be created using a programming language such as assembly language. Irvine32 library is required for this solution program. Here is a program that displays a menu and allows the user to make a selection from a list of options.

Once the user selects an option, the program will perform the selected operation on two 32-bit integers (x and y) entered by the user. If the user selects option 5, the program will exit. Here is the code:```
include irvine32.inc

.data
X DWORD ?
Y DWORD ?
newline BYTE 0dh,0ah,0
menu BYTE "Please make a selection from the following list:",0dh,0ah, "1. X AND Y",0dh,0ah, "2. X OR Y",0dh,0ah, "3. NOT X",0dh,0ah, "4. X XOR Y",0dh,0ah, "5. Exit program",0dh,0ah,0.


To know more about function visit:

https://brainly.com/question/30721594

#SPJ11

Write the balanced Ka and Kb reactions for HSO3– in water.

Answers

The balanced Ka and Kb reactions for HSO3– in water are: Ka: H2SO3 + H2O ⇌ H3O+ + HSO3–; Kb: SO32– + H2O ⇌ HSO3– + OH–

The conjugate acid of HSO3– is H2SO3, which can dissociate in water according to the following reaction:

H2SO3 + H2O ⇌ H3O+ + HSO3–

The acid dissociation constant (Ka) for this reaction is:

Ka = [H3O+][HSO3–]/[H2SO3]

The conjugate base of HSO3– is SO32–, which can react with water to form hydroxide ions (OH–) and HSO3– according to the following reaction:

SO32– + H2O ⇌ HSO3– + OH–

The base dissociation constant (Kb) for this reaction is:

Kb = [HSO3–][OH–]/[SO32–]

To obtain the balanced reactions, we need to ensure that the number of atoms and charges are balanced on both sides of the equations. The balanced Ka and Kb reactions for HSO3– in water are:

Ka: H2SO3 + H2O ⇌ H3O+ + HSO3–

Kb: SO32– + H2O ⇌ HSO3– + OH–

These two reactions demonstrate the amphoteric nature of the hydrogen sulfite ion, as it can act as both an acid and a base in water.  

Know more about the base dissociation constant click here:

https://brainly.com/question/29124490

#SPJ11

Which statement is most likely to be true of a self-driving vehicle rated at
automation level 2 (partial automation)?
A. The vehicle is mostly controlled by artificial intelligence.
B. The vehicle is completely controlled by a computer.
C. The driver's seat does not need to be occupied.
D. The vehicle may use artificial intelligence to stay in the correct
lane.

Answers

Answer:

i would select D.

Explanation:

D is definitely the correct answer.

Write a function named is Prime that checks if a number is prime or not. In main(), isPrime() is called in a loop, to write all prime numbers between 2 and 104729 to a file, one number per line. A positive integer is prime if its only positive divisors are itself and 1. For instance: 2, 3, 5, 7, 11, 13, 17, 19, 23 are prime numbers, and 4, 10, 15, 22, 30 are not prime. The isPrime function checks if a number is prime or not using a simple algorithm that tries to find a divisor. It stops searching at the integer part of the square root of the number being tested. int main(void) { ofstream outfile; int max_num = 104729; outfile.open("primes.txt"); for (int i = 2; i <= max_num; i++) { if( isPrime(i)) outfile << i < endl; } outfile.close(); return 0; }

Answers

The provided code defines a function named is Prime that checks whether a given integer is a prime number or not. The function uses a simple algorithm that tries to find a divisor and stops searching at the integer part of the square root of the number being tested.

The main function then calls this is Prime function in a loop to write all prime numbers between 2 and 104729 to a file, one number per line. To explain further, an integer is a whole number that can be positive, negative, or zero. Prime numbers are positive integers greater than 1 that have no positive divisors other than 1 and themselves. The provided is Prime function takes an integer as its input and checks whether it is prime or not. It does this by dividing the input number by all integers from 2 up to the integer part of the square root of the input number. If the input number is divisible by any of these integers, it is not prime and the function returns false. If none of these integers divide the input number, the function returns true, indicating that the input number is prime. The main function uses a loop to iterate over all integers from 2 to 104729. For each integer, it calls the is Prime function to check whether it is prime or not. If it is prime, the integer is written to a file named "primes.txt" using the of  stream object out file. Finally, the file is closed and the main function returns 0. Overall, the provided code efficiently identifies all prime numbers between 2 and 104729 using a simple algorithm that checks for divisors up to the square root of the input number.

Learn more about algorithm here-

https://brainly.com/question/22984934

#SPJ11

If a web address is written as http://www.mywebprescence.com/index.html: What part of this address is considered to be the webpage?

Answers

(http://www.) is considered

to ensure that text is easily read on low resolution devices, we should use a higher x-height. true or false?

Answers

To ensure that text is easily read on low resolution devices, we should use a higher x-height. This statement is true.

What is an x-height?

The distance between the baseline of a line of type and the top of the main body of lower case letters is referred to as x-height. The x-height is a critical aspect of text readability, particularly in body copy. It determines the visual impact of a typeface and its legibility in smaller sizes.

Resolution and higher x-heightResolution has an impact on the visual quality of typefaces. As the resolution gets lower, typefaces become more difficult to read. The x-height is increased to make text more readable on low-resolution devices. When we use a typeface with a higher x-height, the size of lowercase letters is increased. This implies that the height of lowercase letters is closer to the height of uppercase letters.

As a result, lower-case letters appear larger, and the words appear to have more space between them. In conclusion, to ensure that text is easily read on low-resolution devices, we should use a higher x-height.

Learn more about  devices here: https://brainly.com/question/26409104

#SPJ11

Word processing software programs can run on smartphones.
True
Or
False

Answers

the answer is false because you can only get word on pc

tor network has a sender, a receiver, and three relay nodes. which communication stage (in terms of the communication between one node and another node.) is not protected by tor network?

Answers

In the Tor network, the communication stage that is not protected by the network is the exit node stage.

When using Tor, the sender's data is encrypted and sent through a series of relay nodes before reaching the final destination. Each relay node decrypts and re-encrypts the data with its own encryption key, making it difficult to trace the data back to the sender. However, when the data reaches the exit node, it is decrypted and sent to its final destination without further encryption.  This means that the exit node can potentially see the unencrypted data being sent by the sender, including any sensitive information such as login credentials or personal information. It is important to note that while the Tor network provides a high degree of anonymity and privacy, it is not 100% secure and there are potential vulnerabilities that can be exploited.

Learn more about Tor network here:

https://brainly.com/question/31516424

#SPJ11

You have an unsorted array of 1,000,000
people.
You are using a Linear Search to look for
someone who is not in the array at all.
How many people does the computer look at
before it realizes this person is not in the array?
O a
b
Ос
Od
(a)exactly 1
(b)about 500,000
(c)all 1,000,000
(d) it will search forever
(d)It will search forever.

Answers

I’m pretty sure it’s C.

Activity 2. 3. 1 hexadecimal and octal number systemsIn base eight, we had digits 0 through 7. At this point you have the ability to apply the theorems and laws of Boolean algebra to simplify logic expressions in order to produce simpler and more cost effective digital logic circuits. A few New-World tribes used base- 8 numbering systems; they counted by using the eight spaces between their fingers, rather than the ten fingers themselves. Note that when using dictionary-style notation such as. Understanding how these displays work and the differences between them is fundamental to designing many different types of electronic devices

Answers

Hexadecimal and octal number systems are both systems of representing numbers in different bases. Hexadecimal is a base-16 system, meaning that each digit can represent 16 values. Octal is a base-8 system, meaning that each digit can represent 8 values.

What is number systems ?

Number systems are the way we represent numbers and perform calculations. They can be categorized into two broad classes: the positional number systems and the non-positional number systems. Positional number systems use a base, such as 10 or 16, and the digits are added together to represent the number. The non-positional number systems, such as Roman numerals, represent numbers using symbols, such as letters or other symbols. In both cases, number systems provide a way to represent and manipulate numbers. Some of the most commonly used number systems are binary, octal, decimal, and hexadecimal. Binary is used to represent digital information and consists of only two digits: 0 and 1. Octal and hexadecimal are positional number systems that use eight and sixteen digits, respectively. Decimal is the most commonly used number system and consists of ten digits: 0, 1, 2, 3, 4, 5, 6, 7, 8, and 9.

Octal is commonly used in digital electronics, as it is a more efficient way to represent binary data. For example, a single octal digit can represent three binary bits, which is much more efficient than representing each bit separately. Octal is also used to represent permissions in Linux systems. Overall, the hexadecimal and octal number systems are both useful in different contexts, depending on the application. They both allow for more efficient representation of binary data, and they often make it easier to work with and understand digital data.

To learn more about number systems
https://brainly.com/question/11966194
#SPJ4

A carbon composition resistor having only three color stripes has a tolerance of?

Answers

Answer:

A carbon composition resistor having only three color stripes has a tolerance of 20 percent .

A resistor would normally have four color codings, with the fourth color indicating tolerance. A resistor having no band at all would mean a 20% tolerance.

What is Tolerance of Resistor

Tolerance of resistors means/indicates the amount of deviation or changes a resistor can take and still operate within allowable limits.

There are several types of ResistorFixed Value ResistorsVariable Resistors Resistor NetworksCarbon Film ResistorsMetal Film ResistorsWire wound ResistorsMetal Oxide ResistorsMetal Strip Resistors

Learn more about Resistors here:

https://brainly.com/question/469388

all network switches require substantial configuration before they can be put into operation in a network. true false

Answers

The statement "All network switches require substantial configuration before they can be put into operation in a network" is partially true. However, a long answer would be required to explain why. Here's why:Explanation:Most network switches require some configuration before they can be used in a network.

There are, however, several unmanaged switches available on the market that do not require configuration, making it simple to add them to a network quickly. Furthermore, several switches are now designed to be simple to set up and operate with no technical knowledge required. On the other hand, many network switches are quite complicated and will require considerable configuration to function properly.

They can have dozens of ports and advanced features such as VLAN tagging and port mirroring, and setting up these features can take some time and expertise. Some switches come with pre-installed templates, making it easier for switches require some degree of configuration, there are exceptions to this rule, and the amount of configuration required varies depending on the type of switch.

To know more about configuration visit:

brainly.com/question/32886519

#SPJ11

after reviewing your slide, you realize that it could be improved. what steps do you take to make the two text boxes beneath the header more effective? select all that apply. 1 point ensure the text does not simply repeat the words you plan to say edit the text to fewer than 25 words total use abbreviations to reduce the amount of text edit the text to fewer than five lines total

Answers

After reviewing your slide, you realize that it could be improved. To make the two text boxes beneath the header more effective on must:

Ensure the text does not simply repeat the words you plan to say (Option AEdit the text to fewer than 25 words in total (Option C)Edit the text to fewer than five lines in total (Option D).

What is a slide presentation?

A slide is a single presentation page. A slide deck is a collection of slides that are used together. A slide show is an electronic device or projection screen presentation of a sequence of slides or photographs.

Avoid paragraphs, quotes, and even whole phrases when creating a fantastic slide presentation. Restrict your slides to five lines of text and make your arguments with words and phrases.

Key topics will be easier to consume and keep for the audience. Use your slides for more than just speaker notes or to portray an outline of your presentation.

Learn more about text boxes:
https://brainly.com/question/20034650
#SPJ1

What make appertizer look healthier?

Answers

Answer:

Fruits, vegetables or drinks but it needs to be fruit wise in order to be healthier

the vegetables on the side

Why are tables a good way for displaying data

Answers

Answer:

Tables are used to organize data that is too detailed or complicated to be described adequately in the text, allowing the reader to quickly see the results.

Explanation:

please make my answer as brainelist

Which organization has published more than 300 Web standards, and encourages manufacturers to follow these standards, many of which define levels of conformance? This task contains the radio buttons and checkboxes for options. The shortcut keys to perform this task are A to H and alt+1 to alt+9.
A) World Wide Web Consortium (W3C)
B) Institute of Electrical and Electronics Engineers (IEEE)
C) Internet Engineering Task Force (IETF)
D) International Organization for Standardization (ISO)

Answers

Answer:

c

Explanation:

If you did not want a header on the first page of your document, you would need to select the _____ feature from the Options menu on the Header and Footer Tools tab.
Insert Header
Various Page Type
Different First Page
Different Odd and Even Pages

Answers

Answer: insert header

Which of the following is NOT correct concerning database design? Question 2 options: Identify all fields needed to produce the required information Group related fields into tables Determine each table's primary key Organize each piece of data into its largest useful part.

Answers

The option which is not correct concerning database design is identify all fields needed to produce the required information.

What is database design?

The database design is the arrangement of the data or the information, according to the model of database.

Let's check all the option one by one,

Identify all fields needed to produce the required information- This does not concern with the database design.Group related fields into tables-A relation database design consist of one or more than one related table. These tables are used together when the information is required.Determine each table's primary key- To determine the table's primary key, is the concern with the database design.Organize each piece of data into its largest useful part-The database design is the organization of data in the model of database.

The option which is not correct concerning database design is identify all fields needed to produce the required information.

Learn more about the database design here;

https://brainly.com/question/25694408

Similar to wireless networks, cellular networks use band configuration to avoid what problem?

Answers

Answer:

The statement is true

Explanation:

A type of computer network that is believed to not require the use of wires is known as a wireless network. A communication network with a wireless connectivity to and from end nodes is known as a cellular network or mobile network.

What is meant by wireless networks?

A wireless network is a type of computer network that is thought to operate without the use of wires.

A cellular network or mobile network is a communication network that provides wireless connectivity to and from end nodes. The network is divided into land "cells," with each cell served by a fixed-location transceiver.

There are three main ways to secure a wireless network. Closed networks are the most commonly used method for configuring access limitations in access points (such as those used by individuals at home or by businesses). MAC address checks and encryption are examples of such restrictions.

A wireless network is a sort of computer network that is thought to not require the usage of cables. A communication network with a wireless connectivity to and from end nodes is known as a cellular network or mobile network.

Because the majority of wireless network signals travel outside your home, they are far more vulnerable to attack than wired networks. Your wireless network may be used by neighbors to connect to the Internet inadvertently (or on purpose), and hackers may attempt to gain access to it.

The CCMP (Counter Mode Cipher Block Chaining message), which is widely used for wireless networks, provides security.

To learn more about wireless networks refer to:

https://brainly.com/question/26956118

#SPJ4

"windows cannot access the specified device, path, or file. you may not have the appropriate permissions to access the item". How to handle it?

Answers

When you launch the OfficeScan installer, the following problem appears: Windows is unable to access the requested object, path, or file. The item may not be accessible to you because of your permissions. Insufficient permissions or a block on the EXE file for enhanced security are the causes of this issue.

How can I get around Windows permission denied?

By selecting the icon in the lower-left corner of your screen, you may access the Start menu. In the Search field, enter "cmd." When the cmd option appears, right-click on it and choose Run as administrator. Enter the command "net user administrator /active: yes" in the Command Prompt field.

Why does my computer claim that I lack permission?

Microsoft lists a number of potential causes for this problem, including: The user or group was somehow removed from the folder's Security tab's list of permitted "Group or user names." The user or group has unintentionally been given access to an explicit "Deny" function.

To know more about Windows permission visit;

https://brainly.com/question/29219075

#SPJ4

A good algorithm should have which three components?
OA. Commands, inputs, and outputs
OB. Clarity, readability, and sequencing
OC. Steps, order, and outcomes
OD. Clarity, simplicity, and brevity

Answers

A good algorithm should have these three components: C. steps, order, and outcomes.

What is an algorithm?

An algorithm simply refers to a standard formula which is made up of a set of finite steps and instructions that are executed on a computer system, in order to enable a software solve a particular problem under appropriate conditions.

In Computer technology, there are three (3) components that a good algorithm should have these include the following:

StepsOrderOutcomes

Read more on algorithm here: brainly.com/question/24793921

#SPJ1

Other Questions
Which element of the attack from passage 1 does the sculpture emphasize?The regret of the Trojans for not listening to LaocoonLaocoons anguish as his sons are strangled by the serpentsLaocoons hesitation to fight against the sea serpentsThe admiration of the Trojans for Pallas quick revenge warm climate cause drought and flood is it controversial? who does zel help escape Lagos? why does she help this person?(In the book "Children Of Blood And Bone" RESIDUAL INCOME VALUATION. The Coca-Cola Company is a global soft drink beverage company (ticker symbol = KO) that is a primary and direct competitor with PepsiCo. The data in Exhibits 11.13, 12.14, and 12.15 in Chapter 11 include the actual amounts for Year 4 and projected amounts for Year + 1 to Year + 6 for the income statements, balance sheets, and statements of cash flows for Coca-Cola (in millions).The market equity beta for Coca-Cola at the end of Year 4 is .76. Assume that the risk-free interest rate is 4.0 percent and the market risk premium is 5.0 percent. Coca-Cola has 2,409 million shares outstanding at the end of Year 4. At the end of Year 4, Coca-Colas share price was $41.64. Required : Derive the projected residual income for Coca-Cola for Years + 1 through +6 based on the projected financial statements. The financial statement forecasts for Year +6 assume that Coca-Cola will experience a steady-state long-run growth rate of 3 percent in Year +6 and beyond. Which segment of the sheep/goat industry saw a significant increase in production in the early 2000s Manufacturing Facilities Design You are required to choose any freeware facilities design software package, or any of the following paid software packages; Excel, Microsoft Visio, AutoCAD/SolidWorks/ or any other CAD/CAM software, Arena/SIMIO or any other layout simulation package to design a manufacturing facility for a Motorcycle of your choosing. The Motorcycle can be of any engine capacity and be powered by any type of fuel source. In the event of opting for a freeware facility design software package then state the application name and provide a download link for the freeware you used. In your design consider, address the following minimum requirements: 1. An exhaustive product design with constituent components and dimensions. 2. Part list of what will be required to build your product. 3. Draw a precedence diagram clearly indicating the processes involved to build the product. 4. Detailed machine and other equipment specifications. 5. Draw a comprehensive computer-based plant layout of your manufacturing facilities, with proper dimensions and scale, including support facilities and all other features required for a fully functional and operational optimal manufacturing facility. 6. Clearly and systematically outline your decision process (e.g. how you decided on location of support functions, how you arrived at the number of workstations and workers required, etc.) 7. Outline a Capital Budget Breakdown for your envisaged manufacturing facilities 8. Give a breakdown of the expected manufacturing running costs of your plant for the first six months of operation. 9. Convert your assignment into a pdf file and submit electronically via Unisa. An audio signal is comprising of the sinusoidal terms X(t) = 3 cos (500nt). The signal is quantised using 7-bit PCM. A non-uniform or uniform quantizer can be considered. Compute: (i) the signal to quantization noise ratio [3 marks] (ii) the bits needed to achieve a signal to quantization noise ratio of 40 dB [3 marks] (d) Compute the amplitude in a Delta modulator system, assuming for a minimum quantization error. The step size of the modulator is 1V, having a repetition period of 1 ms. The information signal operates at 10 Hz. [3 marks] Define two binary operations + and on the set Z of integers by x + y = max(x, y) and x - y = min(x, y). a. Show that the commutative, associative, and distributive properties of a Boolean algebra hold for these two operations on Z. b. Show that no matter what element of Z is chosen to be the property x + 0 = x of a Boolean alge- bra fails to hold? calculate the price of a 6.5 percent coupon bond with 27 years lef to maturity and a market interest rate of 5 percent. 1. Think about what you already know about to answer this Supporting Question. Was European exploration necessary? Use your own words please The Speaker of the House is the 3rd most powerful person in the United States government.O TrueO False The question word you would most commonly use to ask about a steps in a process is because when b. draw d. which what is transmigration? it is a forced movement of certain citizens to concentration camps. In a story, a comedian faces the problem that people no longer laugh at his jokes. Which paragraph would best set the stage for the story?He told three of his favorite jokes and got some small laughs. He knew if he just kept going, he would win over the crowd. So, he decided to tell his favorite joke, the one about the time he camped in Central Park. But, when he delivered the punch line, he only heard polite laughing, not the belly laughs he had expected. He told his three favorite jokes and then continued with some new material. He always found new material helped liven up his act. The old material got stale, both for him and the audience. Fresh material kept the night interesting and made him feel like he was breaking new ground.His first three jokes didnt get any laughs. So, he pulled out an old tried and true joke, the one about the moose. This joke always got them laughing. But, when he delivered the punch line, there was only silence. He squinted out into the crowd and was met with silent stares. Near the back, someone coughed.He told three jokes, just to get the audience warmed up. He would build toward the truly funny material, which he always put in the middle of his set. But you had to gauge your audience. Sometimes an audience wanted the best material first. You had to keep on your toes, or you would never make it in this business. in a ping pong tournament consisting of twelve teams, each team plays every other team once. how many games are there? Module 1-Covers chapters 1,2 and 3-Minimum Word Count 500-Be sure to Spell-check - Discussion questions-Select two: 1. Discuss with examples four important issues influencing HR management today. 2. What is adverse impact? How can it be proven? 3. What is a high-performance work system? Provide several specific examples of the typical practices in a high-performance work system. - This question is required: Reflection on simulations, cases and/or and videos. Be specific about what you learned: Select a news item that appears in a major news outlet on-line. Provide the full URL so that I can access it. Then, summarize this in terms of the impact it has on concepts in these chapters. Or respond to one of the scenarios in one of the chapters. Then, summarize this in terms of the impact it has on concepts in these chapters. - This question is required. What is your take-away from these three chapters? 150 words Match each pair of opposing forces with the type of conflict it represents. a person climbing a cliff individual vs. self a student struggling to focus - individual vs. environment two people arguing individual vs, others The spices were worth just as much as the cost of the journey portions of the financial statements for peach computer are provided below. peach computer income statement for the year ended december 31, 2021 net sales $1,625,000 expenses: cost of goods sold$980,000 operating expenses 490,000 depreciation expense 43,000 income tax expense 33,000 total expenses 1,546,000 net income $79,000 peach computer selected balance sheet data december 31 20212020increase (i) or decrease (d) cash$95,000 $81,500 $13,500 (i) accounts receivable 46,700 52,500 5,800 (d) inventory 68,000 51,500 16,500 (i) prepaid rent 2,300 3,600 1,300 (d) accounts payable 38,000 33,500 4,500 (i) income tax payable 4,300 6,500 2,200 (d) required: prepare the operating activities section of the statement of cash flows for peach computer using the direct method. (list cash outflows and any decrease in cash as negative amounts.) help please! no links no files