What is the order of variables in Enum?
Anonymous Quiz
40%
Ascending order
12%
Descending order
18%
Random order
30%
Depends on the order() method
What is the purpose of using fflush() function in C?
Anonymous Quiz
15%
Flushes only specified stream.
26%
Flushes file buffer.
29%
Flushes input/output buffer.
29%
Flushes all streams and specified buffer.
Interview questions asked by top product-based companies.
A friend of mine recently shared their interview journey, and I'd like to pass on what I learned about the data structures and algorithms (DSA) rounds.
π¨πΎβπ» Data Structures: He encountered questions on topics like arrays, strings, matrices, stacks, queues, and different types of linked lists (singly, doubly, and circular).
βΆοΈ Algorithms: He was also interviewed on a wide array of algorithms like linear search, binary search, and sorting algorithms (bubble, quick, merge).
And faced questions on more challenging subjects like Greedy algorithms, Dynamic programming, and Graph algorithms.
π Specifics: The devil lies in the details! His interview also delved into advanced topics such as Advanced Data Structures, Pattern Searching, Recursion, Backtracking, and Divide and Conquer strategies.
However, your ability to apply these concepts to real-world situations will undoubtedly set you apart from others.
On top, If youβre stuck at any of the above questions and need the right guidance in cracking top product-based company interviews,
As a community of tech enthusiasts, let's share our own interview experiences in the comments below. Together, we can learn from each other's experiences.
ββββββββββββ
πJoin @coding interview preparation for moreπ
A friend of mine recently shared their interview journey, and I'd like to pass on what I learned about the data structures and algorithms (DSA) rounds.
π¨πΎβπ» Data Structures: He encountered questions on topics like arrays, strings, matrices, stacks, queues, and different types of linked lists (singly, doubly, and circular).
βΆοΈ Algorithms: He was also interviewed on a wide array of algorithms like linear search, binary search, and sorting algorithms (bubble, quick, merge).
And faced questions on more challenging subjects like Greedy algorithms, Dynamic programming, and Graph algorithms.
π Specifics: The devil lies in the details! His interview also delved into advanced topics such as Advanced Data Structures, Pattern Searching, Recursion, Backtracking, and Divide and Conquer strategies.
However, your ability to apply these concepts to real-world situations will undoubtedly set you apart from others.
On top, If youβre stuck at any of the above questions and need the right guidance in cracking top product-based company interviews,
As a community of tech enthusiasts, let's share our own interview experiences in the comments below. Together, we can learn from each other's experiences.
ββββββββββββ
πJoin @coding interview preparation for moreπ
Telegram
Coding interview preparation
Preparing programmers for job interviews.
Free courses: @bigdataspecialist
@programming_books_bds
@datascience_bds
@github_repositories_bds
@data_visualization_bds
@tech_news_bds
@python_bds
DMCA disclosure: @disclosure_bds
Contact: @mldatascientist
Free courses: @bigdataspecialist
@programming_books_bds
@datascience_bds
@github_repositories_bds
@data_visualization_bds
@tech_news_bds
@python_bds
DMCA disclosure: @disclosure_bds
Contact: @mldatascientist
What will be the output of the C++ program?
Anonymous Quiz
18%
Segmentation fault
36%
Value of a: 5
33%
Value of a: 10
13%
Error
What would be the asymptotic time complexity to add a node at the end of singly linked list, if the pointer is initially pointing to the head of the list?
Anonymous Quiz
23%
O(1)
59%
O(n)
13%
ΞΈ(n)
5%
ΞΈ(1)
π1π1π1
Which one of the following given task is performed by the "pop()" method of the array in JavaScript?
Anonymous Quiz
8%
It updates the element of the array
5%
it increments the total length of the array by 1
14%
It prints the first element and made no impact on the length of the array
73%
updates the element removes one element of an array on each time the "pop()" function called
π2β€1π1
π±3
What is the value returned by strcmp() function when two strings are the equal in C language?
Anonymous Quiz
9%
2
44%
1
41%
0
6%
Error
What will be the output of the C++ code?
Anonymous Quiz
28%
30
25%
Error
24%
Segmentation fault
24%
870
π2π1
What would be the asymptotic time complexity to insert an element at the front of the linked list (head is known)?
Anonymous Quiz
53%
O(1)
36%
O(n)
9%
O(n2)
2%
O(n3)