Write some pseudo code to raise a number to a power.
Senior Software Engineer Interviews
Senior Software Engineer Interview Questions
"Senior software engineers are the most experienced member of a software team and usually carry the most responsibility and authority of that team. Because of this, interviews will be designed to find candidates who have expert knowledge of the field and years of experience as a software engineer. Expect to be asked tough technical questions and to give examples of previous projects that you have worked on."
63,839 senior software engineer interview questions shared by candidates
Given an array of numbers, replace each number with the product of all the numbers in the array except the number itself *without* using division.
What sort would you use if you required tight max time bounds and wanted highly regular performance.
Given an array of numbers, replace each number with the product of all the numbers in the array except the number itself *without* using division.
Coderpad: given an array scores[][] = {“jerry”,”65”},{“bob”,”91”}, {“jerry”,”23”}, {“Eric”,”83”}} Find the student with highest average score
Consider an X x Y array of 1's and 0s. The X axis represents "influences" meaning that X influences Y. So, for example, if $array[3,7] is 1 that means that 3 influences 7. An "influencer" is someone who influences every other person, but is not influenced by any other member. Given such an array, write a function to determine whether or not an "influencer" exists in the array.
Write a probability formula to tell how many bits will be changed when 1 is added to a 32 bit binary number.
In a stream of integers from 1 to n, only one number will be repeated. How can you tell what that number is?
Traverse nodes in a binary tree
Create a stack of numbers where the maximum number is always known.
Viewing 1 - 10 interview questions