What are the most challenging tasks you faced in your previous projects and how did you handle them
Senior Engineer Interview Questions
107,098 senior engineer interview questions shared by candidates
One of the question was on Designing & Code a TTL Cache with some modifications
Describe a circuit that implements the following truth table using only NAND gates. A B OUT 0 0 1 0 1 1 1 0 0 1 1 1
Calculate fifo depth for following data rate Writing Data = 80 DATA/100 Clock (Randomization of 20 Data’s) Outgoing Data= 8 DATA/10 Clock. Burst size = 160
Probability of a knight making a valid move on NxN matrix in m steps.
Given an NxN matrix, find out the number of ways to get to the NxNth cell from the 1x1 cell...
Given an array with duplicate elements give an algorithm to get the count of distinct elements in the array
2. /** * A tournament tree is a binary tree * where the parent is the minimum of the two children. * Given a tournament tree find the second minimum value in the tree. * A node in the tree will always have 2 or 0 children. * Also all leaves will have distinct and unique values. * 2 * / \ * 2 3 * / \ | \ * 4 2 5 3 * * In this given tree the answer is 3. */ class Node { Integer value; Node left, right; Node(Integer value, Node left, Node right) { this.value = value; this.left = left; this.right = right; } } class Solution { /** * This should return the second minimum * int value in the given tournament tree */ public static Integer secondMin(Node root) { } }
1.How to find the nearest parent of any two nodes in a given tree. Tree has mother and father nodes.
All the basic questions on my subject
Viewing 121 - 130 interview questions