computer management
Create a class Computer that stores information about different types of Computers
available with the dealer. The information to be stored about a single computer is,
- Company Name
- RAM size.
- Hard Disk Capacity.
- Processor Speed.
- Processor Make.
- Price .
- Quantity of the Computers.
This class contains following methods,
- Constructor method that assigns user input values to above
mentioned variables.
- main ( ) method that creates array of 4 objects of Computer
class and that takes input for all above details from the user and
calls method to check validity of Quantity and Price values.
If all values are valid then create the objects and display the details
for all 4 toys.
- Method that checks validity of quantity and price.
If the quantity is 0 or negative then method should throw user defined
exception with appropriate message and come out of program.
Similarly if the price is 0 or negative then it should throw user defined
exception with appropriate message and come out of program.
- Method that displays all details about a single instance of Computer in the
following
Format.
Computer Name : IBM
RAM Size : 512 MB
Processor Make : Intel
Processor speed : 300
Quantity : 50
Total Price of Computers : 150,0000/-
*/
View Answers
April 23, 2010 at 4:45 PM
Hi Friend,
Please try the following code:
import java.util.*;
public class Computer{
static String name;
static int size;
static int speed;
static String make;
static double price;
static int quantity;
public Computer(String n,int s,int sp,String m,double p,int q){
name=n;
size=s;
speed=sp;
make=m;
price=p;
quantity=q;
}
public String getName(){
return name;
}
public int getSize(){
return size;
}
public int getSpeed(){
return speed;
}
public String getMake(){
return make;
}
public double getPrice(){
return price;
}
public int getQuantity(){
return quantity;
}
public void valid(){
if((price==0)||(price<0)){
System.out.println("Please enter price");
System.exit(0);
}
else if((quantity==0)||(quantity<0)){
System.out.println("Please enter quantity ");
System.exit(0);
}
else{
displayData();
}
}
public void displayData(){
List<Computer> list = new ArrayList<Computer>();
list.add(new Computer(name,size,speed,make,price,quantity));
for (Computer s : list){
System.out.println("Computer Name: "+s.getName()+ "\nRAM Size :"+s.getSize()+"\nProcessor Make: "+s.getMake()+"\nProcessor Speed: "+s.getSpeed()+"\nQuantity: "+s.getQuantity()+"\nTotal Price of Computers: "+s.getPrice());
}
}
public static void main(String[]args){
System.out.println("Enter details");
Scanner input=new Scanner(System.in);
System.out.println("Computer Name: ");
name=input.next();
System.out.println("RAM Size: ");
size=input.nextInt();
System.out.println("Processor Speed: ");
speed=input.nextInt();
System.out.println("Processor Make: ");
make=input.next();
System.out.println("nQuantity: ");
quantity=input.nextInt();
System.out.println("Price: ");
price=input.nextDouble();
Computer c=new Computer(name,size,speed,make,price,quantity);
c.valid();
}
}
Thanks
Related Tutorials/Questions & Answers:
computer management - Java Beginnerscomputer management Create a class
Computer that stores information... to be stored about a single
computer is,
- Company Name
- RAM size... array of 4 objects of
Computer
class and that takes input for all above
Computer dealer management - Java BeginnersComputer dealer management Create a class
Computer that stores.... The information to be stored about a single
computer is,
- Company Name
- RAM size... ( ) method that creates array of 4 objects of
Computer class and that takes input for all
Advertisements
Computer NetworksComputer Networks The IPV4 packet has arrived wtih first few hexadecimal digits as 0X45000028000100000102.
How many hopes will this packet travel before being dropped
ManagementManagement Hi,
Can anyone give me full details of
Management?
Thanks
Hi,
Please see the thread What is
management?
Thanks
computer sciencecomputer science Objective:Work with hash tables by creating a hash table using linear probing. I need this code in java. "LinearProbingHashTable.java"
Description:Create a generic class called LinearProbingHashTable<K,V>
Computer Networking
Computer Networking
... a commercial activity where you were using a
computer along with a
printer... the sharing and exchanging facilities among the
computer machines is called
Define computer software.Define
computer software. How to define a
computer software?
A
computer software is a set of instruction that tell the
computer what to do
Computer forensic applicationComputer forensic application how to write
computer forensic application using java for recovering deleted files and deleted partitions
ModuleNotFoundError: No module named 'computer'ModuleNotFoundError: No module named '
computer' Hi,
My Python... '
computer'
How to remove the ModuleNotFoundError: No module named '
computer... to install padas library.
You can install
computer python with following
ModuleNotFoundError: No module named 'computer'ModuleNotFoundError: No module named '
computer' Hi,
My Python... '
computer'
How to remove the ModuleNotFoundError: No module named '
computer... to install padas library.
You can install
computer python with following
Computer shop mangerment Computer shop mangerment Part A
You are supposed to write a class
Computer to stores the
computer id, description, brand,
price, speed and another... of it.
Part B
Develop array based java program to help a local
computer shop
List of Computer SoftwareList of
Computer Software Hi,
I am looking for the list of
Computer programming languages. Provide me the list of
Computer Software used these days... for different purposes.
See the List of
Computer software.
Thanks
computer - Swing AWTcomputer What is a
Computer and why we should use it? I am new to this technologies so please let me know the benefits of using
computer. What you what to know about computers?Is it a software or hardware related
The input device used by computer isThe input device used by
computer is The input device used by
computer is
1. Motherboard
2. Central Processing Unit
3. Keyboard
4. System Unit
5. All of the above
Answer: 2. Central Processing Unit
a computer network is referred asa
computer network is referred as The structure of interconnecting of nodes of --- a
computer network is referred as
1. Network topology
2. Internet
3. Local Area network
4. Wide Area network
5. All of these
Answer
computer configuration - Java Beginnerscomputer configuration someone posted a code but tha is not working... a working code
Create a class
Computer that stores information about... about a single
computer is,
- Company Name
- RAM size.
- Hard Disk Capacity
ALU Computer Term ALU
Computer Term What is ALU? Please define and explain ALU in simple language.
ALU stands for Arithmetic logic unit is a brain of CPU, which is used for the processing of data and information provided
characteristics of a modem computercharacteristics of a modem computer Which of the following describe one or more characteristics of a modem
computer?
1. An electronic device
2. A mechanical device
3. A Electro-mechanical device
4. All of these
5. None
Computer security - Securitycomputer security advice Can any one give me a
computer security advice? Thanks! Please take care whenever you are formatting your hard drive as when you format a hard drive, you erase all its files and prepare
data analysis computer sciencedata analysis
computer science Hi,
I am beginner in Data Science... analysis
computer science
Try to provide me good examples or tutorials links so that I can learn the
topic "data analysis
computer science". Also tell
computer science with artificial intelligencecomputer science with artificial intelligence Hi,
I am beginner... to learn:
computer science with artificial intelligence
Try to provide me good examples or tutorials links so that I can learn the
topic "
computer science
nvidia computer vision coursenvidia
computer vision course Hi,
I am beginner in Data Science...
computer vision course
Try to provide me good examples or tutorials links so that I can learn the
topic "nvidia
computer vision course". Also tell me
computer vision stanford coursecomputer vision stanford course Hi,
I am beginner in Data Science...:
computer vision stanford course
Try to provide me good examples or tutorials links so that I can learn the
topic "
computer vision stanford course". Also
learn computer vision pythonlearn
computer vision python Hi,
I am beginner in Data Science...
computer vision python
Try to provide me good examples or tutorials links so that I can learn the
topic "learn
computer vision python". Also tell me
Is Masters in computer science difficult?Is Masters in
computer science difficult? Hi,
I am beginner in Data...:
Is Masters in
computer science difficult?
Try to provide me good examples or tutorials links so that I can learn the
topic "Is Masters in
computer Getting Computer Date in javaGetting
Computer Date in java Hi , I want to get the PC Date and insert it to a DB, specifically MSSQL..
Everything in my scriptlet works but this..
String strDate = new Date();
I get this server error, "The type Date
java with computer networkjava with
computer network i feel it's very difficult to use java for network programming.
how can i recover this problem?give me any simple example with explanation.
hi,
if you want to make carrier in software
computer manufacture case studycomputer manufacture case study
Computer Manufacturer Case Study
BNM is an upcoming
computer manufacturer. The company was making a mark in the
desktop and laptop segment due to aggressive pricing and good products. The sales
different types of storage devices of a computerdifferent types of storage devices of a computer What are the different types of storage devices of a
computer?
Magnetic disks, Tapes and DVDs are few examples of storage devices of a
computer Computer Scince 1015 - Java BeginnersComputer Scince 1015 Write a SavingsAccount class to store the following information related to a bank account: Account number, Password, Branch name, Surnames, First names, Balance The account balance should be able
master of computer science in data sciencemaster of
computer science in data science Hi,
I am beginner... to learn:
master of
computer science in data science
Try to provide me good examples or tutorials links so that I can learn the
topic "master of
computer bsc computer science with artificial intelligencebsc
computer science with artificial intelligence Hi,
I am beginner... to learn:
bsc
computer science with artificial intelligence
Try to provide me...
computer science with artificial intelligence". Also tell me which is the good
coursera deep learning in computer visioncoursera deep learning in
computer vision Hi,
I am beginner in Data...:
coursera deep learning in
computer vision
Try to provide me good examples... in
computer vision". Also tell me which is the good training courses
udemy deep learning computer visionudemy deep learning
computer vision Hi,
I am beginner in Data...:
udemy deep learning
computer vision
Try to provide me good examples or tutorials links so that I can learn the
topic "udemy deep learning
computer computer vision machine learning jobscomputer vision machine learning jobs Hi,
I am beginner in Data...:
computer vision machine learning jobs
Try to provide me good examples or tutorials links so that I can learn the
topic "
computer vision machine learning
fundamentals of deep learning for computer visionfundamentals of deep learning for
computer vision Hi,
I am beginner... to learn:
fundamentals of deep learning for
computer vision
Try to provide me...;fundamentals of deep learning for
computer vision". Also tell me which is the good
deep learning in computer vision courseradeep learning in
computer vision coursera Hi,
I am beginner in Data...:
deep learning in
computer vision coursera
Try to provide me good examples or tutorials links so that I can learn the
topic "deep learning in
computer computer science economics and data sciencecomputer science economics and data science Hi,
I am beginner... to learn:
computer science economics and data science
Try to provide me good examples or tutorials links so that I can learn the
topic "
computer science
computer science and artificial intelligence degreecomputer science and artificial intelligence degree Hi,
I am... for
the tutorials to learn:
computer science and artificial intelligence degree
Try to provide...;
computer science and artificial intelligence degree". Also tell me which
computer science artificial intelligence coursecomputer science artificial intelligence course Hi,
I am beginner... to learn:
computer science artificial intelligence course
Try to provide me good examples or tutorials links so that I can learn the
topic "
computer computer science artificial intelligence degreecomputer science artificial intelligence degree Hi,
I am beginner... to learn:
computer science artificial intelligence degree
Try to provide me good examples or tutorials links so that I can learn the
topic "
computer masters in computer science artificial intelligencemasters in
computer science artificial intelligence Hi,
I am... for
the tutorials to learn:
masters in
computer science artificial intelligence
Try to provide...;masters in
computer science artificial intelligence". Also tell me which
phd computer science artificial intelligencephd
computer science artificial intelligence Hi,
I am beginner... to learn:
phd
computer science artificial intelligence
Try to provide me good examples or tutorials links so that I can learn the
topic "phd
computer