Programming & Computer Science Answers

C++ 9913
Python 5288
Java | JSP | JSF 3611
C 1680
C# 1362
Computer Networks 989
Algorithms 652
Databases | SQL | Oracle | MS Access 641
HTML/JavaScript Web Application 588
Other 537
Visual Basic 358
Assembler 209
Software Engineering 202
AJAX | JavaScript | HTML | PHP 166
MatLAB 150
MatLAB | Mathematica | MathCAD | Maple 124
Action Script | Flash | Flex | ColdFusion 112
UNIX/Linux Programming 89
Web Development 73
Excel 36
ASP | ASP.NET 23
Delphi | Pascal 21
Perl 16
Prolog 9
Functional Programming 9
MathCAD 5
Wolfram Mathematica 4
WPF 4
Ruby | Ruby on Rails 3
NodeJS Web Application 2

Questions answered by Experts: 26 876

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

You are part of the Web development Team, currently designing a Web site for A company called Nkwali Yenkosi that designs and sells leather clothing and accessories. The Web site is made up of 5 Web pages (Home, About the leather, DIY Methods, Brick & Mortar and Shop Now). You are responsible for creating the Shop Now Web page and 2 Web pages

connecting to it.



Create a class which stores name, roll number and total marks for a student.Input the data for a student and display it.


Design a Java application that will allow a user to capture the top students for a module. Allow the
user to enter in the module name, followed by the number of students the user would like to
capture
Continue to capture the results for the number of students entered. Once all the student results
have been captured create a results report.
In the results report display the student results entered, a student count and the average result
obtained.
Make use of a method to get the input from the user, another method to accumulate the student
results, a method to determine the average result and a final method to create the results report.
In your solution make provision if a user has entered in an invalid result amount. Any result
entered that is below zero (0) is an invalid entry.
Design a Java application that will store three different vehicle details for a local car dealership.
The vehicle details must be stored in parallel arrays for the Vehicle Identification Number (VIN),
Vehicle Manufacturer and Vehicle Price. Use the following data as an example when populating
the arrays.
VIN Manufacturer Vehicle Price
112367 AUDI R 180 000
212367 BMW R 170 000
312367 VOLVO R 210 000
Prompt the user with a menu system for searching or displaying the vehicles. The user must have
the option to enter the numbers 1, 2, or zero (0) to exit the application. Make use of JOptionPanes
for input and output. Create a loadArray() method that will store the vehicle details into the three
parallel arrays.
If the user enters a one (1) provide functionality for a vehicle search. Create a searchArray()
method and write the code to enable the user to search for a specific vehicle. If the VIN is found in
the array, display the vehicle details.

wants to buy a necklace in which


1. There is a minimum of 1 pearl and maximum of X pearls, such that each pearl


has its own magnificent coefficient.


2. The pearls should be in non-decreasing order of their magnificence power


You are given the maximum number of pearls in a necklace and the range of the magnificent coefficients of the pearls Find the number of necklaces that can be made that follow the mentioned conditions


Input Specificatione


input1: Maximum number of pearls that can be used to form the necklace


input2: Starting magniliomt coefficient of pearls


input3: Ending magnificent coefficient of pearls


Output Specification


Retum the number of necklace options possible as per given conditions


Add two polynomials: Given two polynomials A and B, write a program that adds the given two polynomials A and B.


input: output:0

4

0 5

1 0

2 10

3 6

4

0 -5

1 0

2 -10

3 -6


class PriceChecker():

def __init__(self):

  self.levelsList = []

  self.currentPrice  = 0.0

  self.BitmexClient = bitmex.bitmex(test=False)

@property

 def levelsList(self):

 return self.__levelsList

@levelsList.setter

def levelsList(self, newValue):

self.__levelsList = newValue

@property

def currentPrice(self):

 ...        

@currentPrice.setter

 def currentPrice(self, newValue):

 ...


  # Function: Display the Bitcoin price in the menu item – to assist the user when setting price levels

   def updateMenuPrice(self):

       # Get the latest Bitcoin info (as a Tick object) from getBitMexPrice(). Name it tickObj.

       tickObj = self.getBitMexPrice()

       # Update the currentPrice property with the Bitcoin price in tickObj.

       . . .

@property

   def currentPrice(self):

       . . . # Return the value of __currentPrice

   @currentPrice.setter

   def currentPrice(self, newValue):

       . . .  # Set the value of __currentPrice

Using an array sales[], write a program that accepts sales from 8 sales reps, determine and display the following:

Average sales
All sales above calculated average
Highest and lowest sales
LATEST TUTORIALS
APPROVED BY CLIENTS