What's your strength?
Computer Technical Support Interview Questions
5,374 computer technical support interview questions shared by candidates
Technical questions in reference to computer networks and hacking.
Implement a Linked List class (for ints only) that supports an append function, which simply appends to the end of the list. After that, they asked me to implement an appendAt function that takes two ints as arguments, and appends the second argument to the node containing the first argument in the list. e.g for a list 1 -> 2 -> 3 -> 4 -> 5 , appendAt(3,6) would result in a list: 1 -> 2 -> 3 -> 6 -> 4 -> 5 e.g for a list 1 -> 2 -> 2 -> 3 -> 4 -> 5, appendAt(2,8) would result in: 1 - > 2 -> 8 -> 2 -> 3 -> 4 -> 5 (i.e if the first argument appears more than once in the list, then append the second argument to the first instance of the node containing the first argument) I gave an iterative solution to the problem. The interviewer then asked me to write it recursively. This one is really easy, I faltered on it for some reason.
Why do you want to apply?
Are familiar with what a bridge is and how to support it?
we are going to be able to come to the point of the pedestrian.
On the basics of Engineering & programming skills & also on the project & internship done by the person. On the basics of Engineering & programming skills & also on the project & internship done by the person
where are you from dear?
What is the biggest challlenge in computing today
1. Where have you used type traits? 2. How is runtime polymorphism achieved? 3. What methods you know to fit a set of points in a plane 4. Mostly leetcode mediums but one hard
Viewing 301 - 310 interview questions