Friday, February 1, 2013

IMP Questions for Computer Organization


  1. What’s Hardware and Software?
  2. What’s Application and System Software?
  3. Explain Computer Organization & Functional Units
  4. Explain Main Memory & Auxiliary Memory
  5. What’s Device Controller?

Wednesday, January 30, 2013

Count Array elements with Pointers ( homework )


#include<stdio.h>
#include<conio.h>

void main()
{
int a[20],i,*p,ct=0,n;
clrscr();

Tuesday, January 22, 2013

Learn Pointer easily with Hindi

Friends watch this video you will get how pointer work.


DBMS Assignment 2 Questions


Q.1    Describe the below mentioned topics and their advantages and disadvantages.

            1. Hierarchical Model
            2. Network Model
            3.Relational Model
            4.Entity Relational Model

Friday, January 18, 2013

Degrees of Data Abstraction

Hello Students,

Here is a wonderful documentation of three schema architecture of DBMS or Degrees of Data abstraction..
http://www.myreadingroom.co.in/images/stories/docs/dbms/degrees%20of%20data%20abstraction.pdf

-Shalini

Thursday, January 17, 2013

DBMS Introduction PDF File

Computer Organization Assignment 1 Questions


  1. Define: Program, Instruction set, Hardware & software.
  2. What is can Operating  System?
  3. List out the main function of an Operating System.
  4. Explain in details the function units of computer with the help of the diagram.
  5. Explain in brief the concept of stored program.

Thursday, January 10, 2013

Bank App : Costumer Name, Account Number,Balance, Withdrew, Deposit etc. (C Program)


#include<stdio.h>
#include<conio.h>

struct bank
{
char name[20];
int an,bal;
};