Java | JSP | JSF Answers

Questions: 4 418

Answers by our Experts: 3 943

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

Abhay is playing a shooting game. There are n balloon arranged in a row. Each balloon has a number written on it and Abhay can burst balloons from beginning or end. Abhay is really fond of number k and wants to make the sum of all the balloons remaining equal to k. For busting 1 balloon 1 unit of energy is spent by Abhay. He wants to find the number of ways in which he can make the sum of balloons equal to k. But he is not willing to spend a lot of energy. So you also have to tell the minimum energy that he has to spend to make the sum equal to k


Josh is conducting an event at every weekend. He will distribute the cold drink and snacks to participants. At end of each event, he will check the event’s outcome as integer i.e., 0=bad, 1=good, or 2=great.

• An event is Good (1) if both cold drink and snacks are at least 10 distributed to participants.

• If either cold drink or snacks is at least double the amount of another one, the event is Great (2).

• If either cold drink or snacks is less than 10 the event is always Bad (0).

Write java program to display an event result as either Great, Good or Bad.



Common Items in Three Arrays

Given three arrays

arr1, arr2 and arr3, write a JS program to find the common items among the three arrays.Input

  • The first line of input contains an array arr1
  • The second line of input contains an array arr2
  • The third line of input contains an array arr3

Output

  • The output should be a single line containing an array of common items among the three arrays

sample input 1

[1, 2, 3, 'cat']

[1, 'cat', 7, 10]

[1, 'cat', 16, 64]


sample output1

[ 1, 'cat' ]


Implement a general Character superclass to simulate what is common to all characters (a) Implement class data fields to support at least the data fields described above about the game character. (b) Implement a constructor method to initialize any class data fields. (c) Include an abstract method to simulate the character using a special skill. The implementation of this method is intended to be ’filled in’ in the subclasses, where the character has a specific nature and skill set


Write a JavaFX program that meets the following requirements(b) Include a graphical control to accept information for each of the following fields: 1) The textual name of the character 2). The textual nature of the character, e.g. ’good’ or ’evil’ .3) A comma separated, textual list of special skills, badges, achievements items or traits the character has. The list may be of length up to 100 characters (a string type)


Write a JavaFX program that meets the following requirements 1) With your demonstration class, Implement a graphical window to display a game character setup dialog to allow the user to enter data into a visible window in order to set up the character object for the game (a) The dialog must provide a separate visual field for each data field, and include a textual label to the left of each field. 


Write a Car class that has constant PI = 3.147, variable capacity, method numberOfRiders with a single parameter of integer type and return nothing and finally have private inner class called Engine.  Write default, parameter and Copy constructor for both classes. The engine class has two inner variables fuleType and enginePower. Also write accessors and mutator method for both classes.  


Draw UML diagram for Transport, Cars, Aeroplanes, Honda Civic, Tractor, ATR plane, Boeing 747 classes, showing their inheritanc.


Q1: There is 10 Mango in a basket having different weight between 200 to 400 grams. There is a limit of 1000 grams you can pick from basket. You need to write a program to find the maximum weight you can pick. Note: You have to avoid picking 1st, 3rd and 5th Mango as it observed to


Ask the user to enter three of their favourite television shows. Once they have entered there shows, display the results. Use an array to store the three television shows 


LATEST TUTORIALS
APPROVED BY CLIENTS