WRITING PROMPT: Reflect on the ways you have accomplished cr…

WRITING PROMPT: Reflect on the ways you have accomplished critical thinking, effective communication, and acting professional. Remember, we learn as much from our failures as we do from our successes. Think back on everything we accomplished in the course; you may discuss any aspects of the course and your learning. Possible topics for reflection include: Discuss your best essay and why it is your best. (You may define “best”. It could be the one you worked hardest on, the one you’re most proud of, taught you most about writing, the one that went through the most revisions, etc.) Detail the revisions you’ve made and the improvements and changes. Acknowledge your weaknesses, but show how you’ve worked to overcome them. Reflect on what you’ve learned about writing, reading, technology, and/or other topics of this course. Writing notes: Do not feel overwhelmed by the above list; I certainly do not expect you to answer all of the items. Your paragraphs should be developed and argued as were your other essays. SUPPORT ALL YOUR IDEAS/CLAIMS WITH EXAMPLES. I will be looking for thoughtful, insightful reflections; please do not write what you think I want to hear. Most importantly, write what you want to say about yourself as a writer and a learner. As for style and length: Not required: introduction and conclusion Required: thesis and AT LEAST three paragraphs, though more is fine and encouraged.  This is a less formal writing than a traditional essay, but please do not use excessively casual, conversational language (such as 2nd person—you–and contractions). It is acceptable to use 1st person. 

Go to zyBook, 14.15 and enter the pass: moo123 Write a stati…

Go to zyBook, 14.15 and enter the pass: moo123 Write a static method, lucky13, that takes an array of integers, data, and returns a boolean. The method should return true only if the provided array contains no 1s and no 3s. Hint: consider using a helper method that tracks an additional parameter. Note 1: if you are more comfortable using ArrayLists, use them instead in this problem Note 2: the square bracket notation [3, 4, 0] is pseudocode for an array (or arraylist) containing the numbers 3, 4, and 0 lucky13([0, 2, 4]) should return true lucky13([5, 3])     should return false lucky13([5, 3, 1]) should return false