Biz2 credit info services private limited interview experience Real time questions & tips from candidates to crack your interview

Software Engineer

Biz2 credit info services private limited
upvote
share-icon
2 rounds | 4 Coding problems

Interview preparation journey

expand-icon
Preparation
Duration: 6 months
Topics: I prepared extensively on Data structures, aptitude tests (as I had less experience that time and such tests were common then) and OOPS along with little bit of system design.
Tip
Tip

Tip 1 : Be confident in interviews. Try to showcase all your technical abilities in the problems asked.
Tip 2 : Try to explain your approach clearly to interviewer and then start coding.
Tip 3 : Should try to cover edge cases(at least talk about them) in your solution.

Application process
Where: Naukri
Eligibility: No such specific criteria was told to me.
Resume Tip
Resume tip

Tip 1 : Mention your best projects on your resume which you can explain in detail.
Tip 2 : Quantify your results, for examples reduced latency by x%.

Interview rounds

01
Round
Easy
Online Coding Interview
Duration60 mins
Interview date30 Nov 2018
Coding problem2

There were some mcq's which were around tell correct output for this program.

1. Predict correct output

// filename Test.java
class Test {
  public static void main(String args[]) {
      System.out.println(fun());
  }
  static int fun() {
      static int x= 0;
      return ++x;
  }
}

Problem approach

Compilation Error

2. Predict correct output

// filename Main.java
class Main {
   public static void main(String args[]) {  
       System.out.println(fun());
   }
   int fun() {
       return 20;
   }
}

Problem approach

Compilation Error

02
Round
Medium
Face to Face
Duration60 mins
Interview date1 Dec 2018
Coding problem2

First solved a small aptitude test. Interviewer was very polite and explain me coding problem. Asked me to solve a DP problem. Then asked me a problem on OOPS and this concluded the interview.

1. Longest Palindromic Substring

Moderate
20m average time
80% success
0/80
Asked in companies
MicrosoftCIS - Cyber InfrastructureGartner

You are given a string 'str' of length 'N'.


Your task is to return the longest palindromic substring. If there are multiple strings, return any.


A substring is a contiguous segment of a string.


For example :
str = "ababc"

The longest palindromic substring of "ababc" is "aba", since "aba" is a palindrome and it is the longest substring of length 3 which is a palindrome. 

There is another palindromic substring of length 3 is "bab". Since starting index of "aba" is less than "bab", so "aba" is the answer.
Problem approach

I used brute force approach. Calculated all substrings and check if each substring was palindrome or not
I could not solve it via DP.

Try solving now

2. Puzzle

A, B and C can do a piece of work in 20, 30 and 60 days respectively. In how many days can A do the work if he is assisted by B and C on every third day?

Problem approach

15 days

Here's your problem of the day

Solving this problem will increase your chance to get selected in this company

Skill covered: Programming

What is recursion?

Choose another skill to practice
Similar interview experiences
company logo
SDE - 1
4 rounds | 8 problems
Interviewed by Amazon
8518 views
0 comments
0 upvotes
Analytics Consultant
3 rounds | 10 problems
Interviewed by ZS
907 views
0 comments
0 upvotes
company logo
SDE - Intern
1 rounds | 3 problems
Interviewed by Amazon
3320 views
0 comments
0 upvotes
company logo
SDE - 2
4 rounds | 6 problems
Interviewed by Expedia Group
2581 views
0 comments
0 upvotes
Companies with similar interview experiences
company logo
Software Engineer
3 rounds | 7 problems
Interviewed by Optum
7874 views
1 comments
0 upvotes
company logo
Software Engineer
5 rounds | 5 problems
Interviewed by Microsoft
9973 views
1 comments
0 upvotes
company logo
Software Engineer
2 rounds | 4 problems
Interviewed by Amazon
4310 views
1 comments
0 upvotes