personal biography

I got promotion from my company but I don’t know how to write short biography in 1/2 pages. Please help me. Here my information:

1. Name: Tran Pham

2. Came from Vietnam in 2012

3. Education: Get A.S degree in Business Administration major at Evergreen Valley College on May, 2013.

Get B.S degree in Finance at San Jose State University on Dec, 2018.

4. Careers: Customer service at Pizza Hut Restaurant in 2013

Teaching Assistant for Philosophy professor at San Jose State University on Jan, 2018

5. WFG career: joined WFG on May 2015 because I want to learn more Finance classes outside school and become Financial Independent. I was busy in college and got struggles in WFG, so I stopped temporarily in WFG for 3 year. I came back WFG on Dec, 2018 and running Marketing Director position.

6. Goals in WFG: help my family and people become financial freedom. Personal goal: travel around the world with my big family without worry about finance, and become millionaire in WFG. Do charity in Vietnam, that 3 “WHY” I joined WFG.

week 8 discussion 26

Discussion 1:

Find a current event in the past 6 months in which a business failed to protect consumers. Post your URL link. Provide the name of the company & the issue. Do your findings change the way you will support the company in the future?

Discussion 2:

Choose an article and any topic about Diversity in the workplace that you want to discuss. Diversity includes age, gender, race, ethnicity, religion, etc.. Perhaps you want to look at the most pressing and significant concern(s) about Diversity in today’s workplace. Why did you choose this topic and why do you think so? Be sure to post your article URL.

world-history-to-1500-3

Citing specific examples, defend or refute one of the following statements:

1. The Mongol Invasions of the 13th Century C positively impacted humanity.
2. History was made by civilizations in climate zones where agriculture was possible (e.g., Egypt, the Fertile Crescent, the Indo Gangetic Plain, the Yellow and Yangtze River Valleys, etc.); marginal peoples from north or south of this zone contributed nothing to human history.
OR
Answer the following question:
3. What is the most important non-human force in the making of history: trade, disease, philosophy, climate, religion, or something else? Why? (Pick one to defend, but make sure to discuss at least three). 

newtons law s force and motion

This is a 5th grade assignment so it does not have to be elaborate just something very basic. We don’t have time to complete it because we had death in the family and we have to travel.

Create a slide show that explains what you have learned about forces and motion.

Create another slide show of important vocabulary. Use pictures, examples, and words to show the definitions.

Who is Sir Isaac Newton?

Link 1

Link 2

Link 3

Laws of Motion for Kids

Laws of Motion

Newton’s 1st Law of Motion

1st Law

Video

Newton’s 2nd Law of Motion

2nd Law

Video

Newton’s 3rd Law of Motion

3rd Law

Video

Gravity

Gravity

Force

And

Motion

https://www.dkfindout.com/us/science/forces-and-motion/gravity/

Friction

Friction

Friction Ramp

Games

Game Fun!

Forces in Action

Videos

Force and Motion Science for Kids

Force and Motion Roller Coaster

Research

Forces and Motion Info

See It Work!

Force and Motion Study Jams

Study Jams

Experiments

Experiment!!

Show What You Know!

Create a slide show that explains what you have learned about forces and motion.

Create another slide show of important vocabulary. Use pictures, examples, and words to show the definitions.

national-cultural-orientation

Select your own country of nationality to do this assignment. You are to write an essay analyzing your own culture from the perspective of its components studied in class and from the business culture view.

Part A: Components of national culture.

As you have learned in this course, the culture of a country is made up of several layers, such as artifacts, symbols, language, rituals, norms/customs/traditions, values and beliefs. You are to reflectively think of your own culture and describe how each of the components mentioned above is actionable within your culture (i.e. give specific examples). This assignment is personal (not to worry- it is confidential), because I want you to express who you really are/belief in and what aspect of what you do reflect your own culture. I want you to be original and authentic in your answer. Make sure you clearly specify and cover each component.

Part B:

Discuss the national culture dimensions of your country using Hofstede’s framework . Compare Countries (Links to an external site.)Links to an external site. by entering your country of nationality in the Type a country search. A graph with the six dimensions for your country will be displayed; cut and paste the image into part B.

Tap on “Read More about chosen country”. For each of the six dimensions presented you will see some interpretation of what it generally means for the country. Take at least three of these descriptions (cut and paste it), and with a concrete example of your own, support the assertion being made in the description.

For example:

Uncertainty Avoidance Assessment for country XXXX:

“At 80, XXXX has a high score on Uncertainty Avoidance which means that as a nation they are seeking mechanisms to avoid ambiguity. Emotions are openly expressed; there are (extensive) rules for everything and social conservatism enjoys quite a following. This is also reflected in religion, which is respected, followed by many and conservative. Rules are not necessarily followed, however: this depends on the in-group’s opinion, on whether the group feels the rules are applicable to their members and it depends, ultimately, on the decision of power holders, who make their own rules. In work terms this results in detailed planning that may not necessarily be followed in practice”

My own concrete example to support this assertion:

Life is hard in my country because of …….. Therefore, people stopped worrying about the future, or even planning for it. Instead they ……. There are laws about everything but……

Note: If your country of nationality is not on the list, choose a nearby country or one you are familiar with.

Part C:

