New Senior Developer

Personal Introduction

Where did you find us? *

Name *

Sex *

Phone Number *

Age *

Permanent Location *

Temporary location *

Can you work in multi-national, multi-ethnic and multi-religious environment? *

Can you sit, work and eat together who are meat eater , veggie ? *


experiences

What is the biggest problem you have faced in your projects and how did you solve it?

Which tools do you use to keep a track of requirements?

What language do you prefer while writing complex algorithms?

Which are the important tools to test the quality of your codes?

Have you done CD /CI?

Can you configure in practice?


Knowledge 1

IDE preference *

why do you like this IDE? *

What are Laravel design pattern? *

why Design Pattern is importance? *

Which design patterns have you used and in what situations?

what is your programming Pattern ? Programming patterns include a number of variables like source control, testing, variable/file/class and application architecture decisions.


Knowledge 2

please write code for #First Recurring Character # input = ABAC result =A, #input=BCABC result=B,#input = ABC = Non *

There's a staircase with N steps, and you can climb 1 or 2 steps at a time. Given N, write a function that returns the number of unique ways you can climb the staircase. The order of the steps matters. For example, if N is 4, then there are 5 unique ways: 1, 1, 1, 1 2, 1, 1 1, 2, 1 1, 1, 2 2, 2 What if, instead of being able to climb 1 or 2 steps at a time, you could climb any number from a set of positive integers X? For example, if X = {1, 3, 5}, you could climb 1, 3, or 5 steps at a time. Generalize your function to take in X. *