Coding interview preparation
5.75K subscribers
330 photos
47 files
163 links
Download Telegram
System Design Interview Preparation

System Design Interview Books:
Essential reads for understanding system design concepts and interview questions.

Grokking the System Design Interview by Design Guru:
A practical guide to system design with real-world scenarios.

Codemia io
Practice System Design Problems in Leetcode style on Codemia , they got more than 120 problems on System dseign with editorial solutions and diagrams.

Designing Data-Intensive Applications:
Learn about the architecture of data systems and how to design data-heavy applications.
Which one of the following algorithmic languages is not the lexical scoping standardized in?
Anonymous Quiz
40%
Html
25%
Ada
22%
Pascal
12%
Modula2
Behavioral Interview

Tech Interview Handbook:
A go-to resource for behavioral interview questions and tips.

A Life Engineered (YouTube):
Insights and advice from industry professionals on YouTube.

STAR Method:
A technique for answering behavioral questions by discussing the Situation, Task, Action, and Result.
Which of the following POSIX signals generate events?
Anonymous Quiz
48%
SIGINT
35%
SIGDOWN
12%
SIGFLOAT
5%
SIGSHORT
Object-Oriented Design (OOD) Interview

Interview-ready:
Tools and courses to help you prepare for OOD interviews.

Educative:
Interactive learning paths for mastering design patterns and OOD principles.

Codemia io
They have recently added OOAD sections with many questions like parking lot design, vending machine design and much more.

Head First Design Patterns Book:
An engaging book that simplifies complex design patterns with practical examples.
Mock Interviews

DesignGurus io :
if you want to do mock interviews with ex Facebook and Microsoft engineers on System design and coding interview then DesignGuru.io is a great place.
Interviewing.io: Practice interviews with experienced engineers.

Pramp:
Pair up with peers to practice coding and system design interviews.

Meetapro:
Book sessions with experts for personalized feedback and improvement.

You can also find mock interviews video on YouTube like this to get a feel before you actually book your mock interview session with these sites
For the array element a[i][j][k][2], determine the equivalent pointer expression.
Anonymous Quiz
66%
*(*(*(*(a+i)+j)+k)+2)
16%
*( ((a+m)+n+o+p)
13%
((((a+m)+n)+o)+p)
4%
*( (((a+m)+n)+o+p)
Which function is used to write a single character to console in C++?
Anonymous Quiz
47%
cout.put(ch)
19%
cout.putline(ch)
11%
write(ch)
24%
printf(ch)
Explanation: Memory efficient doubly linked list has only one pointer to traverse the list back and forth. The implementation is based on pointer difference. It uses bitwise XOR operator to store the front and rear pointer addresses. Instead of storing actual memory address, every node store the XOR address of previous and next nodes.
Which HTML element is used to put the JavaScript code?
Anonymous Quiz
14%
<javascript>
12%
<js>
1%
<scripting>
73%
<script>
Are the expression ++*ptr and *ptr++ are same?
Anonymous Quiz
26%
True
74%
False
Enjoy our content? Advertise on this channel and reach a highly engaged audience! 👉🏻

It's easy with Telega.io. As the leading platform for native ads and integrations on Telegram, it provides user-friendly and efficient tools for quick and automated ad launches.

⚡️ Place your ad here in three simple steps:

1 Sign up

2 Top up the balance in a convenient way

3 Create your advertising post

If your ad aligns with our content, we’ll gladly publish it.

Start your promotion journey now!
Select the correct statement which is a combination of these two statements.
Statement 1: p= (char*) malloc(100);
Statement 2: char *p;
Anonymous Quiz
56%
char *p = (char*)malloc(100);
31%
char *p = (char) malloc(100);
9%
char p = *malloc(100);
4%
None
Which of the following escape sequence represents carriage return?
Anonymous Quiz
37%
\r
27%
\n
21%
\n\r
15%
\c