Peer Programming Round: A coding problem statement was given which had to be implemented in 4 hours. The reviewer was not interested in understanding the approach.
Application Developer Associate Interview Questions
24,624 application developer associate interview questions shared by candidates
Check a number of hosts for a specific daemon and report the hosts where it is not running.
Given a single-line text string and a maximum width value, write the function 'string justify(string text, int maxWidth)' that formats the input text using full-justification, i.e., extra spaces on each line are equally distributed between the words; the first word on each line is flushed left and the last word on each line is flushed right.
Problem solving: 1. Given a no. Find next highest no. containing same digits. 2. Given a array and a value k. Find all unique pairs that sums up to k. 3. Anagram check. 4. Given a array, i, j. Find all nos. such that j > i and array[j] > array[i]. 5. Boolean matrix problem. make all the values in a row or column as '1' if there is at least one '1' in that row or column. 6. Given a array where consecutive digits differences out to particular set of values and no. 'k'. Find the index of 'k'. Use hashing. Scripting: 1. Given a log file containing req ID and time consumed. Find all req. IDs consuming time more than certain seconds. Red ID: xyz Time: 10 2. Given a file containing 'Stundent,Marks'. Sum the marks of students and display totals marks student wise. I/P: Stud1,20 Stud2,30 Stud1,10 Stud2,30 O/P: Stud1,30 Stud2,60
Unexpected: How do you see the contents of a .mat file without loading it into the workspace?
Explain why virtual short happen in opamp?
What does HTML stand for?
What is the superclass of cat and dog?
(Programming Language Test) When casting an object of a polymorphic class from a base class, which kind of cast executes only if it's is valid?
Given a sorted sequence of 1 million numbers, write a program to find all pairs of numbers that add to 10.
Viewing 41 - 50 interview questions