Skip to content

Relisource

Introduction

For the Junior .NET Developer Position at first there was a 1 hour long written Exam which consisted 3 Questions (SQL Query, Problem Solving, JavaScript-HTML)

Questions

Select The Company name which has the lowest total emoployee count.
CompanyPositionEmployee
ABCblah20
ABCblah15
ABCblah5
XYZblah10
XYZblah12
XYZblah5
MNOblah20
MNOblah5

[Answer]
Problem Solving

There is a food track consisting of cells marked with 0, 1, or other numbers. Here, 0 signifies the cell is not traceable, 1 signifies it is traceable, and any other number represents the destination. Starting from the top-left point, determine the longest path to reach the destination. If no path exists, print -1.

111
101
191

[Answer]
JavaScript & HTML

Write JavaScript code to check if a button is clicked in an HTML element using an EventListener. Upon clicking, the size of the HTML element should increase by 10%.


[Answer]