as

SMACO

Write a C program to SMACO

1. Addition of two numbers
2. Subtraction of two numbers,
3. Multiplication of two numbers
4. Division of two numbers
5. Find MOD
6. GCD of two numbers
7. LCM of two numbers
8. Factorial of given number
9. Square & Cube of given number.
10. Fibonacci series

Write a PHP script to demonstrate Exception Handling.

Write a PHP script to demonstrate Exception Handling.   

1.  die( ) function
2.  Try  - Catch function

Write a C++ program to demonstrate Single Inheritances.

Write a C++ program to demonstrate Single Inheritances.    

Inheritance types

Write a C++ program to demonstrate Multiple Level inheritance.

Write a C++ program to demonstrate Multiple Level inheritance.   

Inheritance types

1. Single inheritance
2. Multi Level inheritance
3. Multiple Level inheritance
 4. Hybrid inheritance


Write a C++ program to demonstrate Hybrid inheritance.

Write a C++ program to demonstrate Hybrid inheritance.   

Inheritance types

1. Single inheritance
2. Multi Level inheritance
3. Multiple Level inheritance
 4. Hybrid inheritance

Write a C++ program to demonstrate Multi Level inheritance.

Write a C++ program to demonstrate Multi Level inheritance. 

Inheritance types

Write a C++ program to demonstrate inline function

Write a C++ program to demonstrate inline function .  

Inline Functions
                C++ inline function is powerful concept that is commonly used with classes. If a function is inline, the compiler places a copy of the code of that function at each point where the function is called at compile time.


Write a PHP script to demonstrate array.

Write a PHP script to demonstrate array. .  

ARRAY

An array can be defined as a variable that can store many values, each value within the array is index by a number.  Array basically a compound data type. An array is collection of data values.
We have used array() function to create array.
There are three types of Array in PHP .
1. Indexed Array
2. Associative Array
3. Multidimensional (2d) Array

Write a PHP script to demonstrate different String functions.

Write a PHP script to demonstrate different String functions.  

STRING FUNCTIONS

1. Concatenation Operator  2. Strlen( )
3. strpos( )  4. strtoupper( ) 
5. Substr_replace( )  6. Substr( )
7. Substr_count( )