Two coding questions Two error-fixing questions maths for programming Logic
Software Deveoper Interview Questions
4 software deveoper interview questions shared by candidates
they were asking about the last project and the work i am doing in my current company. mostly technical and behavioural questions , 2-4 coding questions too , those were easy so not to worry.
Tell me about yourself remove the errors and run this code successfully Explain OOP concept with real world examples JAVA is interpreted or not? how?
Given a set of time intervals in any order, our task is to merge all overlapping intervals into one and output the result which should have only mutually exclusive intervals. Input: Intervals = {{1,3},{2,4},{6,8},{9,10}} Output: {{1, 4}, {6, 8}, {9, 10}} Explanation: Given intervals: [1,3],[2,4],[6,8],[9,10], we have only two overlapping intervals here,[1,3] and [2,4]. Therefore we will merge these two and return [1,4],[6,8], [9,10]. Input: Intervals = {{6,8},{1,9},{2,4},{4,7}} Output: {{1, 9}}
Viewing 1 - 10 interview questions