• Skip to main content
  • Skip to primary sidebar

Founder at work

Master the skills to create and launch your next SaaS company

  • About Me
  • Reviews
  • Resources
  • Community
  • Contact
  • Lessons
  • Series
  • Search
  • Login

Programming

What’s a method in java?

September 12, 2012 by Rick Hernandez Leave a Comment

Methods perform operations on fields, methods have the following -Constructors initializes the state -accessor method check the sate of the fields -muatator methods changes the state -utility methods performs Wrap all of this into one class and you have your … [Read more...] about What’s a method in java?

Filed Under: Java, Programming

What is a use case?

September 10, 2012 by Rick Hernandez Leave a Comment

Starting point when designing a new system that displays a high level view of a system that communicates functionality. Who and what is the system going to be used for. … [Read more...] about What is a use case?

Filed Under: Programming

What are legal variable names in java

September 9, 2012 by Rick Hernandez Leave a Comment

Variable names are case-sensitive. A variable's name can be any legal identifier — an unlimited-length letters and digits, beginning with a letter, the dollar sign "$", or the underscore character "". The convention, however, is to always begin your variable names … [Read more...] about What are legal variable names in java

Filed Under: Java, Programming

what are key concepts of a computer program?

September 5, 2012 by Rick Hernandez Leave a Comment

Formulas Assumptions Start and Stop Input Decisions Looping Variables Output … [Read more...] about what are key concepts of a computer program?

Filed Under: Programming

what are objects in java?

September 5, 2012 by Rick Hernandez Leave a Comment

objects have the following -attributes/ data -behaviors/ operation anytime a division is done you get a quotient and remainder in java. Addition gives you an int back subtraction gives you a int back multiplication gives you a in back % ---Modulus / … [Read more...] about what are objects in java?

Filed Under: Java, Programming

How to do addition in java?

September 4, 2012 by Rick Hernandez Leave a Comment

I imported a class with the import java.util.Scanner; it seemed a little awkward to do in java, so used to C. import java.util.Scanner; // class scanner gets imported public class addition { public static void main(String [] args ) { Scanner input = … [Read more...] about How to do addition in java?

Filed Under: Java, Programming

Flowcharting

August 28, 2012 by Rick Hernandez Leave a Comment

Terminator (Terminal Point, Oval) Terminators show the start and stop points in a process. When used as a Start symbol, terminators depict a trigger action that sets the process flow into motion. Think about this like the complete beginning of a program or stop … [Read more...] about Flowcharting

Filed Under: Programming

Creating a multiplication table in java

August 22, 2012 by Rick Hernandez Leave a Comment

/** * Multiplication table */ public class tables { public static void main(String[] args) { //print header System.out.println("Multiplication Table:"); for (int k = 0; k <= 10; k++ ) { for(int j = 0; j <= 10; j++) { System.out.print( (j * k ) + "\t" … [Read more...] about Creating a multiplication table in java

Filed Under: Java, Mathematics, Programming

how to work with character values?

August 22, 2012 by Rick Hernandez Leave a Comment

public class Main { public static void main (String[] args) { char d1 = '1'; char d2 = '2'; char d3 = '3'; system.out.print(c1); system.out.print(c2); system.out.print(c3); } } … [Read more...] about how to work with character values?

Filed Under: Java, Programming

general rules of java operators

August 22, 2012 by Rick Hernandez Leave a Comment

so what are some of the java operators? i have broken down the values as follows in this list assignment this is the most common  operator  '=' equal '+' addition '-' subtraction '*' multiplication '/' division '%' modulist … [Read more...] about general rules of java operators

Filed Under: Java, Programming

  • « Go to Previous Page
  • Go to page 1
  • Interim pages omitted …
  • Go to page 21
  • Go to page 22
  • Go to page 23
  • Go to page 24
  • Go to Next Page »

Primary Sidebar

Learn How To Take Your Idea And Convert It Into An App From Scratch Even If You Have Never Written A Single Line Of Code.

  • How to Find Your Next Great App Idea
  • The Secret To Getting PAID To Build Your Own App
  • How To Create Your App (SaaS, Mobile, VR, AR, Game)
  • How To Monetize Your Apps
Learn More
4.82 Ratings

Copyright © 2025 · JSecademy Blog Theme on Genesis Framework · WordPress · Log in