Share a specific, concrete story where any of the topics above can be seen in action. In other words, recount a situation or anecdote either from personal experience or from that of friends/relatives where the theory studied so far comes alive and is illustrated. The anecdote can be an observation, a funny situation, or a cultural blunder/pitfall where you learned a lesson which made you understand different orientations, values or points of view.

use india or greece as country

guessing-game-2

Guessing Game

Add to the questioning below to include a human being and an insect, add extra code as needed. Clearly comment every line for what is happening.

// add to the questioning below to include a human being and an insect
// add extra code as needed
// clearly comment every line for what is happening
import javax.swing.JOptionPane;
public class ThinkingOf
{
public static void main(String args[])
{
String[] questions = new String[100];
String[] answers = new String[100];
String yourAnimal = new String();
String yourQuestion = new String();
boolean isDone = false;
boolean wantToPlay = true;
int answer;
int total = 100;
int pos = 0, oldPos = 0;
int yesPos = 1, noPos = 2;
// change the questioning to include a human being and an insect
questions[pos] = "Does the animal you are thinking of have legs?";
questions[1] = "Is it a dog?";
questions[2] = "Is it a fish?";
answers[1] = "dog";
answers[2] = "fish";
while(wantToPlay)
{
pos = 0;
isDone = false;
while(isDone == false)
{
answer = JOptionPane.showConfirmDialog (null, questions[pos]);
oldPos = pos;
yesPos = pos * 2 + 1;
noPos = pos * 2 + 2;
if(answer == JOptionPane.YES_OPTION)
pos = yesPos;
else
pos = noPos;
if(questions[pos] == null)
{
if(answer == JOptionPane.YES_OPTION)
{
JOptionPane.showMessageDialog(null,"Yay! I win!");
isDone = true;
pos = 0;
}
else
{
yourAnimal = JOptionPane.showInputDialog(null,"I give up.nWhat was

your animal?");
yourQuestion = JOptionPane.showInputDialog(null,"Type a question for which the

answer is Yes for " + answers[oldPos] + "nbut No for " + yourAnimal + ".");
questions[yesPos] = questions[oldPos];
questions[oldPos] = yourQuestion;
questions[noPos] = "Is it a " + yourAnimal + "?";
answers[yesPos] = answers[oldPos];
answers[noPos] = yourAnimal;
isDone = true;
pos = 0;
}
}
}
answer = JOptionPane.showConfirmDialog(null,"Do you want to play again?");
wantToPlay = (answer == JOptionPane.YES_OPTION);
}
}
}

Submission Details:

  • Create the code and sample run files as described.

funding-proposals-2

Choose a health care law or policy for this week’s assignment and create a proposal or presentation for continued funding of a related program.

Create two separate proposals, one that addresses liberal viewpoints and one that addresses conservative viewpoints.

Convince each group that continued funding is essential to the well being of its recipients.

The health care law or public health policy chosen for this assignment can be either an existing, pending, or proposed law or policy.

Once you choose a law or policy, you will need to describe each party platform in general (i.e. conservative and liberal party platforms). Then, you will need to present a persuasive discussion to each party for why the program you are presenting (i.e. a public health program that funds vaccines) should continue, appealing to each party (“how the program advances the party agenda”). The “data related to the target population outcomes”, can be statistics for or against your chosen program.

Address the following in each proposal:

  • The party platform principles
  • How the program advances the party agenda
  • Program data related to target population outcomes

Format your proposals as a 900-word paper

Provide at least 3 current (within the last three years), scholarly references

research on multiple sclerosis

Multiple sclerosis is a condition that affects the central nervous system. In this assignment, you will explore this condition in more detail using the scenario below.

Scenario:
A friend of yours discloses that he was recently diagnosed with multiple sclerosis. Being the caring friend you are, you wish to know more about the condition and how you can best support your friend. You decide to research this disease further.

To complete this assignment, do the following:

  1. Research this disease using a minimum of 2 sources. You can use your textbook for one of the sources. Choose the remaining source(s) from the GALE Virtual Reference Library provided on the Structure and Function of the Human Body library guide page.
  2. In a minimum of 2 pages (not counting the references page), address the following:
    • Explain how multiple sclerosis affects the nervous system.
    • Describe the treatment options that are available for your friend.
    • State whether it was possible for your friend to have prevented this condition.
  3. Include a references page at the end of your document, formatted using the APA guidelines, that lists your research sources.

various forms of the t test 1

In what research situations should the paired samples t test be used rather than the independent samples t test?

Response Guidelines

Provide a substantive contribution that advances the discussion in a meaningful way by identifying strengths of the posting, challenging assumptions, and asking clarifying questions. Your response is expected to reference the assigned readings, as well as other theoretical, empirical, or professional literature to support your views and writings. Reference your sources using standard APA guidelines. Review the Participation Guidelines section of the Discussion Participation Scoring Guide to gain an understanding of what is required in a substantive response.

  • PSY learners, you are required to respond to at least two of your peers’ posts.
  • Learners from all other programs, you are required to respond to at least one of your peers’ posts.

Learning Components

This activity will help you achieve the following learning components:

  • Evaluate research situations using the t test

fashion-history-assignment

The detailed requirements are in the pdf. Please check all instructions and research relevant information if necessary.