🎁 Exclusive Offer! Join our Telegram Channel to get **special discounts** and updates! 🚀

🚀 Struggling with coding interviews? We've got you covered! 💡 Practice real questions, sharpen your skills, and land your dream job! 🎯

Search Questions

Recent Questions

#1

2. Salesforce Latency Optimization

Given a Salesforce infrastructure with API nodes, cloud regions, and API edges (bidirectional API connections between them), the i-th connection links regions api_from[i] and api_to[i] with a latency of api_weight[i]. The max-latency of a region is the maximum latency of any API within that region.

Split this infrastructure into at most k independent region

Asked in: SALESFORCE


People Bought: 0

Price (in Rs): 171.00

#2

1. Salesforce Cloud server requests

In a Salesforce multi-cloud architecture, there is a circular network of m cloud servers, numbered from 1 to m, where servers 1 and m are adjacent. These servers handle various customer requests, and the latency between switching from one server to the next or the previous is given by an array, transitionTime[i], representing the time required to transition f

Asked in: SALESFORCE


People Bought: 0

Price (in Rs): 151.00

#3

Directory Structure (SDE Question) - Part A

You are given a directory structure represented as a tree, where each node represents a directory that can have any number of child directories.

- Each child directory will have a unique name.
- The second line of the input will contain the root name and its child directories.

Based on the given input, you have to construct the directory struct

Asked in: NAMMA_YATRI


People Bought: 0

Price (in Rs): 301.00

#4

Problem Statement

You are given an array arr of positive integers of size n. Each value in the array represents the number of toffees in a packet. Each packet can have any number of toffees. For example, if arr = [2, 3], this means that the first packet has 2 toffees and the second has 3 toffees. There are x students. The task is to distribute toffee packets among x students such that:

- Eac

Asked in: DataTroops


People Bought: 0

Price (in Rs): 101.00

#5

There are N trolleys used to transport products and each trolley is given a unique ID from 0 to N-1. A trolley operates for a certain time period and is able to carry products. For each trolley, the automated system stores three parameters i.e., the start and end time of operation (both inclusive) and units of products carried. A trolley can be operated within a specified period. No two trolleys c

Asked in: FLIPKART


People Bought: 0

Price (in Rs): 151.00

#6

Given three points a(x1, y1), b(x2, y2), and c(x3, y3), determine if they form a non-degenerate triangle. Then, check if two points, p(xp, yp) and q(xq, yq), are inside or on the triangle.

Return the corresponding scenario number:
0. The lines do not form a valid non-degenerate triangle.
1. Point p is inside the triangle, but point q is not.
2. Point q is inside the triangle, but point

Asked in: MEESHO


People Bought: 0

Price (in Rs): 151.00

#7

Vowel SubString

Given a string composed of lowercase letters within the ASCII range 'a'-'z', determine the number of substrings that consist solely of vowels, where each vowel appears at least once. The vowels are ['a', 'e', 'i', 'o', 'u']. A substring is defined as a contiguous sequence of characters within the string.
Example
s = 'aeioaexaaeuiou'

There is a substring to the left that is

Asked in: MEESHO


People Bought: 0

Price (in Rs): 171.00

#8

Coding Wars
There are 'N' coders standing in a line, where i denotes the ith position of a coder with a rating of Ri. All ratings are distinct.
You have to form a team of 3 from amongst them with the condition:
Any three coders with positions (i, j, k) and ratings ("Ri< Rj< Rk" or "Ri > Rj > Rk") and(1 <= i < j < k <= N)
You have to find out how many such teams exist (1 coder can be part of m

Asked in: AMAZON MICROSOFT


People Bought: 0

Price (in Rs): 151.00

#9

String Encoding
Encode a given string by collapsing consecutive instances of a single character into two pieces of information: the number of instances and the character. Note that even single characters should be run-length encoded. If the string is empty, return an empty string. Your implementation should work on all alphanumeric characters.
Function Description
Complete the function collapse

Asked in: AMAZON MICROSOFT


People Bought: 0

Price (in Rs): 51.00

#10

Break a Palindrome
A palindrome reads the same forwards and backwards, like "mom". Modify a palindrome by changing exactly one character to another character within the ASCII range [a-z].
The goal is to ensure the new string fulfills the following criteria:
1.It is not a palindrome.
2.It is alphabetically lower than the original palindrome.
3.It is the smallest possible string alphabetically

Asked in: AMAZON MICROSOFT


People Bought: 0

Price (in Rs): 151.00