Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Snapmint Credit Advisory Team. If you also belong to the team, you can get access from here

Snapmint Credit Advisory Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Snapmint Credit Advisory Software Development Engineer 1 Interview Questions and Answers

Updated 30 Mar 2023

Snapmint Credit Advisory Software Development Engineer 1 Interview Experiences

1 interview found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Keep your resume crisp and to the point. A recruiter looks at your resume for an average of 6 seconds, make sure to leave the best impression.
View all Resume tips
Round 2 - Technical 

(5 Questions)

  • Q1. What is useState in react?
  • Ans. 

    useState is a hook in React that allows functional components to have state.

    • useState is used to declare state variables in functional components.

    • It returns an array with two values: the current state value and a function to update it.

    • The initial state can be passed as an argument to useState.

    • Example: const [count, setCount] = useState(0);

  • Answered by AI
  • Q2. What is useEffect in react?
  • Ans. 

    useEffect is a hook in React that allows you to perform side effects in functional components.

    • It replaces componentDidMount, componentDidUpdate, and componentWillUnmount.

    • It takes two arguments: a function that performs the side effect and an array of dependencies.

    • The function is called after every render, unless the dependencies haven't changed.

    • Common use cases include fetching data, setting up event listeners, and upd

  • Answered by AI
  • Q3. Given a react problem and tell me to find the bug over there.
  • Ans. 

    To find a bug in a React problem

    • Check the console for any error messages

    • Use React Developer Tools to inspect the component tree and state

    • Check if the props and state are being updated correctly

    • Check if the lifecycle methods are being called in the correct order

    • Check if the event handlers are bound correctly

    • Check if the JSX syntax is correct

  • Answered by AI
  • Q4. Ask about basic JS questions.
  • Q5. Ask about basic CSS ideas.
Round 3 - Other Rounds 

(1 Question)

  • Q1. There was a total of 5 rounds, where 4 rounds were technical-based only (VP round is included) and the final round with the co-founder only which is similar to the HR or managerial round.

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing but want to say, just focus on your basic which is more than enough.

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Assignment 

It was a simple assignment where you needed to implement a Django app from a well laid out documentation.

Round 2 - Technical 

(1 Question)

  • Q1. Binary Search Tree - Two nodes are swapped in a Binary Search tree and then fix them so that the tree becomes a valid BST
  • Ans. 

    Fix two swapped nodes in a Binary Search Tree to make it valid

    • Identify the two nodes that are swapped incorrectly

    • Perform an inorder traversal to find the nodes that are not in ascending order

    • Swap the values of the incorrectly swapped nodes to fix the BST

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident.
Practice well.
Do DSA well.

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
No response
Round 1 - Technical 

(1 Question)

  • Q1. Technical question regarding js
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
-
Result
Selected Selected

I applied via Approached by Company and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Easy-Medium level DSA Questions on linked list
Round 2 - Technical 

(1 Question)

  • Q1. Questions on Nodejs, API Design and Databases
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed in Jan 2025.

Round 1 - Aptitude Test 

Array rotation, which is relatively straightforward.

Round 2 - Coding Test 

Key JavaScript concepts.

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Asked about my experience as an integration developer
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Sep 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all Resume tips
Round 2 - Technical 

(2 Questions)

  • Q1. They concentrate on Core java
  • Q2. 1. Polymorphism 2. Strings 3. hashMap implementation

Interview Preparation Tips

Interview preparation tips for other job seekers - They only Focus on core Java if you have in-depth knowledge you will easily placed

I applied via Naukri.com and was interviewed in Feb 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. How meny days working, and working hours
  • Ans. 

    The number of working days and working hours for a Software Developer.

    • Software Developers typically work 5 days a week.

    • The standard working hours for Software Developers are 8 hours per day.

    • However, the actual number of working days and hours may vary depending on the company and project requirements.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - He was asking more then technical question, interviewer and hr are good person, it means helpfull.

I applied via Referral and was interviewed in Sep 2021. There were 3 interview rounds.

Interview Questionnaire 

