Company: Societe Generale_18oct
Difficulty: medium
Consider a linked list implementation of a stack data structure. Given the following sequence of operations: push(10); pop(); push(5); top(); What will be the result of the stack (top element) after performing these operations? 10 5 Empty Error In a circular queue implemented using arrays and pointers, the rear pointer is incremented by one using which of the following expressions (where size is the capacity of the array)? (rear + 1) % size (rear - size) % size (rear + size) % size (rear - 1) % size Find the true statement(s) about SQL views. The WITH CHECK OPTION is a CREATE VIEW statement option. CREATE VIEW statement comes with AS, FROM and WHERE clause. Both A and B are true. Both A and B are false. What is an anti-pattern in software architecture? A documentation method A design pattern A testing technique A common but ineffective solution to a recurring problem Which design strategy involves breaking a system into smaller, more manageable components? Waterfall Design Modular Desi