Jump to content

Programming in Java

  1. STOCK TRADING CALL CENTER SYSTEM Customers call to place an order to buy or sell stocks. We charge a trading fee of 1% of the amount involved. Each customer has one account. Platinum accounts receive a 10% discount on trading fees, gold accounts receive a 5% discount on trading fees, and silver accounts receive no discount. Note that it is possible for a silver (gold) account to be “promoted” to a gold or platinum (platinum) account based on a high volume of trade and we also might introduce a new type of account(s) in the future. Each time a customer buys or sells stocks we keep a record of their order, including the date, transaction amount, and trading fee. We pr…

    • 1 reply
    • 6.4k views
  2. Started by PrinceRM,

    Learn Java programming tutorial lesson 1 - First Program What is Java? Java is an object-oriented programming language which was developed by Sun Microsystems. Java programs are platform independant which means they can be run on any operating system with any type of processor as long as the Java interpreter is available on that system. What you will need You will need the Java software development kit from Sun's Java site. Follow the instructions on Sun's website to install it. Make sure that you add the java bin directory to your PATH environment variable. Writing your first Java program You will need to write your Java programs using a text editor. Wh…

    • 15 replies
    • 5.5k views
  3. Guest Prayaas Aggarwal
    Started by Guest Prayaas Aggarwal,

    Introduction Object Oriented Programming is the core of Java. Before writing an app in Java, you'll first need to know the basic principles of it. You'll know what is an object, a class, how they are related, and how different objects communicate, and will thus be able to understand and create your own programs in Java, after having read this tutorial. This thread aims to describing the concepts behind Object Oriented Programming (O.O.P.) This thread, is the first part of the tutorial. For the second part, head on to the next thread. Object Oriented Programming Concepts All computer programs consist of two types of elements, code and data. A program can be concept…

    • 0 replies
    • 2.3k views
  4. Started by Anindya1989,

    Here are a few ebooks for learning java. Feel free to request more books and i'll upload them for you guys. Happy Studying Java How to Program 7th ed by Deitel and Deitel http://www.ziddu.com/download/16400786/DeitelJavaHowtoProgram7thedition.pdf.html Java Concepts by Cay Horstman http://www.ziddu.com/download/16400787/Java_Concepts_for_Java_5_and_6.pdf.html Head First Java 2nd ed by Kathy Sierra http://www.ziddu.com/download/16400788/Head-First-Java-2nd-edition.pdf.html

    • 13 replies
    • 4k views