Oyo Interview ExperienceReadDiscussCoursesPracticeImprove Article ImproveSave Article SaveLike Article LikeTest:15-20 MCQs (OOPs, OS, DBMS, Time complexity, classes)Write a program to check whether given string of parenthesis is balanced or not.INPUT:2{[]}()[[[]]()OUTPUT:YESNOWrite a code to rotate a two dimensional matrix clockwise by 90o INPUT:3 31 2 3 45 6 7 89 10 11 1213 14 15 16OUTPUT:13 9 5 114 10 6 215 11 7 316 12 8 4Interview:ROUND #1:Resume based questions.Write a code to print leaf nodes from left to right.Do you know what is BST, Design in BST and insert a new element in it.AVL tree rotations.Rearrange a string so that all the same characters are at d distance apart from each other and return -1 if not possible (Note: more than one possible answers).INPUT:2abbac 2abbbcd 3OUTPUT:ababc-1ROUND #2:Write a program to find the minimum absolute difference between the elements of array taking one number from array1 and another from array2.INPUT:25 61 2 3 5 60 4 0 7 8 93 31 2 34 5 1OUTPUT:10Afterwards, he increased the size of the array to 10^100 and sorting was not allowedHINT: Range of integer is fixed and 10^9 is very small as compared to input 10^100What are processes and threads?ROUND #3:What are the processes? What are threads? How they are different from each other?What is a deadlock? Design one deadlock?Write a program to reverse a stack without using an auxiliary stack.Last Updated : 26 Oct, 2018Like Article Save Article Please Login to comment...