fa
Feedback
Coding interview preparation

Coding interview preparation

رفتن به کانال در Telegram

Coding interview preparation for software engineers Daily interview questions, algorithms, data structures & clean solutions. Real interview tasks and problems. Join 👉 https://rebrand.ly/bigdatachannels DMCA: @disclosure_bds Contact: @mldatascientist

نمایش بیشتر
5 856
مشترکین
-124 ساعت
+117 روز
+1730 روز
آرشیو پست ها
How does Docker Work?
How does Docker Work?

Explanation: In a normal linked list, the ‘next’ pointer of the last node points to null. However, in a circular linked list, the ‘next’ pointer of the last node points to the head (first element) of the list. Every node in a circular linked list can be a starting point(head).

What differentiates a circular linked list from a normal linked list?
Anonymous voting

Which of the following escape sequence represents tab?
Anonymous voting

For the below mention C statement, what is your comment? signed int *p=(int*)malloc(sizeof(unsigned int));
Anonymous voting

Which of these is long data type literal?
Anonymous voting

Why is JavaScript called a structured programming language?
Anonymous voting

What is the worst case time complexity of inserting a node in a doubly linked list?
Anonymous voting

Which of the following escape sequence represents carriage return?
Anonymous voting

Select the correct statement which is a combination of these two statements. Statement 1: p= (char*) malloc(100); Statement 2: char *p;
Anonymous voting

How to get UTC time in java?
Anonymous voting

Which of the following statement is not correct in the case of JavaScript?
Anonymous voting

How do you calculate the pointer difference in a memory efficient double linked list?
Anonymous voting

Enjoy our content? Advertise on this channel and reach a highly engaged audience! 👉🏻 It's easy with Telega.io. As the leadi
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!

9. What are the escape sequences?
Anonymous voting

Are the expression ++*ptr and *ptr++ are same?
Anonymous voting

How to get difference between two dates in java?
Anonymous voting

Which HTML element is used to put the JavaScript code?
Anonymous voting

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.

What is a memory efficient double linked list?
Anonymous voting