IBM Software Developer interview experience

Поделиться
HTML-код
  • Опубликовано: 1 янв 2025

Комментарии • 34

  • @MaheshR-k7n
    @MaheshR-k7n 17 дней назад +5

    After how many days of coding round did you get the next round?

  • @thefactAmaze
    @thefactAmaze Месяц назад

    No DSA questions in in-person interview?

  • @bhargavsai2449
    @bhargavsai2449 15 дней назад

    what was the pay boss?

  • @HardikChhallani
    @HardikChhallani Месяц назад +2

    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.

    • @anirudhhosur3827
      @anirudhhosur3827  Месяц назад +1

      Video assessment: Stay prepared to talk for 3 minutes straight on the topic. Relevant stuff, of course.
      All the best!

    • @thefactAmaze
      @thefactAmaze Месяц назад

      How it went Hardik?

    • @HardikChhallani
      @HardikChhallani Месяц назад

      @@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.

    • @thefactAmaze
      @thefactAmaze Месяц назад

      ​@@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.

    • @HardikChhallani
      @HardikChhallani Месяц назад

      @@thefactAmaze in the OA I was asked some persona based questions like challenges faced and all

  • @achyutkundu3249
    @achyutkundu3249 16 дней назад

    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 ?

    • @surekap9696
      @surekap9696 14 дней назад

      Can you tell me how you pass all the test cases

    • @achyutkundu3249
      @achyutkundu3249 14 дней назад

      @surekap9696 by writing the current code !!!!!!!!!

    • @THEBIGB-m2h
      @THEBIGB-m2h 8 дней назад

      Hi bro can we attempt the test in python language

  • @Samyak4236
    @Samyak4236 27 дней назад

    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 ????

    • @lohitinti9797
      @lohitinti9797 23 дня назад

      Same here bro I got coding assessment link mail
      Have you written that exam?

    • @Samyak4236
      @Samyak4236 23 дня назад

      @@lohitinti9797yes bro there was 2 coding questions and i solve both correctly and submitted also it was pretty easy

    • @lohitinti9797
      @lohitinti9797 23 дня назад

      @@Samyak4236 if you don't mind can you share it with me?

    • @Samyak4236
      @Samyak4236 23 дня назад

      @ 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).

    • @amrutvade802
      @amrutvade802 23 дня назад

      I got email and assessment link today . Could you please tell me exam pattern and codi mg question. It is easy?

  • @NarayanaOgirala
    @NarayanaOgirala 10 дней назад

    In coding round i cleared one code with all test cases and other one 6 test cases are passed is there any chance to next round

    • @Chandu-lc7lq
      @Chandu-lc7lq 8 дней назад +1

      Did you get the communication mail narayana??

    • @THEBIGB-m2h
      @THEBIGB-m2h 8 дней назад +1

      Hi bro can we attempt the test in python language

    • @NarayanaOgirala
      @NarayanaOgirala 8 дней назад

      @@Chandu-lc7lq not yet what about you ??

    • @NarayanaOgirala
      @NarayanaOgirala 8 дней назад

      @@THEBIGB-m2h yes there will be bunch of languages you can choose what ever you want