Articles by Team EasyExamNotes

Stack Data Structure

Stack is a data structure.Stack is non primitive data structure.Stack is linear data structure.Stack is an ordered list.Stack do push and pop operation from TOS … Read more

Array implementation of Stack

include int stack[100],n,selection,top=-1,i;int push(){int element;if(top==n){printf(“Stack overflow”);}else{printf(“Enter element to push”);scanf(“%d”,&element);top = top + 1;stack[top] = element;}return 0;}int pop(){if(top==-1){printf(“Stack is empty, cant pop”);}else{top = top-1;}return 0;}int showElement(){for(i=top;i>=0;i=i-1){printf(“%d”,stack[i]);}if(top==-1){printf(“\nStack … Read more

Infix to Postfix expression

Infix expression : A+(B*C-(D/E↑F)*ε)*H Put operands values in to output column Put non operands valued in to stack column On inserting closing parenthesis ‘)’ into stack … Read more

RGPV Notes

The above links provide access to a wide range of question banks and solved papers for various subjects, including Software Engineering, Operating Systems, Computer Organization and Architecture, Data Structures and Algorithms, Machine Learning, Database Management Systems, Cloud Computing, and Theory of Computation.

RGPV TOC May 2018 Solved Paper

CS-501-CBGSB.Tech., V SemesterExamination, May 2018Choice Based Grading System (CBGS)Theory of Computation 1.a) Explain Deterministic and nondeterministic finite automata with example. Ans. Deterministic finite automata Nondeterministic … Read more

RGPV TOC June 2020

CS-501-CBGSB.Tech., V SemesterExamination, June 2020Choice Based Grading System (CBGS)Theory of Computation 1. a) Differentiate Mealy machine and Moore machine with diagram. Ans. Click here b) … Read more