I would say "B. Who is the enemy?" , because of its generalization and vagueness. I recommend looking deeper into the definitions, but who is the enemy is definitely my choice.
Options:
a. sustainability
b. cause-related
c. social
d. green
Answer:
<u>cause-related</u>
<u>Explanation:</u>
We need to take note that Chili's support for St. Jude Children's Hospital isn't all about promoting their brand, but towards promoting a social cause, namely St. Jude's School Program which would ensure children receiving medical care in the hospital can stay up-to-date with their school assignments.
Their actions as a popular restaurant chain could go a long way by encouraging other companies to support social causes.
Answer:
Cash= 87,910 + 9.3*direct labor hour
Explanation:
Giving the following information:
The variable overhead rate is $9.30 per direct labor-hour. The company's budgeted fixed manufacturing overhead is $106,140 per month, which includes depreciation of $18,230.
Cash= (106,140 - 18,230) + 9.3*direct labor hour
Cash= 87,910 + 9.3*direct labor hour
I believe the answer would be $126,000 because 3,000*7*6 equals 126,000. I may have done it wrong since I haven't done this in a while.
The correct answer for the for loop is:
for (int i=1; i<200; i++){
if ((i%2)==0 && (i%3)==0){
cout << i << " ";
}
}
Python offers three options for running the loops. For iterating repeatedly through a sequence, use a for loop (that is either a list, a tuple, a dictionary, a set, or a string). This functions more like an iterator method seen in other object-oriented programming languages and is less like the for keyword found in other programming languages. The for loop allows us to run a series of instructions once for each element of a list, tuple, set, etc. There is no need to set an indexing variable before using the for loop.
Write a for loop that prints, in ascending order, all the positive integers less than 200 that are divisible by both 2 and 3, separated by spaces.
Learn more about loops here:
brainly.com/question/25955539
#SPJ4