Technical Interview

Question 01

Write a Java program to find the factorial of a number.

Question 02

Create a simple HTML form with validation for email and password.

Question 03

Implement a binary search algorithm in C++.

Question 04

Implement a Linked List data structure with methods to add, remove, and find elements.

Question 05

Implement a solution for the 'Valid Parentheses' problem: Given a string containing just the characters '(', ')', '{', '}', '[' and ']', determine if the input string is valid. An input string is valid if open brackets are closed by the same type of brackets, and open brackets are closed in the correct order.