Tip 1 : Make at least 1-2 good projects.
Tip 2 : Apply for it based on your profile.
Tip 3 : Try to solve at least 300 questions of different patterns
Tip 1:At least have 2 projects on your resume. It should not be copy pasted.
Tip 2: Do not put false things.
In this project, we had given 1 API which was having information of different dogs. It contains breed, life span, image, and many more necessary things. We have to handle the API and use it in such a way that it should match with the given output. The output was having dogs image and on hover the image we will get the description such as name, breed, life span and many more things. On click the dog we had to show some different functionality of the API.
There were also different thing which we have to take care of while creating the project such as padding, hover effect and many more.



A permutation of an array of integers is an arrangement of its members into a sequence or linear order.
For example, for arr = [1,2,3], the following are all the permutations of arr: [1,2,3], [1,3,2], [2, 1, 3], [2, 3, 1], [3,1,2], [3,2,1].
The next permutation of an array of integers is the next lexicographically greater permutation of its integer. More formally, if all the permutations of the array are sorted in one container according to their lexicographical order, then the next permutation of that array is the permutation that follows it in the sorted container. If such arrangement is not possible, the array must be rearranged as the lowest possible order (i.e., sorted in ascending order).
I was asked to create a part of my resume project which was fetching the weather API. Using the JSON, I had to show the weather conditions, time, and temperature. Also based on the weather conditions background of the website should also change.



Given a string S with repeated characters. The task is to rearrange characters in a string such that no two adjacent characters are the same.
Note: The string has only lowercase English alphabets and it can have multiple solutions. Return any one of them.



Given a string array of words, return an array of all characters that show up in all strings within the words (including duplicates). You may return the answer in any order.
1. What are your greatest strengths and weaknesses?
2. Why do you want to work for our company?

Here's your problem of the day
Solving this problem will increase your chance to get selected in this company
What is recursion?