preview

Nt1330 Unit 1 Assignment

Decent Essays

I started this Unit 1: by Learning Guide unit overview introduction to the java programming that introduction to the operation of a computer. Introduction to java, the java virtual machine, and the java development and run time environments:  Read the learning guide and reading Assignments.  Downloaded and install the JDK package and the Net beans integrated development.  Test the software installation and make sure it is work for me properly.  Participated in the Discussion Assignment that given and post, comment and rate in the Discussion forum.  Completed and submitted the given programming Assignment and submitted.  Tested myself by taking the given self-quiz  Completed recommended reading assignments, learned the basic java code writing, used Net beans, and write my first java program Hello World application. In addition, flowed by watching unit 1 optional video lectures, and had much great idea and took the resources …show more content…

++, // Increment operator Aside from the basic arithmetic operators, Java also includes a unary increment operator (++) and unary Increment operators by one For example, the expression, Count = count + 1; //increment the value of count by 1 Is equivalent to, Count++; The increment operators can be place an operand. When used before an operand, it causes the variable to be incremented by 1, and then the new value is used in the expression in which it appears. For example, int a = 10, int b = 3; int c = 0; c = ++b + a; //will result to c = 4+10 = 14 && // is a logical and operator that if both the operands are non- zero, then the condition becomes TRUE. ! = // Relational operators compare two values and determine the relationship between those Values. The output of evaluation is the Boolean values true or false Examples Public class Relational

Get Access