Candidatei-me online. O processo levou 1 dia. Fui entrevistado pela Valuefy Solutions em set. de 2025
Entrevista
It was a technical round with an AI bot called BabbleBots
It was decent, I wouldn't call too easy or too difficult. I am not sure if AI was able to understand properly the things I articulated, as a human would. I didn't get a selection call or mail for further rounds, it's been a week.
Perguntas de entrevista [3]
Pergunta 1
JS
---
1. obj is passed to fn => when fn is modifying it - how to remove ref
2. spread operator only deep copies 1 layer, how to handle enitre deep copy
3. if we have setTimeout with 0 ms then how will EventLoop handle
DBMS
----
1. How to ensure safe money transfer between bank accounts ? my answer ACID
2. In a social media app - I have to store posts. then will I choose SQL or NoSQL justify
NodeJS
------
1. if a object in utility file gets updated and the update is not received by other files reading this service, how is nodejs module caching involved ? and how to ensure proper state management in nodejs
2. how to process a large csv file which is causing load and delay, without offloading to another service ?
3. how to serve a video to user ? it's crashing ?
4. if we get memory out of heap ? how will I debug and what role does os has to play in it ?
Candidatei-me por meio de uma faculdade ou universidade. O processo levou 3 dias. Fui entrevistado pela Valuefy Solutions (Allahabad) em nov. de 2024
Entrevista
The interview consists of 4 rounds in Valuefy :
1.Online Assesment consist of 4 questions
2.Group Discussion on a particular topic at least in my round it was AI and reaplaced developers.
3.Technical round generally consist of same questions same as OA asking as well as project discussion.
4.HR round
Perguntas de entrevista [2]
Pergunta 1
Find All Triplets With x Sum:
You are given an array Arr consisting of n integers, you need to find all the distinct triplets present in the array which adds up to x.
An array is said to have a triplet {arr[i], arr[j], arr[k]} with x sum if there exists three indices i, j and k such that i!=j, j!=k and i!=k and arr[i] + arr[j] + arr[k] = x.
Note :
1. You can return the list of values in any order. For example, if (x=0)if a valid triplet is {1, 2, -3}, then (2, -3, 1), (-3, 2, 1) etc is also valid triplet. Also, the ordering of different triplets can be random i.e if there are more than one valid triplets, you can return them in any order.
2. The elements in the array need not be distinct.
3. If no such triplet is present in the array, then return an empty list, and the output printed for such a test case will be "-1".
Given an array nums of n integers and an integer k, determine whether there exist two adjacent
subarrays
of length k such that both subarrays are strictly increasing. Specifically, check if there are two subarrays starting at indices a and b (a < b), where:
Both subarrays nums[a..a + k - 1] and nums[b..b + k - 1] are strictly increasing.
The subarrays must be adjacent, meaning b = a + k.
Return true if it is possible to find two such subarrays, and false otherwise.
Candidatei-me por meio de uma agência de recrutamento. Fiz uma entrevista na empresa Valuefy Solutions.
Entrevista
They took 4 rounds of interview and after the 4th round rejected me without giving any proper reason. Their interview portal also had issues which made the experience really frustrating.