Showing posts with label Senghak Tep. Show all posts
Showing posts with label Senghak Tep. Show all posts

Saturday, January 26, 2013

Bus Management System Application

Name : TEP SENGHAK
Major: D4 ITB 6
Field of : Technology Media Degital

This is a video about Bus Management System. It has been made by Java programming language with My SQL.


You can also with this video at youtube.com by click this link below:
http://www.youtube.com/watch?v=goKaKu-5cNM&feature=youtu.behttp://www.youtube.com/watch?v=goKaKu-5cNM&feature=youtu.be


Sunday, January 6, 2013

Notepad Application Developed in Java

Name : TEP SENGHAK
Education : D4 TMD ITB6
Major : TMD
ID : 49012084

This is a video about how to make Notepad application in Java programming language using NetBeans IDE 7.2.1.

 



You can also visit this video on youtube.com by click this link below. 
http://www.youtube.com/watch?v=BFfslB01-B8&feature=youtu.be


Thursday, November 29, 2012

Module 10 (windows forms application) by Tep Senghak

This is a video about windows forms application. In this video you will learn basic windows forms application and arithmetic forms application.



You can also visit this video by click this link below.
http://www.youtube.com/watch?v=0oqb0Qgf0jY&feature=youtu.be

Module 9 (function) by Tep Senghak

This is a video for Module 9 about function. In this video there are

1. function without return value
2. function with return value
3. function with parameter




You can also visit this video by click this link below.

http://www.youtube.com/watch?v=ZwcB7C73QnE&feature=youtu.behttp://www.youtube.com/watch?v=ZwcB7C73QnE&feature=youtu.be

Module 8 (structure) by Tep Senghak


This is a video for Module 8 about structure. In this video there are

1. structure
2. enumeration
3. bitfiedl
4. typedef
5. union



You can also visit this video by click this link below.

http://www.youtube.com/watch?v=0TgJB7TIz7Y&feature=youtu.be

Module 7 (array) by Tep Senghak

This is a video for Module 7 about array. In this video there are

1. dimensional array
2. multi dimensional array
3. same multi dimensional array




You can also visit this video by click this link below.

http://www.youtube.com/watch?v=XEeaLa8-KWA&feature=youtu.behttp://www.youtube.com/watch?v=XEeaLa8-KWA&feature=youtu.be

Module 6 (while, do while and for) by Tep Senghak

This is a video for Module 6 about repetition. In this video there are

1. while
2. do ... while
3. for




You can also visit this video by click this link below.


http://www.youtube.com/watch?v=6aAlt51QyQ0&feature=youtu.be http://www.youtube.com/watch?v=6aAlt51QyQ0&feature=youtu.be

Wednesday, November 21, 2012

Module 5 Decision Making (Tep Senghak)



Nama: Tep Senghak
Nim: 49012084
Major: d4 TMD ITB Batch 6

Module 5

Decision Making

Decision making structures require that the programmer specify one or more conditions to be evaluated or tested by the program, along with a statement or statements to be executed if the condition is determined to be true, and optionally, other statements to be executed if the condition is determined to be false.

1. If statement

An if statement consists of a boolean expression followed by one or more statements.
Syntax:
if(boolean_expression)
{
/* statement(s) will execute if the boolean expression is true */
}

2. If else statement

An if statement can be followed by an optional else statement, which executes when the boolean expression is false.
Syntax:
if(boolean_expression)
{
    /* statement(s) will execute if the boolean expression is true */
}
else
{
    /* statement(s) will execute if the boolean expression is false */
}

3. If-else-else-if statement

An if statement can be followed by an optional else if...else statement, which is very useful to test various conditions using single if...else if statement.

Syntax:
if(boolean_expression 1)
{
    /* Executes when the boolean expression 1 is true */
}
else if( boolean_expression 2)
{
    /* Executes when the boolean expression 2 is true */
}
else if( boolean_expression 3)
{
    /* Executes when the boolean expression 3 is true */
}
else
{
    /* executes when the none of the above condition is true */
}

4. Switch statement

Syntax:
switch(expression){
    case constant-expression :
        statement(s);
        break; /* optional */
    case constant-expression :
        statement(s);
        break; /* optional */
    /* you can have any number of case statements */
    default : /* Optional */
        statement(s);
    }



This video below show you examples about if, if-else, if-else-else-if, and switch statement in C++ programming language, which is developed with Microsoft Visual Studio 2010.



 You can also visit this video at www.youtube.com by click this link below.
http://www.youtube.com/watch?v=rZyafHd4Rws&feature=you http://www.youtube.com/watch?v=rZyafHd4Rws&feature=youtu.betu.be

Module 4 Operator (Part 2) (Tep Senghak)



Nama: Tep Senghak
Nim: 49012084
Major: d4 TMD ITB Batch 6

Module 4

Operator (Part 2)

In this module there are four types of operators.
- Arithmetic Operators
- Logical Operators
- Bitwise Operators
- Ternary Operator

1. Arithmetic Operators

Arithmetic Operators used to perform arithmetic operations of addition, subtraction, multiplication, division and so on. All arithmetic operator applies for integers (integer) and float (float).
- (+): adds two operands    
- (-): subtracts second operand from the first    
- (*): multiply both operands    
- (/): divide numerator by de-numerator
- (%): modulus Operator and remainder of after an integer division.

2. Logical Operators

Logical operators are used to generate the true value (true) and false (false). This value is known as reconciliation boolean. In C + +, it is usually true value represented by the value 1 and false is represented by 0.

3. Bitwise Operators

There are six types of bitwise operator:
- (&): binary AND Operator copies a bit to the result if it exists in both operands.    
- (|): binary OR Operator copies a bit if it exists in either operand.    
- (^): binary XOR Operator copies the bit if it is set in one operand but not both.
- (~): binary Ones Complement Operator is unary and has the effect of 'flipping' bits.    
- (<<): binary Left Shift Operator. The left operands value is moved left by the number of bits specified by the right operand.    
- (>>): binary Right Shift Operator. The left operands value is moved right by the number of bits specified by the right operand.

4. Ternary Operator   

Ternary Operator an operator that is used in operations involving three operand. The operator is used to declare an operator ?:.


This video below show you examples about arithmetic,logical, bitwise, and  ternary operators in C++ programming language, which is developed with Microsoft Visual Studio 2010.



 You can also visit this video at www.youtube.com by click this link below.

  http://www.youtube.com/watch?v=SmF513cKBGU&feature=youtu.be


Module 3 Operator (Part 1) (Tep Senghak)



Nama: Tep Senghak
Nim: 49012084
Major: d4 TMD ITB Batch 6

Module 3

Operator (Part 1)

operator is a symbol that tells the compiler to perform specific mathematical or logical manipulations. In this module there are four operators:
- Assignment Operator
- Unary Operator
- Increment
- Decrement

1. There are many difference type of assignment operator. The assignment operator is the operator which has equal sign “=”.
2. Unary operator: an operator that has only one operand.
3. Increment operator increases integer value by one
4. Decrement operator decreases integer value by one

This video below show you examples about assignment, unary, increment, and decrement operators in C++ programming language, which is developed with Microsoft Visual Studio 2010.


 You can also visit this video at www.youtube.com by click this link below.
http://www.youtube.com/watch?v=pBJZNdrGJas&feature=youtu.be