isPalindrome: /// /// The goal of this function is to determine if a string is /// a palindrome. e.g. radar if spelled backwards is radar /// /// String to test /// true if palindrome, false if not // abba abcd
Junior C Entwickler Interview Questions
40 junior c entwickler interview questions shared by candidates
Design a parking garage with 3 different sizes
What is your gpa?
Why did you choose your university?
Typical behavioural, easy array based technical
(technical interview) You have two arrays: A and B. A contains ints and B has pairs: (element from A, the number of elements that are larger than that element and to the right of it in A). for example: A = [4,3,5] B = [(5,0), (3,1), (4,1)] Given array B, recreate array A
Not software engineering questions. Sql questions, nothing about oop or programming questions.
Q: What is an abstract class?
Normalize a file path/directory: /// /// /// Normalizes the path, meaning that you reduce any unnecessary directory. /// For example, given the value notneeded1/notneeded2/../../hello you would /// return hello. /// /// /// input string /// Normalized string /* * Sample Directory structure * - home * -- documents * -- desktop * -- myMedia * ----- photos * ----- videos * ----- music * -- downloads * /home/myMedia/photos/../../documents -> /home/documents * /home/myMedia/photos/../documents/.. -> /home/myMedia * /home/myMedia/../documents -> /home/documents * ../home -> ../home * home/../../final -> ../final * /home/myMdeia/documents -> /home/myMdeia/documents * Case 1: * C:\ [current working directory] * cd hello [command operating on cwd] * C:\hello [final path] * Case 2: * C:\ [current working directory] * cd notneeded1/notneeded2/../../hello [command operating on cwd] * C:\hello [final path] */
Multithreading question regarding integer over/under flow, data races, etc…
Viewing 31 - 40 interview questions