Read the article titled Ends Justify Means Every Time, located at http://www.officer.com/article/10232601/ends-justify-means-every-time. Next, explain at least two (2) critical decisions you may have to make during your chosen career in criminal justice.
Based on the article, decide whether you agree or disagree with the statement, Any compromise between good and evil only hurts the good and helps the evil. Discuss one (1) situation where this would or would not be true, and explain your rationale.
Day: February 17, 2020
Visit the International Society for Technology in Education (ISTE) website to learn about their standards. Click the link below. Once you review the standards choose (2) standards to write a three page paper on how you will use these standards as a classroom teacher. Explain in detail specific instructional strategies you will use inside the classroom to ensure you are using the standards with fidelity. In addition, share your perception on why these standards are essential for 21st century learners. Use (3) sources of academic research to support your thoughts. Please use the APA style to develop the paper.
http://www.iste.org/standards/iste-standards/standards-for-teachers
The God of the Jews, Moses 10 Commandments, the teachings of The Buddha, the 12 Vows of Jainism, and Confucius Virtues.
Please respond to the following:
One of the criticisms of the Hebrew Bible is the violence of God. Scriptures from other religions (Hinduism: The Bhagavad Gita is set entirely in war; the Quran talks of war; Christianity is based on a final battle and destruction of the world) depict their gods as violent as well. However, throughout the Hebrew Bible God is also depicted as a God of love.
Main discussion questions for the week:
Given the Covenants between the Israelites and God, the 10 Commandments, the beauty of the Psalms, and the predictions of the prophets, provide three (3) of your own observations about this violent/loving God.
Judaism is a religion of doing and faith is seen in actions towards others.
Compare and contrast the 10 Commandments with the 8-Fold Path of Buddhism, the Confucian Virtues, and the 12 Vows of Jainism.
Are we seeing the same concept of doing and faith today, or has there been a shift as we move to Western religions
This assignment will require that you consider the different personality theories we investigate in class and apply them to you own personality makeup. You are asked to select two to three personality theories and evaluate your personality development to date. Papers must be 5-6 pages in length, double-spaced, APA formatted, and in college level English. Page count does NOT include title page and references. You are not required to complete an abstract.
Be sure to:
Identify which theories do you feel most explain who you are now
Explain why these theories apply to your personality development
Examine what cultural influences have molded you into the person you are today
List which personality assessment(s) presented in the readings would you complete in evaluating your personality. Discuss what you theorize it might reveal about you based on the readings from the text and journal articles.
Support your work with information from the textbook AND peer-reviewed sources from psychology journals.
Presentation
A. Create a slide presentation (e.g., PowerPoint, Keynote) (suggested length of 810 slides) with speaker notes for the senior executives at EZ-Pleeze.
1. Discuss within your presentation the current state and the purpose of the companys strategic plan.
2. Include the EZ-Pleeze SWOT analysis within the presentation.
3. Include a completed strategic planning implementation table within your presentation, using the attached Strategic Planning Implementation Table Template, that includes strategic recommendations, start dates, evaluation dates, and resources needed.
a. Justify within the presentation the recommendations, timelines, and resources needed for EZ-Pleeze based on the completed strategic planning implementation table.
Note: The slides in your presentation should include only the main points you wish to make, with more extensive information included in the presenter notes section of the presentation.
Executive Summary
B. Provide an executive summary (suggested length of 12 pages) for EZ-Pleeze senior executives that summarizes the purpose of the strategic plan, the SWOT analysis, and the strategic recommendations.
C. Acknowledge sources, using in-text citations and references, for content that is quoted, paraphrased, or summarized.
The assignment and instructions are in the lab 5 ipynb file attached. The test case is included and the needed downloads described are in the lab 4 file attached. It is python 3 code and It can’t be a copy of what is on github or other sites, I have those and still am having difficulty doing the assignment
Program Code : Java
Deck/Stock – A pile of cards, face down, which are left over after setting up the other layout areas. These are turned over one-at-a-time into the waste. For your program this pile of cards MUST be stored in a STACK.
Waste – The area where the cards from the deck/stock go when they are brought into play. Only cards from the stock can be played to the waste. Only the topmost card can be moved to either the foundation or to the tableau. For your program this pile of cards MUST be stored in a STACK.
Foundations – The aim of the games is to clear the tableau and move all the cards to the foundation. They are built up by suit from Ace(1) to King(13). Assume at the start of the game, the four ACEs are already placed on the foundation. For your program this pile of cards MUST be stored in four separate STACKs (one for each suit). Recommended you use an ARRAY of stacks for this.
Tableaus – This consists of a number of piles where cards can be moved from one tableau to another or from tableau to a foundation. For your program this pile of cards MUST be stored in 7 STACKs and 7 QUEUEs. Each tableau (ex. T4 see picture) has both a stack and a queue. The stack holds the cards that have been turned over while the queue holds the cards that have not yet turned. At the start of the game Tableau 0 (T0 see picture) starts with a queue containing 1 card, T1 has two cards, T2 has 3 cards and so on. The game begins by DEQUEUING one card from each of these queues and placing it into the stack of the tableau. Hence, the T0 queue begins the game with 0 cards, T1 queue has 1 card and so forth while each of the tableau stacks have the one card to start with (the topmost card you can see). Recommended you use an ARRAY of 7 queues and another ARRAY of 7 stacks for this.
Creating a shuffled deck of 52 cards
Your deck of cards should be represented by a number (1-13) followed by the first letter of the suit. Example: 1H, 5S, 12C, 13D would mean ace of hearts(1H), 5 of spades(5S), queen of clubs(12C), and king of diamonds(13D). The deck also needs to be shuffled.
Source code for 52 card and shuffled :
import java.util.ArrayList;
import java.util.Collections;
/**
*
* @author Faruk
*/
public class Deck {
public static void main(String[] args)
{
ArrayList<String> shuffled_deck = shuffledDeck();
System.out.println( shuffled_deck );
}
private static ArrayList<String> shuffledDeck()
{
ArrayList<String> deck = new ArrayList<String>();
String[] suit = new String[] { “H”,”D”,”C”,”S” };
for(int i=1; i<=13; i++)
for(int j=0; j<4; j++)
deck.add( i + suit[j] );
Collections.shuffle(deck);
return deck;
}
}
Stacks and Queues
You may use Java’s ArrayDeque class and Java’s Stack class or you may use your own StackBox / QueueBox code or any combination of these four BUT your solution must use stacks and queues as described above.
*** Assume for all stacks you can only move and see (peek) the top card of any stack.
Sample Program
( run runme.– Do not try to “decompile” this program. There are safeguards in place and detection of cheating will result in disciplinary action.) = Please don’t Do reverse Engineering!
I attach the file .
Simple Game Rules
You can only move the top card of any stack.
To move a card to the foundation, the foundation must have the previous card already there. Example, you can’t move 12D if 11D is not already in the foundation.
To move a card onto a tableau, the card must be one less than the card currently showing on the target tableau AND the suit color must be opposite color than the card showing. Example, moving 7H on a tableau currently showing a 8S is allowed but you can’t move 7H to a 8D (suit colors are both red). You can also move any card to the tableau if the tableau is empty (no cards in its stack or queue left).
Marking & Grading
!! IMPORTANT!! Your program must use stacks and queues as described. If you don’t use (mostly) stacks and queues then maximum mark given will be 25% even if the program does work. !!
[10 marks]: Program uses Stacks and Queues for deck, waste, tableaus, and foundations.
[2 marks]: Draw a card from deck stack to waste stack.
[2 marks]: Move all cards from waste stack back to desk stack when deck stack is empty
[4 marks]: Move waste card to foundations correctly assuming move is allowed.
[4 marks]: Move waste card to a tableau assuming move is allowed
[6 marks]: Moving a tableau card from one tableau to another assuming move is allowed
[4 marks]: Dequeing a tableau queue and placing card on the tableau stack when stack is empty.
[4 marks]: Moving tableau card to foundations assuming move is allowed.
[4 marks]: Game robustness testing ( can’t crash the program )
Here i attatched 3 more picture with a sample output picture.
Assignment Due : In 25 Hours .
Please update me soon ! Thanks
No reverse coding or Don’t use the solo.class(just for ref)
Instructions
Choosing an Organization APPLE IS MY ORGANIZATION
You may choose any known organization (for-profit, not-for-profit, small, medium, large, existing, new start-up, established organizations are all permitted) or make one up for your Plan. If you make up your own organization, you will need to find (and reference where applicable) information that is relevant to this type of organization. If you are unsure, it is strongly suggested that you use an existing company. Focus on one or two major products/services rather than the whole organization.
Writing the Plan
Follow the report format for the Marketing Plan closely. Write in business report format using full paragraphs unless otherwise stated. It is crucial to follow various major concepts in the textbook to devise your plan and strategy for each section. In other words, use major parts of each chapter to discuss details for each section. The length of the assignment should be between 8-10 pages, not including an appendix. A minimum of 3 scholarly sources including your textbook must be cited using any recognized citation style. Use in-text citations throughout the paper.
Text book we use is if you cannot find the book please let me know.
Principles of Marketing, 17th Edition
ISBN: 9780134461427
By: Philip Kotler; Gary Armstrong
Instructions
Please submit Meal Planning for Carbohydrates Assignment here.
Part A
Please respond to the following questions in complete sentences and paragraphs. This section should be at least 200 words.
What is meant by the AMDR, and what is this range for carbohydrates?
How does the type of carbohydrate impact health?
What is one negative health impact from carbohydrate intake?
What is one positive health impact from carbohydrate intake?
Part B
Here is a sample one-day menu for Mr. Brown. His doctor just told him to cut down on added sugars in addition to increasing his fiber intake. He hopes to meet with a dietitian next week, but in the meantime needs some help making these changes. List five suggestions for Mr. Browns diet. Make sure to provide only changes that address the meal planning goals mentioned above. Tell him which food(s) you would have him omit and how you would replace these items. You may also change portion sizes. Highlight (yellow only, please) or bold the item you are changing. Then write the change next to that. You may make more than five changes, but if you do so, you will only receive full credit when all changes correctly match the assigned directions.
Breakfast
1 cup sugar-frosted flake cereal
8 oz 1% milk
8 oz orange juice
2 scrambled eggs
Snack
1/2 peanut butter and jelly sandwich (1 slice white bread, 1 TBSP Skippy peanut butter, 1 TBSP grape jelly)
Lunch
8 oz tomato soup
6 Saltine crackers
1 turkey sandwich (3 oz turkey, 2 slices white bread)
1/2 cup canned pears in heavy syrup
8 oz grape juice
Snack
6 oz fruited yogurt, sweetened
1 oz almonds
Dinner
5 oz BBQ chicken
1 medium baked potato with 1 TBSP butter
1/2 cup cooked broccoli
8 oz cola
4 oz 1% milk
Snack
1/2 cup chocolate ice cream
Step 1: Research online the occupancy rates of the average U.S. hospital
Step 2: Using information from your outside research, respond to the following questions:
What factors do you think most contribute to the declining occupancy rates of U.S. hospitals over the past decade?
You should think both technological change and financial incentives
Data show that occupancy rates have begun to stabilize in recent years, despite the continuing forces for declining use of the inpatient hospital facility. To what do you attribute this phenomenon?