Ask C keywords, like versatile, static...
Software Engineer Interviews
Software Engineer Interview Questions
Software engineers write programs to design and develop computer software. Interviews are highly technical, so come ready to work through coding problems and math brainteasers. The specific questions you are asked will depend on what type of programming position you are looking for. Try researching a specific software discipline such as web development, application development, or system development.
Top Software Engineer Interview Questions & How to Answer
Question #1: How would you describe your programming task process?
Question #2: Which programming languages do you know and prefer?
Question 3: What is an example of a successful project that you completed?
419,688 software engineer interview questions shared by candidates
If we have a string : "abc ef 12 g", write a function that takes the pointer to the string reorganizes the string to be: "g 12 ef abc". Note that there are 3 spaces after abc, 2 spaces after ef, and 1 space after 12 in the original string, but the spaces are reversed. So in essence, write a function to reverse a string and then put the words between the spaces back in order. And the string length can be known or not.
write a function to check if an unsigned integer is a power of 2. if it is a power of 2, return the power. otherwise return 0.
Using only two pointers how can you tell if a linked-list cycles?
NDA
Finding the minimum k elements of a list
write a function to check the validity of a binary search tree
Given some indeterminate amount of possible values for a coin, count all different ways that those coins could be used to make some specified number n. Return the number of different ways possible.
1 sys design, 3 lc medium coding questions
Count the 1s in the number
Viewing 2441 - 2450 interview questions