Multithreading , C++ basic polymorphism related questions and related to pointers are there.
C Software Engineer Interview Questions
1,000 c software engineer interview questions shared by candidates
1. Adjacency - codility 2. Sorting - codility 3. Stacks - codility 4. Casting in C vs. casting in c++ - technical interview
Was ist ein DB-Index, welche Varianten gibt es, warum ist die Reihenfolge bei mehreren Spalten wichtig
On-site interview: Various topics on C++, OO and Python
Online interview: What is the runtime complexity of the C++ container you used?
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] */
Q1. Quick sort algorithm and Merge sort algorithm and which one is better on linked list. Q2. Dynamic memory allocation and use cases of malloc, calloc, realloc and new. Q3. Some codes were given on pointers and few questions were asked. Q4. One Problem was given which required topological sort approach.
Implement the Singleton design pattern.
Operator Overloading question
Talk the differents of memory management between Java and C++
Viewing 981 - 990 interview questions