Write a C++ program that will read the assignment marks of each student and store them in two- dimensional array of size 5 rows by 10 columns, where each row represents a student and each column represents an assignment. Your program should output the number of full marks for each assignment (i.e. mark is 10). For example, if the user enters the following marks: The program should output: Assignments = I.. H.. III III I.. III # Full marks in assignment (1) = 2 # Full marks in assignment (2) = 5 ** Student 10 0 1.5 10 0 10 10 10 10 10 1.5 2.5 9.8 1.0 3.5 ... I.. ... HEE M I.. M I.. ... ...

Answers

Answer 1

The `main` function prompts the user to enter the assignment marks for each student and stores them in the `marks` array. In this program, the `countFullMarks` function takes a two-dimensional array `marks` representing the assignment marks of each student.

Here's a C++ program that reads the assignment marks of each student and outputs the number of full marks for each assignment:

```cpp

#include <iostream>

const int NUM_STUDENTS = 5;

const int NUM_ASSIGNMENTS = 10;

void countFullMarks(int marks[][NUM_ASSIGNMENTS]) {

   int fullMarksCount[NUM_ASSIGNMENTS] = {0};

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

       for (int j = 0; j < NUM_ASSIGNMENTS; j++) {

           if (marks[i][j] == 10) {

               fullMarksCount[j]++;

           }

       }

   }

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

       std::cout << "# Full marks in assignment (" << i + 1 << ") = " << fullMarksCount[i] << std::endl;

   }

}

int main() {

   int marks[NUM_STUDENTS][NUM_ASSIGNMENTS];

   std::cout << "Enter the assignment marks for each student:" << std::endl;

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

       for (int j = 0; j < NUM_ASSIGNMENTS; j++) {

           std::cin >> marks[i][j];

       }

   }

   countFullMarks(marks);

   return 0;

}

To know more about array visit-

https://brainly.com/question/31605219

#SPJ11


Related Questions

buying insurance and investing for the future requires spending less in the present.

Answers

True. Insurance and investing for the future means less out of pocket money now/present.

according to the cap theorem, a nosql database that has high availability and the ability to easily scale horizontally across many machines (partition), what will necessarily be lower?

Answers

The CAP theorem states that it is impossible for a distributed system to provide all of the following three guarantees at the same time:Consistency: All nodes in the distributed system see the same data at the same time.

A guarantee that every request received by a non-failing node in the distributed system must result in a response.Reliability (or partition tolerance): A guarantee that the system will continue to function even if there is a network partition. In simpler terms, if a distributed system has high availability and is able to easily scale horizontally across many machines, then it must give up some consistency. This means that not all nodes in the system will see the same data at the same time, which can lead to some data inconsistencies. In the context of a NoSQL database, if it is designed to prioritize high availability and horizontal scalability, then it will necessarily sacrifice consistency to some degree.

learn more about CAP theorem here:

https://brainly.com/question/30054790

#SPJ11

Shreya has combined all the cells in a single leftmost column in a table. Instead of identifying the category multiple times, she would like to combine these cells and then structure the word "Appliances” vertically in the cell.

Where will Shreya find these options?

Insert tab, Tables group
Design tab, Merge group
Table Tools Design tab, Merge group
Table Tools Design tab, Merge group, Alignment group

Answers

Answer:

the answer for this is ,table tools,design tab,merge group

What kind of technology is helping people who don't have access to the internet get it? A) Airplanes B) Balloons C) Routers D) Ships

Answers

Answer: c router

Explanation:

I took a test with the same question

in which grades do students typically take the PSAT?
A. Ninth and tenth grades
B. Eighth and ninth grades
O C. Tenth and eleventh grades
O D. Eleventh and twelfth grades

Answers

B eighth and ninth grade

B. Eighth and Ninth grade.

When you instruct a computer or mobile device to run an application, the computer or mobile device answer its software, which means the application is copied from storage to memory?

Answers

I believe loads

not for sure what the question is

The power of if worksheet

Answers

what are you talking about?

A flaw or weakness in a system’s design,implementation, or operation and management that could be exploited to violatethe system’s security policy is a(n) __________..
a) Vulnerability
b) Malware
c) Firewall
d) Encryption

Answers

"Vulnerability." A vulnerability is a weakness in a system that could be exploited to violate its security policy.

It can exist in the design, implementation, or operation and management of a system, and can be exploited by attackers to gain unauthorized access, steal data, or cause damage. Vulnerabilities are a common concern in computer security, and organizations often conduct regular vulnerability assessments and take steps to mitigate them.

It's important to identify and mitigate vulnerabilities to protect systems and sensitive data from potential attacks. This can involve implementing security best practices, such as regularly updating software, using strong authentication mechanisms, and implementing intrusion detection and prevention systems. Additionally, conducting regular vulnerability assessments and penetration testing can help organizations proactively identify and address vulnerabilities before they are exploited by attackers.

Learn more about "Vulnerability here;

https://brainly.com/question/30823480

#SPJ11

A vulnerability is a flaw or weakness in a system's design, implementation, operation, or management that could be exploited by attackers to violate the system's security policy. Vulnerabilities can exist in any type of system, including software, hardware, networks, and processes.

Vulnerabilities can arise due to a variety of reasons, such as programming errors, inadequate security controls, poor system design, lack of proper security testing, and insufficient security awareness or training. These weaknesses can be exploited by attackers to gain unauthorized access to a system or its data, steal sensitive information, disrupt or damage system operations, and carry out other malicious activities.

It's important to identify and mitigate vulnerabilities to protect systems and sensitive data from potential attacks. This can involve implementing security best practices, such as regularly updating software, using strong authentication mechanisms, and implementing intrusion detection and prevention systems. Additionally, conducting regular vulnerability assessments and penetration testing can help organizations proactively identify and address vulnerabilities before they are exploited by attackers.

Learn more about software here:

https://brainly.com/question/26649673

#SPJ11

What is Fill handle?

Answers

Answer: I copied and pasted my answer if you need the website to cite information let me know

Explanation:

Fill Handle is a feature in Excel that enables you to auto-complete a list in a row/column by simply dragging it using your mouse. A basic understanding of fill handle in Excel could save you some time and make you more productive.

A vending machine serves chips, fruit, nuts, juice, water, and coffee. The machine owner wants a daily report indicating what items sold that day. Given boolean values (1 or 0) indicating whether or not at least one of each item was sold, output a list for the owner. If all three snacks were sold, output "All snacks" instead of individual snacks. Likewise, output "All drinks" if appropriate. For coding simplicity, output a space after every item, even the last item. Ex: If the input is 0 0 1 1 1 0, output: Nuts Juice Water Ex: If the input is 1 1 1 0 0 1, output: All-snacks Coffee Ex: If the input is 1 1 1 1 1 1, output: All-snacks All-drinks Ex: If the input is 0 0 0 0 0 0, output: No items

Answers

Answer:

bool chipsSold, fruitSold, nutsSold; // Snack items

bool juiceSold, waterSold, coffeeSold; // Drink items

cin >> chipsSold;

cin >> fruitSold;

cin >> nutsSold;

cin >> juiceSold;

cin >> waterSold;

cin >> coffeeSold;

if(chipsSold == 1)

{

cout<<"Chips ";

}

else

{

return 0;

}

if(fruitSold == 1)

{

cout<<"Fruit ";

}

else

{

return 0;

}

if(nutsSold==1)

{

cout<<"Sold ";

}

else

{

return 0;

}

return 0;

}

How many stars are output when the following code is executed?for (int i = 0; i < 5; i++){ for (int j = 0; j < 10; j++) { System.out.println("*"); } }

Answers

When the given code is executed, the output will be 50 stars. This is because the code consists of two nested loops that are designed to print out asterisks. The outer loop iterates five times, while the inner loop iterates ten times for each iteration of the outer loop. This means that the inner loop will execute 10 times for each of the 5 iterations of the outer loop, resulting in 50 asterisks being printed out in total.

To understand this in more detail, let's break down the code. The outer loop initializes a variable 'i' to 0, and then checks if 'i' is less than 5. If it is, the loop runs the code inside it, increments 'i' by 1, and then repeats the process until 'i' is no longer less than 5.

Within the outer loop, there is an inner loop that initializes a variable 'j' to 0, and then checks if 'j' is less than 10. If it is, the loop prints out an asterisk using the System.out.println() method, increments 'j' by 1, and then repeats the process until 'j' is no longer less than 10.

So, the inner loop will execute 10 times for each iteration of the outer loop, resulting in a total of 50 asterisks being printed out.

Learn more about nested loops here:

https://brainly.com/question/29532999

#SPJ11

SXXSSSSSSSSSZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZZ

Answers

Answer:

okkkk

Explanation:

MARK ME BRAINLIEST PLZZZZZZZZZZZZZZZZZZZZZZZZzzzzzzzzzzzzzzzzzzzz

of the following choices, which one is a market mechanism for addressing climate change?

Answers

Carbon pricing is the market mechanism for addressing climate change.

Carbon pricing is a market mechanism for addressing climate change. A price is placed on the emissions of greenhouse gases such as carbon dioxide when carbon pricing is implemented. Carbon pricing is a cost-efficient means of lowering emissions and aiding the transition to a cleaner, more climate-resilient economy. In general, there are two forms of carbon pricing: carbon taxes and emissions trading schemes (ETS).

A carbon tax is a tax on the quantity of carbon dioxide (CO2) emitted as a result of burning fossil fuels. The goal is to raise the cost of carbon dioxide pollution so that people use less fossil fuel and turn to clean energy sources.

An emissions trading system (ETS) is a market-based tool that allows businesses to purchase and sell permits to emit greenhouse gases. A government sets a cap on the total quantity of greenhouse gases that may be released and then allocates or auctions off permits for businesses to emit a portion of the total. Businesses that emit less than their allotment can sell their excess permits to businesses that need more, resulting in a market for trading permits.

To learn more about climate change visit : https://brainly.com/question/1789619

#SPJ11

A person's alcohol or drug addiction____devastate the lives of those nearby.
A. is sure to
B. it unlikely to
C. doesn't

Answers

Answer:

A. is sure to

Explanation:

Alcholism affects not only your body but the people around you, due to how it can alter your behavior

1) According to the text, what is a common cause of collisions ?
O taking a call on a cell phone
O defensive driving
O checking your surroundings
O no answer applies
Oscanning for hazards
is a common cause of collisions.

Answers

Answer:

Taking a call on a cell phone.

A homeowner is planning to use carpet tiles to cover the floor of a room measuring 9 feet by 10 feet 8 inches. If the carpet tiles are 8 inches wide and 1 foot long and there are no gaps between the tiles as they are placed on the floor, how many carpet tiles will the homeowner need to cover the floor of the room?​

Answers

If the carpet tiles are 8 inches wide and 1 foot long, and there are no gaps between them as they are placed on the floor, the homeowner will need 144 carpet tiles to cover the floor of the room.

Given room dimensions of 9feet*10feet 8inch

tile dimensions of 8inch*1foot,

we can calculate

the number of tiles required. 1 foot=12 inch

number of tiles=area of room/area of tiles

               =(9*12)inch*(12*10+8)inch/8inch *12 inch

               =144

A homeowner is someone who owns a house or apartment in which they live.

This is the most common written policy for a homeowner, and it is intended to cover all aspects of the home, structure, and contents.

Most homeowner policies include replacement cost coverage for the home and actual cash value coverage for personal property.

A homeowner is someone who owns a house or apartment in which they live.

Learn more about homeowner here:

https://brainly.com/question/15243238

#SPJ4

For which of the following are music editors responsible? (Select all that apply).


editing a film’s score

structuring the soundtrack

shooting interiors

editing a film’s musical soundtrack

Answers

Answer:

A: structuring the soundtrack

B: editing a film's score

D: editing a films musical soundtrack

Explanation:

edg2021

(other test answers:

(all but "long-lasting shots of the characters speaking"

true (that film editors review footage and notes from director...)

computer graphics

it indicates an exterior shot of an urban street scene )

For which of the following are music editors responsible? (Select all that apply).editing a films scorestructuring

Which of the following is the primary mechanism for representing the content of a Web page?A. HTMLB. tagC. attributeD. cookieE. hypertext

Answers

The primary mechanism for representing the content of a web page is HTML, which stands for Hypertext Markup Language. The correct option is (a) HTML.

The primary mechanism for representing the content of a web page is HTML, which stands for Hypertext Markup Language. HTML is used to structure the content of a web page, including text, images, and other media, and to specify how that content should be displayed in a web browser. HTML uses tags and attributes to define the structure and appearance of content on a web page. Tags are used to define elements such as headings, paragraphs, and lists, while attributes provide additional information about those elements, such as the color or size of text. Hypertext is another important aspect of web pages, allowing users to navigate between pages and access different types of content. Overall, HTML is the foundation of modern web development and is essential for creating functional, well-designed web pages.

To know more about web page visit: https://brainly.com/question/30856617

#SPJ11

Which one of the following is not an importance of fungi?​

Answers

The correct answer to the given question about fungi is D) Contributing to climate change by releasing greenhouse gases.

What roles do fungi play?

While fungi play important roles in decomposing organic matter in the ecosystem, providing food for humans and animals, and producing antibiotics and other medicines, they do not directly contribute to climate change by releasing greenhouse gases.

In fact, some species of fungi can help mitigate climate change by sequestering carbon in the soil and as a result of this, the answer choice that is NOT an importance of fungi is option D because it does not release greenhouse gases.

Read more about fungi here:

https://brainly.com/question/10878050

#SPJ1

A) Decomposing organic matter in the ecosystem

B) Providing food for humans and animals

C) Producing antibiotics and other medicines

D) Contributing to climate change by releasing greenhouse gases

Annie has a three year old laptop. She is giving it a full service before selling it on. (a) Annie runs some 'Disk Health' utility software to check for any problems with her HDD. (i) Define what is meant by utility software.​

Answers

Utility computer program could be a sort of computer program that gives particular usefulness to help with the upkeep as well as the administration of a computer framework.

What is utility software?

Utility computer program is computer program planned to assist analyze, arrange, optimize or keep up a computer. It is utilized to back the computer foundation - in differentiate to application program, which is pointed at specifically performing assignments that advantage standard clients

Therefore the use of MS Word is an case of application computer program created by the company Microsoft. It permits clients to sort and spare archives. It is accommodating as well for making records.

Learn more about utility software from

https://brainly.com/question/30365102

#SPJ1

Which branch of study can help Jessica study the concept of light

Answers

Answer:

Physics, Quantum Mechanics

Explanation:

Light is a stream of photons with no weight. If you want to dig deeper in this mysterious phenomena, you should study physics and quantum mechanics. Physics takes up things like the theory of relativity, which can be useful in studying spacetime and how light travels through it, and quantum mechanics, being the study of matter in an atomic level, should help you get an understanding on how photons of light travel and why they behave so strangely.

Answer:

Physics

Explanation:

in a hypertext markup language (html) file, the markers are the codes that tell the browser how to format the text or graphics that will be displayed.

Answers

In an HTML file, the codes or tags are used to indicate how the content should be displayed in a web browser. These tags can be used to format text, insert images and graphics, create links, and more. By using HTML codes, web developers can create dynamic and interactive websites that can be viewed on any device with an internet connection. Graphics can be added to an HTML file using the tag, which allows images to be displayed on a webpage.

In an HTML file, tags or codes are utilized to specify the presentation of content in a web browser. These tags serve various purposes, including formatting text, inserting images and graphics, creating hyperlinks, and more. With HTML codes, web developers can design dynamic and interactive websites that are accessible across different devices connected to the internet. To incorporate graphics into an HTML file, the `<img>` tag is employed, enabling the display of images on web pages. By utilizing these tags effectively, developers can enhance the visual appeal and functionality of web content, resulting in engaging and visually appealing websites.

Learn more about HTML: https://brainly.com/question/4056554

#SPJ11

write a program that squares an integer and prints the result.

Answers

Computer programming is the process of creating instructions and coding to enable certain tasks in a computer, application, or software program.

Is programming for computers difficult?

Although it might seem challenging at first, learning to code is not tough. It could be challenging to learn something new at first. Coding gets easier with experience, perseverance, and patience. If you're considering learning to code, it's easy to become overwhelmed by the difficulty.

import java.util.Scanner;

class Main

{

public static void main(String[] args)  

{

  System.out.println(" Enter the the two numbers:");

   Scanner input = new Scanner(System.in);

    int a = input.nextInt();

    int b = input.nextInt();

    int c = sumsquareFunction(a, b);

    }

sumsquareFunction(int n1, int n2) is a public static int.

    int c= n1*n1 + n2*n2;

    return c;  

 }

}

To know more about programming visit:-

https://brainly.com/question/11023419

#SPJ4

__ store information about the current session, your general preferences, and your activity on the website.

Answers

A first-party cookies  store information about the current session, your general preferences, and your activity on the website.

What is First-party cookies?

The website (or domain) you visit is directly responsible for storing first-party cookies. These cookies enable website owners to gather analytics information, remember language preferences, and carry out other beneficial tasks that enhance user experience.

Therefore, Only the website you are currently visiting can create (and read) cookies that are classified as first-party cookies. First-party cookies are frequently used by websites to record data about your browsing history, preferences in general, and the current session. These cookies are used to deliver a customized experience on a certain website.

Learn more about cookies   from

https://brainly.com/question/1308950
#SPJ1

Which of the following is one of the tools in REPL.it that helps prevent syntax errors?
It adds closing quotes and parentheses if you type the opening ones.
It changes your binary input to the decimal system.
It allows you to see the interpreter’s algorithm.
It limits the pixel resolution.

Answers

Answer:

A. It adds closing quotes and parentheses if you type the opening ones.

Explanation:

Answer:

Yes the answer is A got a 100% hope you get a 100% too have a good day:)

Explanation:

A proprietary software license allows users to install and use the software on any number of computers. install and use the software after agreeing to the terms of the license. inspect, modify, and redistribute the software. copyright and resell the software.

Answers

Answer:

install and use the software after agreeing to the terms of the license.

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 how to perform a specific task and to solve a particular problem.

Basically, softwares are categorized into two (2) main categories and these are;

I. Open-source software.

II. Proprietary software.

A proprietary software is also known as a closed-source software and it can be defined as any software application or program that has its source code copyrighted and as such cannot be used, modified or distributed without authorization from the software developer. Thus, it is typically published as a commercial software that may be sold, licensed or leased by the software developer (vendor) to the end users with terms and conditions.

Some examples of proprietary software are Microsoft Windows, macOS, Adobe photoshop etc.

Hence, a proprietary software license allows users to install and use the software after agreeing to the terms of the license.

A proprietary software license allows users to install and use the software after agreeing to the terms of the license.

Thus, option (b) is correct.

Users are required to agree to these terms before they can legally install and use the proprietary software. The license agreement may outline specific restrictions, limitations, and permitted usage scenarios.

Installing and using the software on any number of computers: This is not necessarily true for proprietary software.

Inspecting, modifying, and redistributing the software: These activities are typically not allowed under a proprietary software license, as they generally provide limited or no access to the source code and impose restrictions on modifications and redistribution.

Copyrighting and reselling the software: These rights are typically retained by the software's copyright holder and are not granted to users under a proprietary software license.

Therefore, install and use the software after agreeing to the terms of the license.

Thus, option (b) is correct.

Learn more about Software installation here:

https://brainly.com/question/7548929

#SPJ6

The question attached are seems to be incomplete, the complete question is:

A proprietary software license allows users to :

install and use the software on any number of computers.install and use the software after agreeing to the terms of the license.inspect, modify, and redistribute the software.copyright and resell the software.

How a Programmatic NEPA Review (for our purposes this will be a
Programmatic EIS) differs from an EIS (referred to as a project
level EIS)?

Answers

A Programmatic NEPA Review, or Programmatic Environmental Impact Statement (PEIS), differs from a project-level Environmental Impact Statement (EIS) in several ways. The main differences include the scope and level of detail involved in each type of analysis.  


The key differences between a Programmatic NEPA Review (Programmatic EIS) and a project-level EIS are as follows:
1. Scope: A Programmatic NEPA Review (Programmatic EIS) examines the impacts of an entire program, policy, or regulatory decision and covers a wide range of potential future actions, while a project-level EIS is site-specific and focuses on the impacts of a specific project.


2. Level of Detail: A Programmatic NEPA Review (Programmatic EIS) provides a broader analysis of environmental impacts .
3. Timeframe: A Programmatic NEPA Review (Programmatic EIS) covers a longer time frame and is typically completed before any specific projects are proposed .

4. Decision-Making: A Programmatic NEPA Review (Programmatic EIS) can help inform decision-making at a higher level .
5. Flexibility: A Programmatic NEPA Review (Programmatic EIS) provides greater flexibility in the implementation of future projects .

To know more about Programmatic  visit:-

https://brainly.com/question/30778084

#SPJ11

Write a program that continually reads user input (numbers)
until a multiple of 7 is provided. This functionality must be
written in a separate function, not in main().

Answers

Here is a Python program that continually reads user input (numbers) until a multiple of 7 is provided. This functionality is written in a separate function, not in main(). The program uses a while loop to keep reading input until the user enters a multiple of 7:```def read_until_multiple_of_7():

