Sunday, September 15, 2013

Deque Algorithm for Curcular Queue using Array


If(Front == U)

      next = L

Else

      next = Front + 1

EndIf


Item = NULL

Enque Algorithm for Curcular Queue using Array

If(Rear == U)
      next = L
Else
      next = Rear + 1
EndIf

If(next == Front)
      print “Queue is Full.

Saturday, September 7, 2013

Maths Paper Style for Internal Exam

Q-1 SOLVE THE FOLLOWING (ANY 3 OUT OF 4) 15 M

2->NORMAL FORMS
2->MATRICES

Q-2(A) THEORY [CONNECTIVES] 4M 


(B) PROPERTIES [CONNECTIVES] 4M


(C)SOLVE THE FOLLOWING (ANY 3 OUT OF 4) 12M

Q-3(A)DEFINITION+EXAMPLE 5M


(B)SOLVE THE FOLLOWING(ANY 1 OUT OF 2) 4M
(C)DEFINITIONS (ANY 6 OUT OF 7) 6M

TOTAL: 50 MARKS

Friday, August 23, 2013

How to write Simple Stack Program using Linked List

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

void PUSH();
void PEEP();
void POP();

struct node{
int data;
struct node *link;

}*head,*top=NULL,*newx,*item;

Wednesday, August 21, 2013

How to write Simple Stack Program in C

#include<conio.h>
#include<stdio.h>
 
void PUSH();
void PEEP();
int POP();
int top=-1,item,a[10];
void main()
{
int i;
clrscr();
for(i=0;i<12;i++)
{
printf("\nEnter No: ");
scanf("%d",&item);

Thursday, August 8, 2013

Download DFS all PPTs Files till Unit Test 1

Hello Friends I have uploaded all DFS Material including all the PPTs Files till we have learned so far. So Download this zip file and extract it you will get total 6 files.

Wednesday, August 7, 2013

C++ Programs List for Lab File

Here is my C++ Programs list. I can't say its 100% right. Yes but you can get idea about total number of programs have to be written in C++ Lab File. If you want to note down then you can Its just for inform you to these programs must be in your Lab File.

Given Programs in short name so try to understand definition.
Program List :

Download SQL Theory Assignment 2 with Answer

Here is one zip file download and extract it. You will get number of image which contain all questions' answers. Lets complete it.