Now that you have a company and an external factor (Monsanto and GMOs, for example), the next step is to research your companyâs activities during the past six to twelve months, as they relate to this external factor. You will want to start at the companyâs Web site. Find out what the company owners and managers are doing/saying about the issue. Consider the stakeholders, as well, and look for information on how they are influencing company reaction/action.
For Discussion
Using the research you performed in the preparation steps, craft your initial discussion posting. In this initial post you will:
In: Economics
please answer as soon as possible
A 52-year-old male presented to the emergency department complaining of muscle pain and weakness for the last two day. He also noticed that his urine is becoming dark (red to brown). The patient has no history of accidents or trauma and no symptoms of anemia. The patient is known to have history of hypertension, Type II diabetes, hypercholesterolemia, and ischemic heart disease. 5-weeks before he came to the emergency he had suffered a myocardial infarction. He was treated in the intensive care unit for two weeks. He recovered well and was discharged with his regular medications except that oral atorvastatin 40 mg/day was added. At that time doctors explained to him that it was becoming more difficult to control his cholesterol levels using dietary measures only, thus they added the new medicine. On examination his muscles were painful to pressure (tenderness). He has no jaundice or abnormal skin coloration. He has no signs of anemia. The blood testing results including blood cell counts, hemoglobin levels, and total bilirubin levels are all normal. Kidney function tests and urine analysis were ordered and the treating doctor is awaiting results.
In: Nursing
|
antibiotic |
beta-blocker |
bisphosphonate |
calcium channel blocker |
|
caffeine |
cathartic |
diuretic |
emetic |
|
glucocorticoid |
hypnotic |
purgative |
sedative |
|
narc/o |
pyret/o |
erythr/o |
thec/o |
|
pharmac/o |
tox/o |
myc/o |
prurit/o |
|
chem/o |
aer/o |
erg/o |
iatr/o |
|
anti- |
intra- |
-logy |
-al |
|
-y |
-therapy |
-ism |
-ous |
|
bi/o |
vas/o |
syn- |
|
vit/o |
ven/o |
ana- |
|
par- |
anti- |
contra- |
In: Nursing
Please complete the following code in challenge.c. The code for main.c and challenge.h is below that. (Don't edit main.c or challenge.h, only edit challenge.c) The instructions are in the comments. Hint: the_person is declared in main, so you need to define it in challenge.c using extern
challenge.c
#include "challenge.h"
//return: struct
//param: (struct person p1, struct person p2)
//TODO: create a function that returns the person who has a higher GPA.
// 1. if GPAs are equal, then return the first person (the first parameter).
// Hint: this function can only be called in the file where it is declared, so You might need to put a key word before the function declaration.
struct person compareTo(struct person p1, struct person p2) {
return null;
}
//return: void
//param: (struct person persons[], int len)
//TODO: create a function that assign the person who has the highest GPA to the variable the_person defined in main.c.
// 1. use compareTo() function to find the person who has the highest GPA.
// 2. update the value of the_person in main function to the person.
// Hint: this function can only be called in the file where it is declared, so You might need to put a key word before the function declaration.
void find_the_person(struct person persons[], int len) {
}
main.c
#include "challenge.h"
struct person the_person;
// return the person who is older.
struct person compareTo(struct person p1, struct person p2){
if (p1.age >= p2.age){
return p1;
}
return p2;
}
// return the oldest person.
// update the value of the_person to the oldest person.
void find_the_person(struct person persons[], int len){
if (len <= 0) return;
the_person = persons[0];
for(int i = 1; i < len; i++){
the_person = compareTo(the_person, persons[i]);
}
}
// main function for non-test code
// This exists solely for the benefit of the students to test their own code
int main()
{
printf("Hello, World\n");
}
challenge.h
#include <stdio.h>
#ifndef CH_HEAD
#define CH_HEAD
struct person {
char name[20];
int age;
double GPA;
};
#endif
In: Computer Science
You should have at least 20 substantive journal entries (use roughly 110+ words as an average length for an entry, or a total of about 2,200 words). You can get extra credit points for doing extra or extended entries, but you will lose points if your journal entries are excessively late or excessively short.
Talk with your classmates, friends, and family: What are their thoughts on various sexual issues? Examples: your sexual activities vs. theirs, why or why not to have sex, how young and how long to wait before having sex, number of partners, monogamy, multiple partners, open relationships, your first time, friends with benefits, sex outside a committed relationship, sexual fantasies, talking with partners about your sexual history, talking about sex with your children when you have them, what your parents told you, where and how you learned about sex, masturbation, contraceptive practices, condom use, abortion, sexual satisfaction, homosexuality, bisexuality, heterosexuality, transsexuality, gender roles, celibacy, abstinence until marriage, HIV/AIDS/STDs, kinky sex, abusive relationships, mixed messages when people who say no when they mean yes or say yes when they mean no, dating, breaking up, interracial/ethnic/religious/generational dating and relationships, womenâs vs. menâs sex talk and pornography, having and faking orgasms, sexual experience, ease of meeting partners, good girls/boys vs. bad girls/boys, what you are looking for in relationships, what attracts you, being a good partner, sexual boredom, expectations, keeping him/her interested, taking or being taken for granted, disagreements with partners and fighting fair, hooking up, love, other topics raised in the textbook, videos, your own or your friendsâ lives, or elsewhere.
EACH JOURNALS MUST Be dated to whatever date
Make sure its in word document- Each journal need to 110+ word and make sure we have 20
In: Psychology
Write a class called Name. A tester program is provided in Codecheck, but there is no starting code for the Name class.
The constructor takes a String parameter representing a person's full name. A name can have multiple words, separated by single spaces. The only non-letter characters in a name will be spaces or -, but not ending with either of them.
The class has the following methods. ⢠public String getName() Gets the name string.
⢠public int consonants() Gets the number of consonants in the name. A consonant is any character that is not a vowel, the space or -. For this problem assume the vowels are aeiou. Ignore case. "a" and "A" are both vowels. "b" and "B" are both consonants. You can have only one if statement in the method and the if condition cannot have either && or ||. Do not use the switch statement, which is basically the same as an if statement with multiple alternatives. Hint: call method contains().
⢠public String initials() Gets the initials of the name. Do not use nested loops for the method. Hint for initials(): Each word after the first is preceded by a space. You can use the String method indexOf (" ", fromIndex) to control a while loop and to determine where a new word starts. This version of indexOf() returns the index of the first space starting at the fromIndex. The call of indexOf (" ", fromIndex) returns -1 if the space is not found in the string. Remember that the name does not have 2 consecutive spaces and does not end in a space.
CODE CHECK:
public class NameTester
{
public static void main(String[] args)
{
Name name = new Name("Allison Chung");
System.out.println(name.getName());
System.out.println("Expected: Allison Chung");
System.out.println(name.consonants());
System.out.println("Expected: 8");
name = new Name("a-abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ");
System.out.println(name.getName());
System.out.println("Expected: a-abcdefghijklmnopqrstuvwxyz ABCDEFGHIJKLMNOPQRSTUVWXYZ");
System.out.println(name.consonants());
System.out.println("Expected: 42");
name = new Name("Alhambra Cohen");
System.out.println(name.initials());
System.out.println("Expected: AC");
name = new Name("George H W Bush");
System.out.println(name.initials());
System.out.println("Expected: GHWB");
name = new Name("John Jacob Jingleheimer Schmidt");
System.out.println(name.initials());
System.out.println("Expected: JJJS");
name = new Name("Zorro");
System.out.println(name.initials());
System.out.println("Expected: Z");
}
}In: Computer Science
1.Suppose a dictionary Groceries maps items to quantities.
Write a python to print the names of the grocery items whose quantity exceeds 400.
For example, if groceries = {âcake mixesâ: 430, âcheeseâ:312, âOrangeâ:525, âcandy barsâ: 217}
The output will be
Cake mixes
Orange
2. which Python string method would be the best choice to print the number of time âtheâ occurs in a sentence entered by the user?
Provide a one word answer. Just name the string method.
3. write a python statement that print a massage about a persons bonus which is based on the number of years (assume its stored in numYears) that they have worked for a company?
0-5 years = â1% of gross payâ
6-10 years = â2% of gross payâ
More than 10 years = â5% of gross payâ
4. write a python state to decrement the item in the fourth position in myList by 2.
myList=[10,20,30,40,50]
5. write a python code to print the number of even numbers of integers divisible by 3
Example someList= [10, 11, 22, 16, 9, 15]
Output should be:
Number of even: 3
Number of items divisible by three: 2
6. write a python statement to decrease salary by 5% when sales in below 100
7. write a python function called isValideNumber: which accepts 3 paramters:
a. number can be any integer
b. lowerLimit can be any integer
c. upperLimit can be any integer
description:
8. which string method would be used to create a list of words from a sentence entered by the use.
Note: just provide a one-word answer, just the name of the method
9. suppose a dictionary called Inventory pairs fruit with the quantity of that fruit. Print the Total of the quantities of the item in the dictionary.
In: Computer Science
This program is used to split the input based on the delimiter. Change the code below so that the parse function should return an array that contains each piece of the word. For example, the input to the function would be something like 'aa:bbbA:c,' which would be a char *. The function's output would then be a char ** where each element in the array is a char *. For this example, it would return some result where result[0] = 'aa', result[1] = 'bbbA', and result [2] = 'c'. So instead of doing the printing in the parse func, return each piece of the word, pass it to the main function, then do the printing in the main
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
void parsefunc (char, char*);
int string_length (char*);
char* my_strncpy (char*, const char*, unsigned int);
//Main Fucntion
int main(int argc, char *argv[] ) {
if(argc == 1 || argc == 2){
printf("Not enough arguments,
please enter three agruments with program name, delimiter and text!
\n");
}
else{
parsefunc(*argv[1], argv[2]);
}
}
//This function is used to splip up the string and print the
results
void parsefunc(char delimeter, char *input){
int count = 0;
int current = 0;
int length = strlen(input);
//Loop through the string
for (int i = 0; i < length; i++){
//Check for delimiter
if(input[i] == delimeter){
char* tempString = malloc(sizeof(char) * (count + 1));
strncpy(tempString, input+current, count);
tempString[count+1] = '\0';
//printf("%d\n", current);
current += count+1;
printf("%s Length %d\n", tempString, count);
count = 0;
free(tempString);
}
//Check for delimiter
else if(input[i+1] == '\0'){
char* tempString = malloc(sizeof(char) * (count + 1));
strncpy(tempString, input+current, count+1);
tempString[count+1] = '\0';
//printf("%d\n", current);
current += count+1;
printf("%s Length %d\n", tempString, count+1);
free(tempString);
}else{
count++;
}
}
}
In: Computer Science
This assignment is about the article âIâm not a racist butâŚâ by Neil Bissoondath. The article is available on ecentennial under ereserve. You may also wish to refer to readings on ecentennial under âclass 1â and âclass 2.â
Part 1: Context. /6
______________________________________________________________________________________________________________________________________________________________________________________________________________________________
______________________________________________________________________________________________________________________________________________________________________________________________________________________________
______________________________________________________________________________________________________________________________________________________________________________________________________________________________
Part 2: Modes. /2
Bissoondath uses blended modes in his essay âIâm not a racist butâŚâ Mention ONE mode that he uses and give an example .
______________________________________________________________________________________________________________________________________________________________________________________________________________________________
Part 3: /3
Refer to your literary devices list (on ecentennial under <content> <class 2>) and answer the questions below:
a.) __________________________________________________________________________________________________________________________________________
b.) __________________________________________________________________________________________________________________________________________
Part 4: Reading for Understanding /4
Highlight the best answer. (1 mark each)
a.) the media
b.) family influences
c.) willful ignorance and acceptance of stereotypes
d.) use of stereotypes
a.) racists
b.) bigots
c.) people with a lack of experience
d.) people who are willfully ignorant about stereotypes
a.) indulges in stereotype
b.) is only in Canada
c.) is great
d.) discounts personal experience
a.) We must be careful about how we use the word racism
b.) Racism is an international problem
c.) We have to be conscious of our own responses to racism
d.) Racism is an individual problem
In: Biology
Mr. Bailey has approached you regarding an opportunity he has to become a homeowner. Mr. Bailey has asked you to perform a financial analysis to determine if this would be a wise move to purchase the new condominium, or if he should continue to rent. You will create an Excel spreadsheet and a written Word document to explain the results for Mr. Bailey.
Currently he rents a downtown condominium for $2500 per month. A neighboring unit has recently gone onto the market for $500,000. Mr. Bailey feels that this would make a great investment for him and it would make sense to stop renting and purchase this unit. Mr. Bailey can put down 20% on the new unit. He will assume a 30-year mortgage for the condominium with a 6% APR. Mr. Bailey plans to remain in the condominium for 5 years and then sell and move to suburban Berkshire Farms.
Financial Details
If Mr. Bailey purchases the condo, he will have additional monthly
fees of:
$1000 HOA fee (maintenance, pool, health club)
$300 property taxes
$100 repairs
You have reviewed real estate trends and have determined that over 5 years the condo will appreciate approximately 3% per year. When he sells the condo, you estimate that he will pay 5% in commission and an additional $2,000 in closing costs.
Excel Spreadsheet:
Word Document:
In a professional 3- 5 page written analysis explain the results of your findings for Mr. Bailey. Provide a detailed written explanation of your calculations for the present value of the proceeds if he were to sell the property in 5 years. In addition, provide an explanation of the importance of the time value of money and the key decisions to be made in this buy versus rent decision. You should also include qualitative decisions to consider in this scenario for Mr. Bailey (e.g. what are some factors which influence this buy versus rent decision which should be considered).
In: Accounting