DATA STRUCTURE Programming and Technical Logical Reasoning Number Series

logic to expand series upto n

1, 1, 2, 10, 65, 442

Read Solution (Total 1)

DATA STRUCTURE Other Question

Given Integer x = 40, y = 35, z = 20, w = 10
Comment on the output of the following two statements
print x * y / z - w print x * y / (z - w)
A queue is implemented as a single linked list. Each node has an element and pointer to
another node. Rear and Front contain the addresses of the Rear and Front nodes
respectively. If the condition (rear isequal front) is true and neither is NULL, what do we infer
about the linked list?