Tip 1: OOPS - You should be well-versed in basic OOPS principles.
Tip 2: You should be confident and possess profound knowledge about the projects you have worked on.
Tip 3: Basic DB concepts such as joins and normalization are important.
Tip 1: Have some projects on your resume.
Tip 2: Do not put false things on your resume.



Input: ‘L’ = 1, ‘R’ = 12, ‘D’ = 2, ‘K’ = 1
Output: 2
As in the range, numbers are 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, and 2, 12 are the numbers where the digit ‘2’ comes exactly once.
A student named Shyam is in college, and he is learning about numbers and counting. He received an assignment, and the task is hard for him, so he wants help from you. He has been given two numbers, ‘L’ and ‘R’, which represent the range, both numbers being inclusive. Additionally, he has been provided with two more numbers, ‘D’ and ‘K’. Now, he needs to find the following:
What is the count of numbers in the range [L, R] in which each number contains the digit ‘D’ exactly ‘K’ times?



Input : 1 -> 2 -> 3 -> 4 -> 'NULL' and 'K' = 2
Output: 1 -> 2 -> 4 -> 'NULL'
Explanation:
After removing the second node from the end, the linked list become 1 -> 2 -> 4 -> 'NULL'.

Your task is to remove the 'K'th node from the end of the given linked list and return the head of the modified linked list.



1) An element of the ‘COORDINATES’ array is a pair of ‘X' and ‘Y’ coordinates of a point, i.e., COORDINATES[i] = (Xi, Yi).
2) |DISTANCE| represents the absolute value of distance.
3) All points are considered to be connected if there is exactly one simple path between two points.
4) According to Wikipedia, a simple path is a path in a plane that does not have repeating points.
You are given an array, 'COORDINATES,' that represents the integer coordinates of some points on a 2D plane. Your task is to find the minimum cost to connect all the points, where the cost of connecting two points (x1, y1) and (x2, y2) is equal to the Manhattan distance between them, i.e., |x1 - x2| + |y1 - y2|.



‘?’ – matches any single character
‘*’ – Matches any sequence of characters(sequence can be of length 0 or more)
Given a text and a wildcard pattern of sizes N and M respectively, implement a wildcard pattern matching algorithm to determine if the wildcard pattern matches the entire text, not just a portion of it.
Explain how would you be an asset to this organization?
What are your outside interests?
Would you lie for the company?
Who has inspired you in your life and why?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?