Tip 1 : Having at least one project on android will give you an upper edge.
Tip 2 : Project should be live.
Tip 3 : Learn about APIs, as first round would be an API based round.
Tip 1 : Do not put any project not done by you in your resume
Tip 2 : Put role specific projects. For eg- for android role, don't put Machine Learning projects, it won't help.
We were given an API link on which we had to send our data(name, branch, college etc) as request headers along with the binary of the code file as the request body. We had to send a PUT request to the given API. Maximum 10 attempts were allows to hit the API. You can use any programming language.
I coded in javascript using basic XMLHttpRequest to send the PUT request. Also i linked the js script to html file to trigger API call on button click and to use browser installed APIs for XMLHttpRequest.



1. Each array element should belong to exactly one of the subsets.
2. Subsets need not always be contiguous.
For example, for the array : [1, 2, 3], some of the possible divisions are
a) {1,2} and {3}
b) {1,3} and {2}.
3. Subset-sum is the sum of all the elements in that subset.
Input: 'n' = 5, 'arr' = [3, 1, 5, 2, 8].
Ouput: 1
Explanation: We can partition the given array into {3, 1, 5} and {2, 8}.
This will give us the minimum possible absolute difference i.e. (10 - 9 = 1).



Given array ‘ARR = { 1, 2, 3, 3, 3, 3, 4, 4, 4, 1, 2 ,0}’ and ‘K = 4’
The interview was conducted on MS teams at 1.30pm. It was an online interview due to covid.
The interviewer first asked me about a short intro of mine. Then he asked about my resume, what all projects I have done.
Firstly I told my full stack project which was at the top of my resume. Interviewer asked was any of my project live, or I have developed just for resume. My full stack project was live with 35 users.
He then asked me if I have done any Android projects. I did 2 projects on android, I told him in detail about my password manager app which is now live on Google Play Store (at time of interview it was not published). The interviewer seemed satisfied with my project work.
What are the type of intents in android?
What is the difference between Activity and Fragments?






If the given string is: STR = "abcde". You have to print the string "edcba".
Try to solve the problem in O(1) space complexity.



Input:
'a' = 8, 'b' = 5
Output:
5 8
Explanation:
Initially, the value of 'a' and 'b' is 8 and 5, respectively.
After swapping, the value of 'a' is 5, and the value of 'b' is 8.
I got a call from the HR the next day at around 11am. Others got the HR call previous day itself.
The HR asked how as the interview process and what I liked about. I said the process was good and I liked the first API based round as it was unique in on-campus selection.
She asked me if I am hands-on in Angular and Android both. I replied YES as I have developed projects using both.
She asked me if I was OK joining this company as there would much work, mostly 6 days a week and sometimes on Sunday as well. At that time I was hesitant about answering this, and I thought I could try some more on-campus opportunities as it was just the first week of placements. I said NO to the HR during the call.
After the call I discussed with my parents about more opportunities and what was my chance of getting it. As I am from electrical branch most companies don't allow electrical students and also answering CS questions become difficult for clearing other interviews.
So, finally I called the HR again and told her I made my mind and I am ready to join my company, you can consider me for further process. The HR told she would consider me as well.

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