Example of behavioral question: tell me about something you have learnt in your job. Example of code challenge question: given an array of ordered strings (with some empty strings in the middle), return the index of a given string (which may or may not actually be present in the array). Usually, the questiosn aren't too difficult (no smart gotchas), but they expect you to present a very structured answer (they want to know about the outcome of the situation you presented in the behavioral questions, or some discussion about the code you wrote - time complexity, space complexity, how to improve your code, maintainability, optimizations, tests, limitations, etc.).
Software Support Engineer Interview Questions
443 software support engineer interview questions shared by candidates
How would you calm down an upset client?
What would you do in a situation to where a urgent issue comes in and nobody is around to help. How would you approach this and who would you contact for help if required?
OOPs concepts OS basics problems
The first task involved automating a workflow using Groovy scripts and ScriptRunner, while the second focused on identifying errors and proposing effective solutions.
what motivates you to this interview?
Can you introduce yourself bit.
Determine the output of the following Java code: class B { public static void main(String[] args) { int k = 55; try { System.out.println("In try block"); int t = k/55; } catch (ArithmeticException e) { System.out.println("In catch block"); System.out.println("Dividing by zero but caught"); } finally { System.out.println("Execution, whether an exception occurs or not"); } } }
How would you implement a pattern like the one below using your familiar programming language? * ** *** **** *****
Given an array with 10 digits, describe the data structure you would use to find the summation of these values.
Viewing 431 - 440 interview questions