Getting your thoughts to "get out of the box" getting the thoughts to be used in mathematics. Learning to think about a problem with OUT a "template" to work the list of steps. Learn to STOP looking for a formula Think about the problem a certain way … [Read more...] about Mathematical thinking, What is it?
what’s Systems Development Life Cylce (SDLC)?
The first investigation Taking the time to consider the time, budget, and technicality of the project, see if its worth creating or doping the project Analysis phase getting all the information needed to continue Design phase creating a … [Read more...] about what’s Systems Development Life Cylce (SDLC)?
What is AJAX programming?
Asynchronous JavaScript and XML aka AJAX. How is java Script used? a good example of this would be lets say when you are in Gmail checking your email and suddenly you get new email well what is happening in the back end to cause this, well its a transport method of … [Read more...] about What is AJAX programming?
What’s a method in java?
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?
How to determinate if a series of 1’s and 0’s is negative
positive one 0001 negative one 1111 positive two 0010 negative two 1110 positive three 0011 negative three 1101 positive four 0100 negative four 1100 positive five 0101 negative five … [Read more...] about How to determinate if a series of 1’s and 0’s is negative
What is a use case?
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?
What are legal variable names in java
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
Designing websites
I will be covering the following basic features of a website, planning and researching for a website, organizing and drafting the website, using style in a site, revising and editing and proofreading it, debugging the site and maintenance. In the ever growing … [Read more...] about Designing websites
what are key concepts of a computer program?
Formulas Assumptions Start and Stop Input Decisions Looping Variables Output … [Read more...] about what are key concepts of a computer program?
what are objects in java?
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?