Posts tagged as:

Programming

Developers can now download Google Chrome OS Source Code

We talked about Google Chrome OS being released to testers/developers in Beta stage. Google’s Chrome OS has been a rather interesting project for many people as of late; it was said to be an operating system that was based in the “cloud”, stored mostly online, though nobody knew any exact details. Today, Google has explained [...]

Java Programming

Student Management – Java Mini Project using AWT, ODBC

I made the following mini project for my own amusement which uses AWT and Database connectivity using ODBC. I can use either Oracle or MySQL for the back-end. Just make sure to make the correct connection. Its a simple application which queries the database and inserts values. Got not much use but for practicing concepts [...]

Java Programming

Method Overriding in Java

Method Overriding happens when the method (function) having the same signature as that of the base class overrides the original method. This makes it possible for the method of the derived class to be used and not the base class.

Java Programming

Method Overloading in Java

Method Overloading happens when their exists methods (functions) having the same name but different signatures.

Java Programming

Using CommandLine to Swap two integers in Java

Using functions SWAP two numbers taken as input from Command Line arguments in Java

.Net Programming

Checking Prime Number in VB.Net

Logic behind the program is to check till half of the number (n/2) because it has been observed that the remainders get repeated after half of the number. Therefore, checking for remainders till n/2 is sufficient enough. The use of modulus operator(%) is important in this regard.

.Net Programming

Check for Palindrome in VB.Net

A String can be checked for palindrome using the String Reverse function in VB.Net.

.Net Programming

Different Types of MessageBoxes in VB.Net

MessageBox Displays a modal dialog box that contains a system icon, a set of buttons, and a brief application-specific message, such as status or error information. The message box returns an integer value that indicates which button the user clicked. Simply put, a messagebox displays a message and its characteristics can be changed using different styles as explained in the following program

.Net Programming

Inheritance in VB.Net

Implementating Inheritance by inheriting A Base class to create a derived class in VB.Net

.Net Programming

Fibonacci Series in VB.Net

In mathematics, the Fibonacci numbers are the following sequence of numbers:
0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89, 144, . . .

.Net Programming

Swap using Call by Reference and Call By Value

Call by Reference makes the changes reflect back in the original variables while Call By Value works with copies of original values and changes are not reflected back in original values. Using the same concept, the SWAP function has been implemented in VB.Net.

C Programming

Use of Switch to Calculate Area

Using Switch statement to create a Menu Driven program to calculate Area of different shapes.

C Programming

Count number of Words in a String

Program to count number of words in a Line in C Source Code.

C Programming

Count number of Vowels and Consonants in a String

Program to count number of Vowels (a,e,i,o,u) and consonants in a String in C

C Programming

Finding String Length in C

Program to count the number of characters in a given string using while loop. Useful for calculating the length of a given string as C doesn’t have an inbuilt function for the same.

C Programming

Sorting a String

Program to Sort a given String in C.

C Programming

Splitting an Array

The following program splits an array into two different arrays of equal length.

C Programming

Recursion using Fibonacci Series

This program demonstrates recursion using Fibonnacci Series program.

Page 1 of 3123

WordPress - Vaibhav Kanwal