Ho presentato la mia candidatura tramite l'università. Ho sostenuto un colloquio presso Qubercomm Technologies nel mese di ago 2020
Colloquio
Online coding and aptitude round 2 or 3 coding questions Technical interview few conceptual questions and asked to code a solution for a specific problem and HR interview self introduction and questions on data structures
Domande di colloquio [1]
Domanda 1
The interview section mainly consisted of me coding the solution for a problem and explaining it
Ho presentato la mia candidatura tramite l'università. La procedura ha richiesto un giorno. Ho sostenuto un colloquio presso Qubercomm Technologies (Chennai) nel mese di ago 2019
Colloquio
Round 1 - Asked to solve 4 question of C programs(3 were easy), need to write the program on paper(descriptive), out of 286 only 16 were selected for round 2.
Round 2 - Technical interview 1, questions were based on C (basics) and from the answer sheet of round 1.
Round 3 - Technical interview 2, a puzzle was given to solve, questions were from resume, about the projects we have done.
Round 4 - HR, asked about family background, what are your interests (should say networking and wireless) but i mentioned web development and data science as my subject of interest in my resume, which did not go very well as they are only looking for people who are interested in networking and wireless.
Note: Please refer the company and their products before applying as they are looking for people who are passionate in their domain wireless and networking.
Domande di colloquio [2]
Domanda 1
(Round 3) You have 3 baskets, one with apples, one with oranges and one with both apples and oranges mixed. Each basket is closed and is labeled with ‘Apples’, ‘Oranges’ and ‘Apples and Oranges’. However, each of these labels is always placed incorrectly. How would you pick only one fruit from a basket to place the labels correctly on all the baskets?
(Round 1)
1. Write a C program to remove all the substrings if it has a word having even no. of characters(string length) preceded by a word having odd no. of characters. (not including the double quotes)
eg. input - "this is a abcd question and pqrs"
output - "this is a question and"
2. Write a C program to modify the 4 byte of a 32 - bit word such that if each byte of LSB and MSB is set then the 2nd byte and 4th byte is swaped, the LSB and MSB of 1st and 3rd byte are reset.
3. Write a C program to input a number and modify the number such that if a digit of that number is odd then it should be replaced with its immediate value (eg. if the digit is 3 then it should be replaced as 4, if the digit is 9 it should be replaced with 0)
input - 24530976
output - 24640086
4. Write a recursive function in C to check if two trees A and B are equal to print TRUE else print FALSE, then if it is true print the sum of all the elements(node's data) of that binary tree (either for A or B) . Only write the necessary function.