specific c++ (version 11) questions. they dont care if you know the previous version of c++ 10/10. learn shared_ptr, unique_ptr, scoped_ptr etc and other new features in c++ 11 in and out.
Software Engineers Interview Questions
419,688 software engineers interview questions shared by candidates
Given an list of movies return how many times each movie occur in alphabetical order.
Given a MxN matrix where each element can either be 0 or 1. We need to find the shortest path between a given source cell to a destination cell.
Reverse words in a string but keep the punctuation marks in the same order. "Hello, world!"would end up being "world, Hello!"
What are the attributes of the anchor tag? How do you get an image within a webpage, clicking on which can take you to another webpage?
Technical Given an unsorted array of numbers (that may contain repeated numbers), print or produce a data structure that contains all the pairs that have a sum equal to a number k. Do not include pairs that are the same numbers in a different order. Ex. [3,2,6,2,0,5,3,8,7,10] [(0,10),(2,8),(3,7)]
Implement a method to check if a tree is unival
string to int and add them
How would you code a function to tell the size of your CPU (i.e. if it is 32 bit, 64 bit etc.) without the use of sizeof or other helpful functions?
Given a string of words, reverse the words. Ex: "I like cats" --> "cats like I"
Viewing 2151 - 2160 interview questions