I Have apply for IBM software engineering intern in India. It is an on-campus internship opportunity. After given coding assessment, today i got mail for video assessment. Can you tell me some resources to prepare for it.
@@thefactAmaze went pretty well. But haven't heard from them anything till now. Might be because of end sem exams, so placement cell halt them. Anyways hoping for the best.
@@HardikChhallani I have given the OA was pretty easy, waiting for next steps. Could you clarify was it same as mentioned in the video, or had dsa questions, cs fundamentals, etc? Also do we have to explain pseudocode or write complete solution? Sorry asking so many questions but I really want to crack the opportunity.
I had the exam . There were 2 mid level hackerrank problems. From 2 questions I had done 1 question with all test cases and another one 13 out of 15 test cases. Is there any possibility? Could you Plz help me ?
i got the mail and Assessment link yesterday for the role of Software Developer & also so can you tell me about things to be prepared like Im into frontend mainly so what should i prepare more and i haven't started DSA so gonna Start now can you tell me from where should i begin the DSA Thing ????
@ sure mate here you go : Question 1: A scheduler manages multiple processes with priorities represented by the letters a,b,c. Its goal is to optimize the schedule to achieve a specific sequence The operations available to the schedule are as follows: Choose a process with priority a,b, or c. Insert the chosen process into the scheduling queue at any position Determine the minimum number of scheduling operations required to ensure that the scheduling queue follows the repeating pattern “abc” Example Given, s = “abb”. Transform the queue to abcabc by inserting two letters c, and one letter a. The string “abcabc” is the concatenation of “abc” two times The minimum number of scheduling operations required is 3 Function description Complete the function findMinOperations in the editor below findMinOperations takes the following parameters: Returns Int: the maximum number of operations required to make the queue a concatenation of ‘abc’ several times Sample output is 4 Question 2: In an edge computing environment, required hardware includes edge devices, input peripherals, and bundles that encompass both types. Each resource comes at a cost, with edge devices priced at edgeDeviceCost, peripherals at く inputPeripheralCost, and bundles at bundleCost. 2 The challenge is to optimize the procurement of resources. The objective is to ensure the provision of the right quantities of edge devices and peripherals, allowing for a degree of flexibility, and accommodating extra equipment. This flexibility is provided to meet the requirements of the environment, which necessitates x edge devices and y peripherals. The primary goal is to minimize costs while simultaneous y guaranteeing that the edge computing environment is equipped with all the essential resources. Compute and return the total expenditure. Example edgeDeviceCost = 1 inputPeripheralCost = 2 bundleCost = 2 x= 2 y= 1 The most cost-effective strategy is to purchase 1 edge device and 1 bundle pack with a total of 1 + 2 - 3 units. Any other approach results in a higher cost. The minimum total expenditure is 3 units. Function Description Complete the function getMinimumCost in the editor below. getMinimumCost has the following parameters): device int edgeDeviceCost: the cost of an edge int inputPeripheralCost: the cost of an input peripheral int bundleCost: the cost of a bundle containing both, an edge device and an input peripheral int x: the number of edge devices required int y: the number of input peripherals required Returns long: the minimum expenditure necessary to ensure that the edge computing environment fully equipped Constraints • 1 ≤ edgeDeviceCost, inputPeripheralCost, bundleCost, x, y ≤ 109 Input Format For Custom Testing The first line contains an integer edgeDeviceCost. The second line contains an integer ALL inputPeripheralCost. The third line contains an integer bundleCost. ① The fourth line contains an integer x. The fifth line contains an integer y. く • Sample Case 0 Sample Input For Custom Testing 2 STDIN FUNCTION 3 → edgeDeviceCost = 2 → inputPeripheralCost = 2 1 → bundleCost = 1 4 → X = 4 3 → y = 3 Sample Output 4 Explanation The optimal strategy is to buy 4 bundles for 4 units of money. This provides the environment with 4 edge devices (x≤ 4) and 4 peripherals (y< 4).
I Have apply for IBM software engineering intern in India. It is an on-campus internship opportunity. After given coding assessment, today i got mail for video assessment. Can you tell me some resources to prepare for it.
Video assessment: Stay prepared to talk for 3 minutes straight on the topic. Relevant stuff, of course.
All the best!
How it went Hardik?
@@thefactAmaze went pretty well. But haven't heard from them anything till now. Might be because of end sem exams, so placement cell halt them. Anyways hoping for the best.
@@HardikChhallani I have given the OA was pretty easy, waiting for next steps.
Could you clarify was it same as mentioned in the video, or had dsa questions, cs fundamentals, etc?
Also do we have to explain pseudocode or write complete solution?
Sorry asking so many questions but I really want to crack the opportunity.
@@thefactAmaze in the OA I was asked some persona based questions like challenges faced and all
I had the exam . There were 2 mid level hackerrank problems. From 2 questions I had done 1 question with all test cases and another one 13 out of 15 test cases. Is there any possibility? Could you Plz help me ?
Can you tell me how you pass all the test cases
@surekap9696 by writing the current code !!!!!!!!!
what was the pay boss?
After how many days of coding round did you get the next round?
i got the mail and Assessment link yesterday for the role of Software Developer & also so can you tell me about things to be prepared like Im into frontend mainly so what should i prepare more and i haven't started DSA so gonna Start now can you tell me from where should i begin the DSA Thing ????
Same here bro I got coding assessment link mail
Have you written that exam?
@@lohitinti9797yes bro there was 2 coding questions and i solve both correctly and submitted also it was pretty easy
@@Samyak4236 if you don't mind can you share it with me?
@ sure mate here you go :
Question 1: A scheduler manages multiple processes with priorities represented by the letters a,b,c. Its goal is to optimize the schedule to achieve a specific sequence
The operations available to the schedule are as follows:
Choose a process with priority a,b, or c.
Insert the chosen process into the scheduling queue at any position
Determine the minimum number of scheduling operations required to ensure that the scheduling queue follows the repeating pattern “abc”
Example
Given, s = “abb”.
Transform the queue to abcabc by inserting two letters c, and one letter a. The string “abcabc” is the concatenation of “abc” two times
The minimum number of scheduling operations required is 3
Function description
Complete the function findMinOperations in the editor below
findMinOperations takes the following parameters:
Returns
Int: the maximum number of operations required to make the queue a concatenation of ‘abc’ several times
Sample output is 4
Question 2: In an edge computing environment, required hardware includes edge devices, input peripherals, and bundles that
encompass both types. Each resource comes at a cost, with edge devices priced at edgeDeviceCost, peripherals at
く
inputPeripheralCost, and bundles at bundleCost.
2
The challenge is to optimize the procurement of resources. The objective is
to ensure the provision of the right quantities of edge devices and peripherals, allowing for a degree of flexibility, and accommodating extra equipment. This flexibility is provided to meet the requirements of the environment, which necessitates x edge devices and y peripherals. The primary goal is to minimize costs while simultaneous y guaranteeing that the edge computing environment is equipped with all the essential resources. Compute and return the total expenditure.
Example
edgeDeviceCost = 1
inputPeripheralCost = 2
bundleCost = 2
x= 2
y= 1
The most cost-effective strategy is to purchase 1 edge device and 1 bundle pack with a total of 1 + 2 - 3 units. Any other approach results in a higher cost. The minimum total expenditure is 3 units.
Function Description
Complete the function getMinimumCost in the editor below.
getMinimumCost has the following parameters):
device
int edgeDeviceCost: the cost of an edge
int inputPeripheralCost: the cost of an input peripheral
int bundleCost: the cost of a bundle
containing both, an edge device and an input peripheral
int x: the number of edge devices required
int y: the number of input peripherals required
Returns
long: the minimum expenditure necessary to ensure that the edge computing environment fully equipped
Constraints
• 1 ≤ edgeDeviceCost, inputPeripheralCost, bundleCost, x, y ≤ 109
Input Format For Custom Testing
The first line contains an integer edgeDeviceCost.
The second line contains an integer
ALL
inputPeripheralCost.
The third line contains an integer bundleCost.
①
The fourth line contains an integer x.
The fifth line contains an integer y.
く
• Sample Case 0
Sample Input For Custom Testing
2
STDIN
FUNCTION
3
→
edgeDeviceCost =
2
→
inputPeripheralCost = 2
1
→
bundleCost = 1
4
→
X = 4
3
→
y = 3
Sample Output
4
Explanation
The optimal strategy is to buy 4 bundles for 4 units of money. This provides the environment with 4 edge devices (x≤ 4) and 4 peripherals (y< 4).
I got email and assessment link today . Could you please tell me exam pattern and codi mg question. It is easy?
No DSA questions in in-person interview?