Test Library
Browse our 420+ tests that cover all popular programming languages, software engineering frameworks, databases, DevOps, finance, accounting, cloud, psychometry, and aptitude skills.
Virtual Assistant
mediumWhen hiring a virtual assistant, behavioral assessments can be helpful in identifying candidates with the necessary skills and qualities.
Hadoop
mediumThe Hadoop test is an assessment designed to evaluate a candidate's expertise in various sub-skills related to the Hadoop ecosystem.
ASP .Net
mediumThe ASP .Net assessment evaluates a candidate’s proficiency in using Microsoft’s ASP .Net framework for developing web applications.
Dart
mediumThe Dart test evaluates a candidate's proficiency in the Dart programming language, including their understanding of programming concepts, syntax, and best practices.
Matrix Chain Multiplication using Dynamic Programming
hardGiven a chain of matrices A1, A2, ..., An, the goal is to determine the order in which to multiply them to minimize the number of scalar multiplications needed to compute the final product.
Longest Common Subsequence using Recursion and Dynamic Programming
hardGiven two strings, the goal is to find the length of the longest common subsequence that they share.
Linear-time maximum sum sub-array with maximum length
mediumThe goal is to find a sub-array in a given array such that the sum of its elements is maximized and, additionally, the length of the sub-array is maximized.
N-Queens using Recursion to print one of the solutions in binary format
hardThe logic uses backtracking to find all possible solutions to the problem of placing N queens on an NxN chessboard such that no two queens attack each other.
Fibonacci series using Dynamic Programming
mediumYou are required to write a program using Dynamic programming to implement the Fibonacci series.