Hi I need the answers for all the wuestions i attached Its Java Programming or computer enginering
Hi I need the answers for all the wuestions i attached Its Java Programming or computer enginering
Do not write anything on the back of any page. If you need additional space, use the blank pages at the end of the examination. If you pull your examination apart, put all of your examination pages in order when you turn them in and turn in all pages. Answer all programming questions in Java. Pay careful attention to what is requested: a code fragment (a few lines of code), a method, or a program. Students who write a whole program when a code fragment is requested will waste so much time that they may not complete the examination. Unless otherwise indicated, each part of a problem is worth the same number of points. Show your work to receive partial credit. When a variable has a comment like “value assigned elsewhere,” it means that the value of the variable has already been created somewhere out of sight (like in Turingscraft). You do not need to prompt the user or get values from the user in this situation. Since you do not have the whole API available during the examination, it is acceptable to guess at method names, parameters and return values. If your guesses are reasonable—even if not perfect—you will receive credit. For example, if you forget that the String class has a length() method and call it size(), that is fine. If, however, you make up new methods that are not reasonable for the class or that magically solve problems the class cannot solve, you will not get credit. You do not need to import packages or throw exceptions in any methods. (12 points; 4 points each) Find the logical value (true or false) of each of the statements below. If the code istru not legal, say so. Assume the variables are declared and initialized as follows: double ghosts = 9.3 ; double goblins = 7.1 ; int[] candy = {0, 5, 1, 2, 1, 4}; candy[3] > 2 || candy [5] != 5 !(ghosts == goblins) c) candy[0] != candy[1] || candy[1] >= candy[2] && candy[2] > candy[3] (6 points) I’m buying Halloween candy to give to kids that live near me. Usually I buy two pieces of candy for each trickOrTreater I expect. However, I’ve noticed that if it doesn’t rain and the temperature is above 60 that I need to twice as much candy. Use all of the variables declared below and logical operator(s) to write a single if/else statement that will calculate how much candy I should buy. Pay attention to precedence of the logic operators. int trickOrTreaters; // value given elsewhere boolean isRaining; // value given elsewhere int temperature; // value given elsewhere int candy; // this is the value you should set (15 points; 5 points for table on right, 5 points for table below, 5 points for the final values in the array) Trace the loop below in the tables. Remember to show initial and final values. String[] names = {“Tiana”, “Ariel”, “Merida”, “ariel”, “Elsa”, “Jasmine”}; for (int index = 0; index < names.length-1; ++index) index temp { if (!names[index].equalsIgnoreCase(names[index+1])) { String temp = names[index+1]; names[index+1] = names[index]; names[index] = temp; } names[-1] names[0] names[1] names[2] names[3] names[4] names[5] At the end of the method, names contains: (15 points; 4 points for a), 6 points for b); 5 points for c)) The paragraph below describes a static method. The method will take an array of doubles and replace any values in the array that are larger than a given target value by 0.0. For example, if the array contained {7.9, 2.3, 4.1, 5.2, 6.3}, and the target value were 6.0, the array would contain {0.0, 2.3, 4.1, 5.2, 0.0} after the method call. a) Write the signature of the method. The method signature contains a return type, the method name and any necessary parameter(s). b) Complete the declaration of variables below and call the method with the data given in the example above. double[] array double target c) What will the value of index be after the code below is run? int[] array = {9, 4, 2, 1, 7, 3, 5}; Arrays.sort(array); int index = Arrays.binarySearch(array, 6); (12 points) Answer the questions in the box below about program execution. You may use a memory diagram to trace the code if you wish to, or may use your knowledge of passing by value and/or sharing. public class SecondMidterm { public static void main(String[] args) { int[] start = {1, 7, 5}; int value = 3; start = mystery(value); } public static int[] mystery(int sub) { sub = sub + 1; int[] data = new int[sub]; for (int index=0; index I’ve stored the responses in a file. Write a program that calculates the number of Agree, Neutral, and Disagree responses and lets a user explore which Not applicable: responses contain a given word or words until the user wishes to quit. The expected interaction of the program is shown below on the left. The sample file contents are in the box on the right. The bold, underlined, italicized words were entered by the user Agree Agree Agree Disagree Disagree Disagree Neutral Not applicable: Uncertain Agree Agree Not applicable: Who knows? Not applicable: Uncertain Not applicable: Don’t care Not applicable: Not applicable: Agree Disagree Disagree Agree: 6 Neutral: 1 Disagree: 5 Enter a keyword to search not applicable or quit Uncertain That keyword was listed 2 times Enter a keyword to search not applicable or quit not sure That keyword was listed 0 times Enter a keyword to search not applicable or quit quit You will write the two methods below and part of the main method. public static int countOtherKeywords(String[] data, int dataSize, String answer) public static int readFile(String[] data, String fileName) There also is another method that you may use without writing: public static int countResponses(String[] data, int dataSize, String answer) This method returns the number of times that answer appears in the data array at indices between 0 and dataSize-1 (inclusive). a) Write the method described below. public static int readFile(String[] data, String fileName) Read survey responses stored in a file with the given fileName into an array. Returns the number of elements in the array when the method is complete. This should equal the number of lines in the file. b) Write the method below. public static int countOtherKeywords(String[] data, int dataSize, String answer) Return the number of times Not applicable:
Why Choose Us
- 100% non-plagiarized Papers
- 24/7 /365 Service Available
- Affordable Prices
- Any Paper, Urgency, and Subject
- Will complete your papers in 6 hours
- On-time Delivery
- Money-back and Privacy guarantees
- Unlimited Amendments upon request
- Satisfaction guarantee
How it Works
- Click on the “Place Order” tab at the top menu or “Order Now” icon at the bottom and a new page will appear with an order form to be filled.
- Fill in your paper’s requirements in the "PAPER DETAILS" section.
- Fill in your paper’s academic level, deadline, and the required number of pages from the drop-down menus.
- Click “CREATE ACCOUNT & SIGN IN” to enter your registration details and get an account with us for record-keeping and then, click on “PROCEED TO CHECKOUT” at the bottom of the page.
- From there, the payment sections will show, follow the guided payment process and your order will be available for our writing team to work on it.