Coding interview preparation
5.79K subscribers
367 photos
52 files
163 links
Download Telegram
Network Protocols
πŸ‘10
Data Structure Cheat Sheet
πŸ‘8
12 Highest Paying Programming Jobs
πŸ‘7
How Linux Works
πŸ‘5😁1
SQL VS NO SQL Database
❀7πŸ‘4
Networking Cheat Sheet
πŸ‘4
IMAP and POP3
πŸ‘5
3 Types of Artificial Intelligence
πŸ‘6
Microservices Roadmap
❀2πŸ‘2
Internet of Things
πŸ‘5
The 9 Types of Intelligence
πŸ‘10
IOT 7 characteristics
πŸ‘5
Which Part of the Coding Interview Process is the most stressful?
πŸ‘6
Explanation:
A doubly linked list has two pointers β€˜left’ and β€˜right’ which enable it to traverse in either direction. Compared to singly liked list which has only a β€˜next’ pointer, doubly linked list requires extra space to store this extra pointer. Every insertion and deletion requires manipulation of two pointers, hence it takes a bit longer time. Implementing doubly linked list involves setting both left and right pointers to correct nodes and takes more time than singly linked list.
Which one of the following can be considered as the opposite approach of the Lexical Scoping?
Anonymous Quiz
50%
Dynamic scoping
20%
Literal scoping
15%
Static scoping
16%
Generic scoping
πŸ‘2
Explanation:
The dynamic scoping can be considered as the opposite approach to the lexical scoping. In the dynamic scoping, it does not matter that how the code is written but what matters is how's the code executes. At the time of execution of every new function, a new scope associated with it gets pushed onto the stack and this scope normally stored along with the function call stack.At that point, when a variable is referenced in a function's definition, the scope is immediately checked in every call stack to know if it returns a value.
😁3