Monday, November 5, 2012

LTO Reviewer

The LTO Reviewer for getting the Driver Licence

 http://issuu.com/danmacatuno/docs/lto_reviewer/1?mode=a_p




Monday, October 22, 2012

Programming Assignment #1

1. ) Write a program that print the output like this using asterisk.

Sample Output:
use asterisk to write this

             I LOVE YOU


 2.) write a program the ask the user to input there information and the output is like this.
      
Enter your name: _____________
Enter your Address: ____________
Enter your Age: ___________
Enter your birthdate: __________
Enter your birthplace: ___________
Enter your Position:
Hobbies:
          1. _________
          2. _________
          3. _________

sample output is:
Name: Jaypee Cezar
Address: Makaty City
Age: 25
Birthdate : July 28, 1987
birthplace: Salvacion Ocampo, Camarines Sur
Position: IT Manager

Hobbies:
        1. watching movies
        2. playing badminton
        3. sleeping hehehe...

3.) Create a program that compute your net income or take home pay.
   
  Enter your name: _______________
 Enter your Position: ____________
 Rate Per Day : _________
 No. of Days: __________
Gross Income: _________

Deduction:
this is computation not inputing the numbers. it automatically show the result or computation
   SSS : _____________    computation: get  2% from the salary to get SSS
   PAG-IBIG: _____________ computation: get 2% from the salary to get PAG-IBIG
  Philhealth: ______________ computation: get 4% from the salary to get Philhealth
 TAX: ________________ computation : get 10% from the salary to get tax

Sample output:
Name: Jaypee Cezar
Position: IT Manager
Rate Per Day : 2727
No. of Days : 22
Gross Income: 60000

Deduction :
SSS: ____
PAGIBIG:___
PHILHEALTH: ____
TAX: _____
Total Deduction: ____


NET INCOME: ______


in the deduction please compute in the programs.

Programming Lecture


Programming Tutorial

Programming Languages:

1. VB.NET

2. C#

3.C

4. C++

5. Cobol

6. etc....

 

The Important things to study to become .NET DEVELOPER are the following.

1. VB.NET

2. C#

3. SQL Server Database / MYSQL Database

 

Two type of Application in Programming.

1. Web Application

2. Windows Application

 

Programming Topics

DATA TYPES

1. Integer

2. Double

3. Character

4. String

5. Float

etc. ........

 

Explanation:

1. Integer  - accept whole numbers only

                  - example : 1, 2, 5, 9 , 10.5 = 10

2. Double  -accept numbers with decimal places

                  - example : 1.2, 3.4444, 6.675656 etc...

3. Character - It enclose in single quotes

                 - example : 'A' ,'s', 'F' etc.

4. String - it enclose in double quotes.

                example : "Jaypee Cezar",

                                 "Maricel Trasmano",

                                 "Hello World",

                                 "12345"

5. float  - numbers with decimal places but there is a limit in decimal .

             example : 12.33, 1.23, 4.55

 

 

Programming Operators

+

-

*

/

%  - modulo

 

Conditional Operators

>           greater than

>=        greater than or equal

<          less than

<=        less than or equal

= =       equal

!=         not equal

 

=   - assignment operator

 

Variable – is storage of value that can be change

    Example a, aa, b1, c1 etc.

                Make sure it start with letter or underscore