1. Design a Chess game using object-oriented principles.
2. Partial BST Problem Statement Check if a given binary tree is a Partial Binary Search Tree (BST). A Partial BST adheres to the following properties: The left subtree of a node contains only nodes with data less than or equal to the node’s data. The right subtree of a node contains only nodes with data greater than or equal to the node’s data. Both left and right subtrees must also be Partial BSTs. Input: The first line contains an integer 't', the number of test cases. Each test case is described by the next lines: The elements of the tree in level order form, space-separated. Use -1 to denote the absence of a child node. Output: For each test case, return 'true' if the binary tree is a Partial BST, 'false' otherwise. Each result will be on a separate line. Example: Input:11 2 3 4 -1 5 6 -1 7 -1 -1 -1 -1 -1 -1Output:true Constraints: 1 ≤ T ≤ 100 1 ≤ N ≤ 1000 -109 ≤ data ≤ 109 Note: You are not required to print anything; the implementation should simply return the result.
3. Given two sorted arrays, merge them into one sorted array.
4. What are the differences between various types of JOIN operations, and can you provide examples?
5. Describe the low-level system design of Instagram.
Browse through a variety of job opportunities tailored to your skills and preferences. Filter by location, experience, salary, and more to find your perfect fit.
We have sent an OTP to your contact. Please enter it below to verify.