Skip to content

Chaldal

Founding year2013
Company Websitehttps://chaldal.com/
Career Websitehttps://chaldal.tech/
Technologies Used.NET, F#, C#, SQL Server, TypeScript, JavaScript, Xamarin, Android, React, React Native, Microsoft Orleans

Introduction

Chaldal.com, founded in 2013, is a grocery e-commerce platform in Bangladesh. They maintain the whole system by themselves. So, they are a tech company too and arguably one the most prestigious tech company in bangaldesh

Interview Stages

Chaldal interview process has 3 stage

  1. Apltitude Test: Basic reasoning, vocabulary, maths etc
  2. First round Interview: There will be 2 seperate interview. The questions asked depend on the interviewer. They may be coding or technical or both. Two yes will lead to next round. 1 yes and 1 no gives you a third chance.
  3. CTO round: It is kind of a behavioural round. But the questions can be coding or technical.

Questions

Tell me about yourself? Why do you want to join chaldal

You have been provided a spiral matrix of size NXN along with a coordinate (x, y) as follows. Find the element at the position (x, y) of the matrix. N = 4, x = 2, y =1

1234
121314 5
11 16156
10 987

Given a number in roman format. Convert it to arabic numeral.

Given a string of characters. Reverse the string without using any library function.

Given a string of characters. Check if the given string is a palindrome.

Given an positive integer n. Find the sum of even fibonacchi number upto nth term.

💻 Submit Code

Given a string of characters [0-9]. Convert it to integer.

💻 Submit Code

Given an array of integers. Generate all possible permutation of the given array.

💻 Submit Code

Given an array of integers. Generate all possible subset of the given array.

💻 Submit Code

Given a regex expression and a string. Check if the regex expression matches with the string.

Each student is assigned to an assignment at a particular location at a specific time. Are there any inconsistencies in the assignments ? Find at least one of them by looking into the input. Then write a code to print all inconsistencies in the assignments.

Implement Game of Life

Find digits from a string( Leading zeroes doesn't get counted)

Given a string s containing lowercase lattin letters and another string p containing lowercase lattin letters and * and ?. * means any substring possibly empty. ? means any character but single.

Print yes or no if both strings matches. [RegEx Matching]

💻 Submit Code

About project: What have you done in the authentication part in your project? Also how did you specify roles for different users.

Write a function which converts decimal number to hexadecimal

💻 Submit Code

Write a function which finds all the subset of a given set.

💻 Submit Code

Given a set of orderings of letters, determine their topological sorting order. The orderings are provided as strings. For example, given the input ["A>B", "B>C", "C>D"], the expected output is "ABCD".

Given two numbers represented as arrays of characters in decimal format, add them and return the result in the same format. For example, Input: ['1', '2', '3'] and ['4', '5', '6'] Output: Output: ['5', '7', '9']

💻 Submit Code