Login


Lost your password?

Don't have an account ?
Register (It's FREE) ×
  


Shop


Solved Problems
03E #5674 

Convert the following Infix expression to its equivalent Postfix expression, showing the stack contents for each step of conversion.

P/(QR)*S+T

Convert the following Infix expression to its equivalent Postfix expression, showing the s ...
03E #5717 

Convert the following Infix expression to its equivalent Postfix expression, showing the stack contents for each step of conversion:
U * V + (W – Z) / X

Convert the following Infix expression to its equivalent Postfix expression, showing the s ...
03D #5775 

Write the definition of a member function PUSHGIFT() for a class STACK in C++, to add a GIFT in a dynamically allocated stack of GIFTs considering the following code is already written as a part of the program:

struct GIFT
{
  int GCODE;         //Gift Code
  char GDESC[20];    //Gift Description
  GIFT *Link;
};
class STACK
{
  Gift *TOP;
public:
  STACK(){TOP=NULL;}
  void PUSHGIFT();
  void POPGIFT();
  ~STACK();
};
Write the definition of a member function PUSHGIFT() for a class STACK in C++, to add a G ...
03E #5777 

Convert the following Infix expression to its equivalent Postfix expression, showing the stack contents for each step of conversion:
X – ( Y + Z ) / U * V

Convert the following Infix expression to its equivalent Postfix expression, showing the ...
03C #5878 

Write the definition of a member function Pop() in C++, to delete a book from a dynamic stack of TEXTBOOKS considering the following code is already included in the program.

struct TEXTBOOKS
{
  char ISBN[20]; char TITLE[80];
  TEXTBOOKS *Link;
};
class STACK
{
  TEXTBOOKS *Top;
public:
  STACK() {Top=NULL;}
  void Push();
  void Pop();
  ~STACK();
};
Write the definition of a member function Pop() in C++, to delete a book from a dynamic s ...
03E #5885 

Convert the following infix expression to its equivalent postfix expression, showing the stack contents for each step of conversion.
X / Y + U* (V-W)

Convert the following infix expression to its equivalent postfix expression, showing the s ...
03C-2015 #5962 

Write the definition of a member function PUSH() in C++, to add a new book in a dynamic stack of BOOKS considering the following code is already included in the program:

struct BOOKS
{
  char ISBN[20], TITLE[80];
  BOOKS *Link;
};
class STACK
{
  BOOKS *Top;
public:
  STACK()
{Top=NULL;}
  void PUSH();
  void POP();
  ~STACK();
};
Write the definition of a member function PUSH() in C++, to add a new book in a dynamic s ...
03E-2015 #5967 

Convert the following infix expression to its equivalent Postfix expression, showing the stack contents for each step of conversion.
U * V + R/ (S-T)

Convert the following infix expression to its equivalent Postfix expression, showing the ...
03E #6043 

Convert the following Infix expression to its equivalent Postfix expression, showing the stack contents for each step of conversion.
P + ( Q – R ) * S / T

Convert the following Infix expression to its equivalent Postfix expression, showing the ...
03E-2016 #6177 

Convert the following Infix expression to its equivalent Postfix expression, showing the stack contents for each step of conversion.
A/(B+C)*D-E

Convert the following Infix expression to its equivalent Postfix expression, showing the ...
Exam Questions
CBSE12A-2016-03E  03E #5674 

Convert the following Infix expression to its equivalent Postfix expression, showing the stack contents for each step of conversion.

P/(QR)*S+T

Convert the following Infix expression to its equivalent Postfix expression, showing the s ...
CBSE12A-2018-03E  03E #5717 

Convert the following Infix expression to its equivalent Postfix expression, showing the stack contents for each step of conversion:
U * V + (W – Z) / X

Convert the following Infix expression to its equivalent Postfix expression, showing the s ...
CBSE12A-2017-03D  03D #5775 

Write the definition of a member function PUSHGIFT() for a class STACK in C++, to add a GIFT in a dynamically allocated stack of GIFTs considering the following code is already written as a part of the program:

struct GIFT
{
  int GCODE;         //Gift Code
  char GDESC[20];    //Gift Description
  GIFT *Link;
};
class STACK
{
  Gift *TOP;
public:
  STACK(){TOP=NULL;}
  void PUSHGIFT();
  void POPGIFT();
  ~STACK();
};
Write the definition of a member function PUSHGIFT() for a class STACK in C++, to add a G ...
CBSE12A-2017-03E  03E #5777 

Convert the following Infix expression to its equivalent Postfix expression, showing the stack contents for each step of conversion:
X – ( Y + Z ) / U * V

Convert the following Infix expression to its equivalent Postfix expression, showing the ...
CBSE12D-2015-03C  03C #5878 

Write the definition of a member function Pop() in C++, to delete a book from a dynamic stack of TEXTBOOKS considering the following code is already included in the program.

struct TEXTBOOKS
{
  char ISBN[20]; char TITLE[80];
  TEXTBOOKS *Link;
};
class STACK
{
  TEXTBOOKS *Top;
public:
  STACK() {Top=NULL;}
  void Push();
  void Pop();
  ~STACK();
};
Write the definition of a member function Pop() in C++, to delete a book from a dynamic s ...
CBSE12D-2015-03E  03E #5885 

Convert the following infix expression to its equivalent postfix expression, showing the stack contents for each step of conversion.
X / Y + U* (V-W)

Convert the following infix expression to its equivalent postfix expression, showing the s ...
CBSE12A-2015-03C  03C-2015 #5962 

Write the definition of a member function PUSH() in C++, to add a new book in a dynamic stack of BOOKS considering the following code is already included in the program:

struct BOOKS
{
  char ISBN[20], TITLE[80];
  BOOKS *Link;
};
class STACK
{
  BOOKS *Top;
public:
  STACK()
{Top=NULL;}
  void PUSH();
  void POP();
  ~STACK();
};
Write the definition of a member function PUSH() in C++, to add a new book in a dynamic s ...
CBSE12A-2015-03E  03E-2015 #5967 

Convert the following infix expression to its equivalent Postfix expression, showing the stack contents for each step of conversion.
U * V + R/ (S-T)

Convert the following infix expression to its equivalent Postfix expression, showing the ...
CBSE12D-2017-03E  03E #6043 

Convert the following Infix expression to its equivalent Postfix expression, showing the stack contents for each step of conversion.
P + ( Q – R ) * S / T

Convert the following Infix expression to its equivalent Postfix expression, showing the ...
CBSE12D-2016-03E  03E-2016 #6177 

Convert the following Infix expression to its equivalent Postfix expression, showing the stack contents for each step of conversion.
A/(B+C)*D-E

Convert the following Infix expression to its equivalent Postfix expression, showing the ...

Solved Problems:10  Exam Questions:10 
Back