Tuesday, June 18, 2013

Most common and basic SQL Queries of DBMS

Leave a Comment Follow us on twitter
SQL Queries as you already know from previous post is the essential of Database Management System (DBMS). In this post we are going to learn some of the very basic SQL Queries that are commonly used. Let’s see these SQL Queries one by one. Most Commonly...
READ MORE...

Wednesday, June 12, 2013

SQL Queries in DBMS: A beginner’s guide

Leave a Comment Follow us on twitter
SQL Queries are very important part of Database Management System (DBMS). Structured Query Language is a language which led user to interact with Database Management System (DBMS). To handle and manage the database one should know about these SQL Queries. Here we are going to discuss some of the very basic and important SQL Queries which are going to help thought your life whether you are going to be a Database Administrator (DBA) or pursue a career in Database etc. Data types used in Structured Query Language (SQL) Most...
READ MORE...

Saturday, June 08, 2013

Guaranteed asked Java Interview Questions

Leave a Comment Follow us on twitter
Java Interview Questions These are guaranteed Java Interview Questions that are mostly asked by the interviewer when the focus of the topic is java. In the today’s world when java is in demand and the competition is tough, one should prepare for the java interview questions before going for an interview. So, let’s see the java interview questions. Also read : Basics of Java Programming 1. Why multiple inheritance is not possible in java? >> Multiple inheritance is not permitted in java because it will...
READ MORE...

Friday, June 07, 2013

C Program to find the factorial of a number

Leave a Comment Follow us on twitter
Below written is the C Program to find the factorial of n numbers where n is any input number by user whose factorial is to be computed. So, let's see the program to find factorial of number in C language. #include<stdio.h> #include<conio.h> void...
READ MORE...

Thursday, June 06, 2013

Basics of Java Programming: How to write a simple Java Program

Leave a Comment Follow us on twitter
To do java programming and to become a better programmer, one should able to write the java code with less complexity and lower running time. In this java tutorial instead of focusing over Complexity and Running time of a program, we are going to learn how to write a simple java program. class Javaprogram { public static void main(String args[]) { System.out.println("This is your first java program"); System.out.print("Here you are going to learn java"); } } Above written eight lines of code is the...
READ MORE...

Wednesday, June 05, 2013

Database Management System Architecture: DBMS Architecture

Leave a Comment Follow us on twitter
In this DBMS tutorial we are going to discuss about architecture of Database Management System (DBMS), also called as three-level architecture. Database Management System (DBMS) architecture is used to distinguish between the physical database and user applications....
READ MORE...

Sunday, June 02, 2013

C Tutorial : Introduction to C language

Leave a Comment Follow us on twitter
In this C tutorial we are going to focus over the introductory part of C language. C is a very popular programming language developed by Dennis Ritchie in 1972. C is not an Object Oriented Programming language as C++ is but it is a structured language. Structured languages are easier and allow the variety of programs in small modules. So, C programs are easier to develop as compared to C++.As C Program is high level language, so we need to convert this high level language into machine language. For this purpose there are...
READ MORE...