Find the min and max in an array. Now do it in less than 2n comparisons. (they were looking for the solution that finds both max and min in about 3/2 n comparisons).
Desarrollador De Software Interview Questions
Desarrollador De Software Interview Questions
El desarrollo de software es una trayectoria profesional muy demandada, y también es un puesto que puede ofrecer oportunidades de altos ingresos y de realización profesional. A la hora de realizar una entrevista para un puesto de desarrollador de software, es probable que te hagan preguntas sobre tus habilidades técnicas y sociales, y sobre cómo sueles gestionar los proyectos para asegurar su eficiencia.
Preguntas de entrevista más frecuentes para desarrollador/a de software y cómo responderlas
Pregunta n.º 1: ¿A qué tipo de desarrollo de software te dedicas actualmente?
Pregunta n.º 2: Describe un problema de desarrollo al que hayas tenido que hacer frente y explica cómo lograste solucionarlo.
Pregunta n.º 3: ¿Cómo sueles abordar el proceso de QA?
665,636 desarrollador de software interview questions shared by candidates
Improve this piece of code, loop tracing, very basic printing problem
Write a function to modify a singly linked list, appending copies of the first N-1 elements to the end in reverse order. For example, ['A', 'B', 'C', 'D'] becomes ['A', 'B', 'C', 'D', 'C', 'B', 'A'].
There will be a meeting at New York and San Francisco offices. We will have to fly the participants to either one of these two offices. Let's say each office can accommodate half of the participants. Our goal is to assign each participant to an office in a way that the total travel cost for the company is minimized. What is this minimal cost? SF NY A 500 700 B 200 600 C 400 500 D 600 200 Output : 1400 (A:500 + B:200 + C:500 +D: 200)
Find an algorithm to find the largest sum subarray in an array of integers. (Better than O(n^2) ).
Questions were asked to check basic knowledge of OOPS concepts, String manipulation, Data Structures. Not very hard questions but were good enough to check concept.
Count bits in a byte.
written test on basic java you can crack if you are average concept in java.
Say I have a deck of 52 cards, regular deck of cards. I put a joker in the deck somewhere and shuffle it up. Now I start dealing you cards until the joker shows up. Once it shows up, I stop dealing you cards. What is the probability that you have, in your set of cards, all 4 aces?
Write some pseudo code to raise a number to a power.
Viewing 131 - 140 interview questions