Computer Science, asked by abhay03ac, 8 months ago

Link is an entity which can hold a maximum of 100 integers Link enables the user to add elements from the rear and remove from the front end of the entity.
Define a class Link are available as inputs

Answers

Answered by Anonymous
5

Answer:

(a) Interface is a non primitive data type which has static and final data members and prototype of functions ( i.e. functions are not defined )

Difference between Interface and Class : Interface supports multiple inheritance whereas a Class does not support multiple Inheritance.

(b) Convert the following infix expression to postfix form: P * Q / R + (S + T) [2]

(b) Infix to postfix :

P*Q/R+(S+T)

= P*Q/R+ ST+

= PQ* /R + ST+

= PQ*R/ + ST+

= PQ*R/ST++

Similar questions