CS Fundamental Interview Questions
CS Fundamental Interview Questions
For Freshers
Credits – Manthan Godha [Linkedin]
1. What is the difference between an array and a linked list?
- An array is a contiguous block of memory that stores
elements of the same data type, accessed using an index. In
contrast, a linked list is a data structure where elements,
called nodes, are linked using pointers, and each node
contains both the data and the address of the next node.
20. How does the internet work, and what are HTTP and
HTTPS?
- The internet is a global network of interconnected devices
that communicate using the TCP/IP protocol suite. HTTP
(Hypertext Transfer Protocol) is used for transmitting data
over the web, while HTTPS (HTTP Secure) encrypts the data
for secure communication.