4 Questions

  • Q1. Tell me about recent Project Details and what is your Role in this Project.
  • Ans. I explained my project and the modules which I had developed. Informed about Team members and their responsibilities who were working on the same Project. Then my role in the team as well as my responsibilities in the Project.
  • Answered Anonymously
  • Q2. Git and Azure DevOps related Questions
  • Ans. I Explained how we work on AzureDevOps. Explained workflow with Git Repos through DevOps Repositories. Explained Build and Release Pipelines also Explained NuGet Packages using Artifacts
  • Answered Anonymously
  • Q3. Explain Solid Principles and Where to use this with Example
  • Ans. 

    Solid Principles are a set of design principles for writing maintainable and scalable software.

    • Solid Principles consist of five principles: Single Responsibility Principle, Open/Closed Principle, Liskov Substitution Principle, Interface Segregation Principle, and Dependency Inversion Principle.

    • Single Responsibility Principle states that a class should have only one reason to change.

    • Open/Closed Principle states that sof...

  • Answered by AI
  • Q4. Abstraction and Interface Differance
  • Ans. 

    Abstraction focuses on hiding implementation details, while interface defines a contract for classes to follow.

    • Abstraction allows us to focus on the essential features of an object, while hiding unnecessary details.

    • Interface defines a set of methods that a class must implement, providing a contract for how the class should behave.

    • Abstraction is achieved through abstract classes and interfaces in object-oriented program...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't feel uncomfortable if you don't know the exact answer. Whatever you know just explain in your statement. make an easy sentence to explain don't give an exact theoretic answer try to explain with one example.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Jan 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all Resume tips
Round 2 - HR 

(2 Questions)

  • Q1. What is MSME and how we get investment
  • Ans. 

    MSME stands for Micro, Small and Medium Enterprises. Investment can be obtained through various government schemes and private investors.

    • MSMEs are small businesses that contribute significantly to the economy

    • They can be classified based on their investment in plant and machinery or equipment

    • Government schemes like MUDRA, CGTMSE, and SIDBI provide financial assistance to MSMEs

    • Private investors like angel investors and v...

  • Answered by AI
  • Q2. Some general questions about GST

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't be over smart in front of them and first try to listen them properly and then give any answers thats my advice
Contribute & help others!
anonymous
You can choose to be anonymous

Snapmint Credit Advisory Interview FAQs

How many rounds are there in Snapmint Credit Advisory Software Development Engineer 1 interview?
Snapmint Credit Advisory interview process usually has 3 rounds. The most common rounds in the Snapmint Credit Advisory interview process are Resume Shortlist and Technical.
How to prepare for Snapmint Credit Advisory Software Development Engineer 1 interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at Snapmint Credit Advisory. The most common topics and skills that interviewers at Snapmint Credit Advisory expect are Javascript and UI.
What are the top questions asked in Snapmint Credit Advisory Software Development Engineer 1 interview?

Some of the top questions asked at the Snapmint Credit Advisory Software Development Engineer 1 interview -

  1. Given a react problem and tell me to find the bug over the...read more
  2. What is useState in rea...read more
  3. What is useEffect in rea...read more

Recently Viewed

INTERVIEWS

Patanjali Ayurved

No Interviews

INTERVIEWS

Patanjali Ayurved

5.6k top interview questions

SALARIES

NexWave Talent Management Solutions

INTERVIEWS

Snapmint Credit Advisory

No Interviews

INTERVIEWS

Snapmint Credit Advisory

No Interviews

INTERVIEWS

Paysense Services India

No Interviews

INTERVIEWS

Snapmint Credit Advisory

No Interviews

SALARIES

Grapecity

SALARIES

NexWave Talent Management Solutions

INTERVIEWS

Snapmint Credit Advisory

No Interviews

Tell us how to improve this page.

Snapmint Credit Advisory Software Development Engineer 1 Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Analyst
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Operations Executive
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Product Manager
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Operations Manager
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Snapmint Credit Advisory with

Samunnati Financial Intermediation and Services

4.3
Compare

Karvy Financial Services

3.8
Compare

Reliance Money

3.7
Compare

Sonata Finance

3.9
Compare
Did you find this page helpful?
Yes No
write
Share an Interview