Pensando Systems,Bangalore| OA | Hackerrank | MTS
Anonymous User
1333

10 MCQs + 3 Coding Questions
MCQ questions were based on Compiler Design, Computer Networks, Computer Architecture and OS.
Coding Questions were as follows:

  1. https://leetcode.com/problems/pseudo-palindromic-paths-in-a-binary-tree/
  2. Find the number of islands of 1s in a matrix.
  3. Activity scheduling algorithm: You are given a series of tuples. The array may contain multiple identical tuples. Barring the first occurence, you must discard all other occurences. Ordering of the tuples must not change.
    Tuples were of the type
    struct data{
    double in_time;
    double out_time;
    double pid;};
Comments (2)