FEATURED POST

WordPress Themes and Plugins Development

By admin  //  Wordpress  //  View Comments

We are living in the age of the World Wide Web. If people need a product or service, they no longer rummage through a hard copy of [...]

WordPress Themes and Plugins Development
Dec
13
By admin  //  View Comments

Procedure in PL/SQL

Syntax: PROCEDURE name [ARGUMENT LIST]  {IS,AS} variable declarations BEGIN program code END; Example: PROCEDURE swap (A IN OUT NUMBER, B IN OUT NUMBER) IS temp NUMBER; BEGIN [...]

Dec
13
By admin  //  View Comments

Function in PL/SQL

Syntax: FUNCTION name [ARGUMENT LIST] RETURN data-type {IS,AS} variable declarations BEGIN program code END; Example: FUNCTION check (num in BOOLEAN, True_num NUMBER, False_num NUMBER) RETURN NUMBER IS [...]

Dec
13
By admin  //  View Comments

Trigger in PL/SQL

Syntax for creating a database trigger: CREATE OR REPLACE TRIGGER trigger-name {BEFORE |AFTER } verb-list ON table-name [FOR EACH ROW[WHEN condition]] DECLARE declaration BEGIN PL/SQL code END; [...]

Dec
3
By admin  //  View Comments

Object & Methods in C++

#include<iostream.h> #include<conio.h> class employee { char name[30]; int age; public: void getdata(void); void putdata(void); }; void employee::getdata(void) { cout<<”Enter name and age”<<endl; cin>>name>>age; } void employee::putdata(void) { [...]

Dec
2
By admin  //  View Comments

Inserting records in SQL Database using JAVA Applets

import java.sql.*; import java.awt.*; import java.awt.event.*; import javax.swing.*; public class InsertRecord extends JFrame implements ActionListener { JPanel panel; JLabel lName, lPhone; JTextField tName, tPhone; JButton btnInsert; public [...]

Oct
24
By admin  //  View Comments

If computer languages were a car :)

- C is a racing car that goes incredibly fast but breaks down every fifty miles. – C++ is a souped-up racing car with dozens of extra [...]

Oct
5
By admin  //  View Comments

Recusive Function in C++

#include<iostream.h> #include<conio.h> int fact (int num); void main() { int x; cout<<”Enter a number”<<endl; cin>>x; cout<<fact(x); getch(); } int fact(int num) { int y; if(num==0) y=1; else [...]

Oct
5
By admin  //  View Comments

Call by Reference in C++

#include<iostream.h> #include<conio.h> int swap(int*a, int*b) { int temp; temp=*a; *a=*b; *b=temp; cout<<*a<<*b; } void main() { int x,y; cout<<”Enter two value”<<endl; cin>>x>>y; swap(&x,&y); getch(); }

Oct
5
By admin  //  View Comments

call by value in C++

#include<iostream.h> #include<conio.h> void swap(int a, int b) void main() { int x,y; cout<< “Enter two different numbher: “<<endl; cin>>x>>y; swap(x,y); getch(); } void swap (int a,int b) [...]

Oct
5
By admin  //  View Comments

Fibonacci Series In C++

# include <iostream.h> # include <conio.h> void main() { int i,j,k,n; clrscr(); cout<<”Enter The Numbers Of Numbers To Be Printed In The Series”<<endl; cin>>n; i=0; j=1; cout<<i<<endl; [...]

Namaste!

Hello! This is Nirmal Gyanwali, a freelance web developer from Kathmandu, Nepal. I am well versed with Open source CMS and portal frameworks like Joomla!, Wordpress, Drupal. If you're interested, you can contact me at info@nirmal.com.np.
Thanks!

Latest Tweets