x = int(input("Enter a number: "))  

while x % 7 != 0:    

x = int(input("Enter another number: "))  print("Multiple of 7 detected: ", x)```Here's how the code works:1. The function `read_until_multiple_of_7()` is defined.2. The variable `x` is initialized to the integer value entered by the user.3. A while loop is used to keep reading input until the user enters a multiple of 7.

The loop condition is `x % 7 != 0`, which means "while x is not a multiple of 7".4. Inside the loop, the user is prompted to enter another number. The input is read as an integer and stored in the variable `x`.5. When the user finally enters a multiple of 7, the loop exits and the function prints a message indicating that a multiple of 7 was detected, along with the value of `x`.Note: Make sure to call the `read_until_multiple_of_7()` function from your `main()` function or from the interactive interpreter to test it out.

To know more about Python visit:

https://brainly.com/question/30391554

#SPJ11

Why do programmers define their own functions in a program?

Answers

Creating your own functions allows you to organize your code into smaller chunks and treat complicated tasks as a single step.

Why do we need to create our own functions in the program?A big program can be divided into a number of smaller, self-contained pieces by using programmer-defined functions. In other words, by making wise use of programmer-defined functions, a C program may be made modular. Compared to monolithic programs, modular programs are often more simpler to create and debug.You may divide your code into smaller sections and handle challenging tasks as a single step by writing your own functions. You can perform more complex tasks like animations and user input by creating functions.Simply said, a function is a "chunk" of code that you may reuse again rather than having to write it out several times. Programmers can divide an issue into smaller, more manageable parts, each of which can carry out a specific job, using functions.

Learn more about user defined functions refer to :

https://brainly.com/question/13041454

#SPJ1

When opening a new scene in PlayCanvas, which of the following objects in automatically included

Answers

When opening a new scene in PlayCanvas, the objects that is  automatically included is a box, cylinder or cone.

What is PlayCanvas?

This is known to be a kind of a Computer application. The  PlayCanvas is said to be a form of an open-source 3D game engine and it is known to have a interactive 3D application engine with a proprietary cloud-hosted creation means that aids in the simultaneous editing from a lot of computers via the  use of a  browser-based interface.

Hence,  When opening a new scene in PlayCanvas, the objects that is  automatically included is a box, cylinder or cone.

Learn more about Games from

https://brainly.com/question/27355039

#SPJ1

Other Questions
A movement that began in italy as a reaction to the impact of globalization on the quality of daily urban life promotes. Difference between Plato and Jefferson education theory Multiply or divide as indicated.10x^5 divide 2x^2 John started his employment with a salary of Sh. 120,000 per annum which was increasedby Sh. 10,000 every year up to the top of the scale of Sh. 1,500,000 per annum.REQUIREDi. In how many years time does he reach to the top scale? (3 marks)ii. What is the total amount he would earn during this period Are 8:12 and 4:5 equivalent? Please answer I need help. At Jim's Hats, there are 6 baseball caps and 54 other hats. What percentage of the hats are baseball caps? Polyphony is based on the principle of musical ideas exchanged between vocal lines. group of answer choices a. true b. false Which statements are always true regarding the diagram? Select three options. m5 + m3 = m4 m3 + m4 + m5 = 180 m5 + m6 =180 m2 + m3 = m6 m2 + m3 + m5 = 180 Area of a square is 64 sq cm.Its perimeter is _______ if investors believe that capital markets are unfair such that only insiders can be successful then: Do you think employers have a right to take away an employee or associates phone upon entering their premises? Does this have a positive or negative impact on efficiency and productivity? What are the ethical and privacy implications for the employer and employee? Find an article that supports your opinion. If you were the employer, what policy would you have regarding phones and social media while in your establishment and why. help please-At a sale, coats were sold for $17 each. If the coats originally cost $20 each, what percentage of its original price was a coat sold for? Suzana is the independent non-executive director of Melisa Bhd, a plantation company. Malim Bhd is known as a rival of Melisa Bhd. Suzana unintentionally shares the strategies of Melisa Bhd in submitting a proposal to get the government contract to Azman, her old friend who is now working with Malim Bhd as general manager. From this scenario, assess the fundamental principles possibly violated by Suzana. _______ refers to making the text on the page look different in order for words and phrases to stand out. which system of linear equations can be solved using the information below? Dory's shadow is 1.25m. She stands 4.75m away from the base of the tree, so the tip of her shadow matches the tip of the tree's shadow. Dory is 1.6m tall. How tall is the tree in meters? if u answer this thx so much also its worth 20 points Review the literature on urban economics, critically discuss theeconomists approach to addressing pollution. Be sure to considerboth price -based solutions and quality -based solutions in youran Do you think the United States will continue to be theworld's most influential power? In one or twoparagraphs, explain why or why not. Solve the following problems -10+2 That Ghulam Ali was certainly a good man, so patient with us and so compassionate. He had never seen us before, and yet when he met us, he said, I will help you. Thats the thing about life. You never know when and where you will encounter a spot of human decency. I have felt alone in this world at times; I have known long periods of being no one. But then, without warning, a person like Ghulam Ali just turns up and says, I see you. I am on your side. Strangers have been kind to me when it mattered most. That sustains a persons hope and faith.Based on the conclusion, how do you think the author feels about humanity? a. She thinks Ghulam Ali is the only good person she knowsb. She is disappointed by humanitys indifference to people in need.c. She accepts that most people are cruel and self-absorbed.d. She believes that people are capable of great kindness.