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 Cloud Computing June 2020 Solved Paper
CS-8002 (CBGS) B.E. VIII Semester Examination, June 2020 Choice Based Grading System (CBGS) Cloud Computing 1. a) Describe cloud services requirements and applications of cloud computing. … Read more
RGPV DBMS November 2019 Solved Paper
CS-502 (CBGS) B.Tech. V Semester Examination, November 2019 Choice Based Grading System (CBGS) Database Management System 1. a) Differentiate between Database approach v/s Traditional file … Read more