Upload Button Icon Add office photos

Filter interviews by

FIGMD Associate Software Developer Interview Questions and Answers

Updated 7 Jun 2024

FIGMD Associate Software Developer Interview Experiences

2 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Simple coding questions
  • Q2. Dbms queries on 2nd largest salary
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before May 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Basics of Javascript and SQL related questions
Round 2 - HR 

(1 Question)

  • Q1. Normal discussion 20 minutes

Associate Software Developer Interview Questions Asked at Other Companies

asked in Accenture
Q1. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
asked in Xoriant
Q2. Tell me some of the data types that are used in python?
asked in Xoriant
Q3. What are joins in SQL? Explain each with the real life example?
asked in Xoriant
Q4. How will you delete a file in python module using a python code?
asked in Xoriant
Q5. Do python has any destructor? If yes then what is that destructor ... read more

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Feb 2024. There were 4 interview rounds.

Round 1 - Coding Test 

They provided a Google Form link in which there were several coding questions that were too basic, like an easy level.

Round 2 - Coding Test 

Pen-and-paper coding test. They gave us three questions and 15 minutes to solve simple-level questions.

Round 3 - One-on-one 

(5 Questions)

  • Q1. Tell me about yourself.
  • Ans. 

    I am a dedicated and passionate software developer with experience in Java, Python, and web development.

    • Graduated with a degree in Computer Science

    • Completed internships at tech companies

    • Developed a mobile app for a school project

  • Answered by AI
  • Q2. Oops, related question.
  • Q3. Question related to basic math and geometry.
  • Q4. Questions related to projects.
  • Q5. Questions related to the tech stacks of project
Round 4 - Technical 

(3 Questions)

  • Q1. Tell me brief introduction
  • Ans. 

    I am a software developer with experience in Java, Python, and web development.

    • Proficient in Java programming language

    • Skilled in Python scripting

    • Experience with web development technologies like HTML, CSS, and JavaScript

  • Answered by AI
  • Q2. Aptitude like percentage, etc
  • Q3. DBMS keys related questions.

Interview Preparation Tips

Topics to prepare for Tudip Technologies Associate Software Developer interview:
  • DBMS
  • OOPS
  • Programming
Interview preparation tips for other job seekers - Keep your basics strong.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Bangalore University and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Aptitude Test 

30 questions overall

Round 2 - Technical 

(2 Questions)

  • Q1. System design and project
  • Q2. How to centralize solar power plant in yur college
  • Ans. 

    Centralizing a solar power plant in a college involves selecting a suitable location, designing the system, obtaining necessary permits, and installing the equipment.

    • Conduct a feasibility study to determine the best location for the solar power plant on campus.

    • Design the solar power system based on the energy needs of the college and available space.

    • Obtain permits and approvals from local authorities and utility compan...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Incture Technologies Associate Software Developer interview:
  • Data Structures
Interview preparation tips for other job seekers - z
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. Angular A to Z Hooks,Services,Api Integration,component communication
  • Q2. Html ,CSS basic
Round 2 - Behavioral 

(1 Question)

  • Q1. Server and web api related questions
Round 3 - HR 

(2 Questions)

  • Q1. Can you provide details about yourself and your educational background?
  • Q2. About Winjit technologies

Interview Preparation Tips

Interview preparation tips for other job seekers - Trust the process; ensure a clear understanding of the basics and the logic of object-oriented programming concepts. Wishing you all the best.
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Referral and was interviewed in Dec 2024. There were 4 interview rounds.

Round 1 - One-on-one 

(4 Questions)

  • Q1. Difference between Lag & Lead with an example
  • Q2. Example explaining Rank,Dense_Rank,Row_Number
  • Q3. Business question around customer funneling.
  • Q4. Some technical questions around marketing campaigns(utm_source,campaign_id,etc.)
Round 2 - One-on-one 

(2 Questions)

  • Q1. Questions around customer funneling(Ideal and non-ideal)
  • Q2. Some other business related problems and situational questions.
Round 3 - One-on-one 

(1 Question)

  • Q1. Behavioural and resume basaed questions with some situational questions.
Round 4 - HR 

(1 Question)

  • Q1. Behavioral questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - HR had taken all my documents and confirmed that she will close the offer within 2-3 days but even after 1 week and multiple follow-ups she started ignoring my mails and messages and did not give any update.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral

Round 1 - Coding Test 

Print a specific pattern using any programming language.

Round 2 - One-on-one 

(3 Questions)

  • Q1. What is a class in Object-Oriented Programming (OOP)?
  • Ans. 

    A class in OOP is a blueprint for creating objects, defining their properties and behaviors.

    • Classes are templates for creating objects in OOP

    • They define the properties (attributes) and behaviors (methods) of objects

    • Objects are instances of classes, each with its own unique data

    • Inheritance allows classes to inherit properties and behaviors from other classes

    • Encapsulation ensures that the data is hidden and can only be a...

  • Answered by AI
  • Q2. What is the difference between an abstract class and an interface?
  • Ans. 

    Abstract class can have both abstract and non-abstract methods, while interface can only have abstract methods.

    • Abstract class can have constructors, fields, and methods, while interface cannot have any implementation.

    • A class can only extend one abstract class, but can implement multiple interfaces.

    • Abstract classes are used to define common characteristics of subclasses, while interfaces are used to define contracts for...

  • Answered by AI
  • Q3. What is joining and creating an inner join query?
  • Ans. 

    Joining is combining data from two or more tables based on a related column, while an inner join query retrieves only the matching records.

    • Joining is used to combine data from multiple tables in a database.

    • Inner join query retrieves only the records that have matching values in both tables.

    • Syntax for inner join: SELECT columns FROM table1 INNER JOIN table2 ON table1.column = table2.column;

    • Example: SELECT orders.order_i...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Webkul Software Associate Software Engineer interview:
  • OOPS
  • Baisc Of any of Programing
  • MySQL
  • joins
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Starts with a introduction, Core Java concepts, OOPS concepts, Singleton design pattern, Spring boot annotations like service, restcontroller.
  • Q2. DSA logical questions like 2nd highest number. How to find missing number from an array.
Round 2 - Behavioral 

(4 Questions)

  • Q1. Tell me about yourself.
  • Ans. 

    I am a software engineer with 5 years of experience in developing web applications using Java, Spring Boot, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring Boot, and Angular

    • Strong problem-solving skills

    • Experience working in Agile development environment

    • Bachelor's degree in Computer Science from XYZ University

  • Answered by AI
  • Q2. Tell me about your family.
  • Ans. 

    I come from a close-knit family of five, including my parents, older sister, and younger brother.

    • Close-knit family of five

    • Parents, older sister, and younger brother

    • We enjoy spending time together traveling and trying new restaurants

  • Answered by AI
  • Q3. Why do you want to change the company
  • Ans. 

    Seeking new challenges and opportunities for growth in a different environment.

    • Desire for new challenges and learning opportunities

    • Seeking a better work-life balance

    • Interested in working with new technologies or industries

    • Looking for a more collaborative team environment

  • Answered by AI
  • Q4. After that interviewer describes my work and position in the company.

Interview Preparation Tips

Interview preparation tips for other job seekers - I have applied for Java position through the referral. I have received a call on Thursday that we want to schedule your interview on Saturday. And on Saturday both the rounds happened with positive feedback.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Naukri.com and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is runtime polymorphism, and can you provide a code example to illustrate it?
  • Ans. 

    Runtime polymorphism allows a subclass to provide a specific implementation of a method that is already provided by its parent class.

    • Runtime polymorphism is achieved through method overriding, where a subclass provides its own implementation of a method that is already defined in its superclass.

    • The method to be overridden must have the same name, return type, and parameters in both the superclass and subclass.

    • When an o...

  • Answered by AI
  • Q2. Streams in java
  • Ans. 

    Streams in Java provide a way to process collections of objects in a functional style.

    • Streams are sequences of elements that support various operations like filter, map, reduce, etc.

    • They can be created from collections, arrays, or generate elements dynamically.

    • Streams can be sequential or parallel, allowing for efficient processing of large datasets.

    • Example: List<String> names = Arrays.asList("Alice", "Bob", "Cha...

  • Answered by AI
  • Q3. How do we create threads in Java, and how do we invoke them?
  • Ans. 

    Threads in Java are created by extending the Thread class or implementing the Runnable interface, and invoked using the start() method.

    • Threads can be created by extending the Thread class and overriding the run() method.

    • Threads can also be created by implementing the Runnable interface and passing an instance of the class to a Thread object.

    • Threads are invoked by calling the start() method on the Thread object.

  • Answered by AI
  • Q4. What is a Rest Template and how is it used?
  • Ans. 

    Rest Template is a class in Spring that simplifies making HTTP requests and handling responses.

    • Rest Template is part of the Spring framework in Java.

    • It can be used to make HTTP requests to RESTful web services.

    • It simplifies the process of making HTTP calls and handling responses.

    • Rest Template can handle GET, POST, PUT, DELETE, etc. requests.

    • Example: RestTemplate restTemplate = new RestTemplate();

  • Answered by AI
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(5 Questions)

  • Q1. What is CICD ?
  • Ans. 

    CICD stands for Continuous Integration and Continuous Deployment. It is a software development practice where code changes are automatically built, tested, and deployed.

    • Automates the process of integrating code changes into a shared repository

    • Automatically builds and tests the code to ensure it is functional

    • Automatically deploys the code to production or staging environments

    • Helps in detecting and fixing integration err

  • Answered by AI
  • Q2. How to create image out of running container ?
  • Ans. 

    To create an image out of a running container, you can use the 'docker commit' command.

    • Use 'docker commit' command to create an image from a running container

    • Syntax: docker commit [OPTIONS] CONTAINER [REPOSITORY[:TAG]]

    • Example: docker commit container_id repository_name:tag

  • Answered by AI
  • Q3. What is the difference between docker add and copy command?
  • Ans. 

    Docker add command can fetch a file from a URL and add it to the image, while copy command copies files from the host machine to the image.

    • Docker add command can fetch files from URLs and add them to the image

    • Copy command copies files from the host machine to the image

    • Add command can also automatically extract compressed files during the build process

    • Copy command is more commonly used for copying local files

  • Answered by AI
  • Q4. What is freestyle project and pipeline ?
  • Ans. 

    A freestyle project is a type of project in Jenkins that allows users to configure the build process in any way they want. A pipeline is a set of automated steps that define the process for building, testing, and deploying code.

    • Freestyle project in Jenkins allows users to configure build process manually

    • Pipeline in Jenkins is a set of automated steps for building, testing, and deploying code

    • Freestyle projects are more ...

  • Answered by AI
  • Q5. What is the difference between docker swarm and docker compose ?
  • Ans. 

    Docker Swarm is used for orchestrating multiple Docker containers across multiple hosts, while Docker Compose is used for defining and running multi-container Docker applications.

    • Docker Swarm is a container orchestration tool that allows you to manage a cluster of Docker hosts.

    • Docker Compose is a tool for defining and running multi-container Docker applications.

    • Docker Swarm is used for scaling and managing a cluster of...

  • Answered by AI
Round 2 - Technical 

(5 Questions)

  • Q1. What is the project you worked can you plz explain?
  • Q2. What is VPC ?
  • Ans. 

    VPC stands for Virtual Private Cloud, a virtual network dedicated to a single organization's resources in the cloud.

    • Allows organizations to have control over their virtual network environment

    • Enables customization of network configuration

    • Provides security by allowing isolation of resources

    • Can connect to on-premises data centers or other VPCs using VPN or Direct Connect

  • Answered by AI
  • Q3. What is CICD pipeline and its stages ?
  • Ans. 

    CICD pipeline is a process that automates the building, testing, and deployment of software.

    • Continuous Integration (CI) - code changes are integrated into a shared repository multiple times a day.

    • Continuous Testing - automated tests are run to ensure code quality.

    • Continuous Deployment - code changes are automatically deployed to production.

    • Stages include: build, test, deploy, and monitor.

    • Tools like Jenkins, GitLab, and

  • Answered by AI
  • Q4. VPC peering concept ?
  • Ans. 

    VPC peering allows connecting two VPCs to communicate using private IP addresses.

    • VPC peering enables instances in different VPCs to communicate as if they are within the same network.

    • Traffic between peered VPCs stays within the private IP space and does not traverse the internet.

    • VPC peering does not involve a gateway, VPN, or direct connection.

    • Both VPCs must have non-overlapping IP ranges for successful peering.

    • Example...

  • Answered by AI
  • Q5. Whole concept of VPC , subnet and route table and NAT gateway ?
  • Ans. 

    VPC is a virtual private cloud that allows you to create isolated networks within the cloud environment. Subnets are subdivisions of a VPC, route tables define how traffic is directed within the VPC, and NAT gateway allows instances in a private subnet to access the internet.

    • VPC is a virtual private cloud that provides a logically isolated section of the AWS Cloud where you can launch resources.

    • Subnets are subdivisions...

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Basics Quesestions?

Interview Preparation Tips

Interview preparation tips for other job seekers - I joined but Toxic environment , Don't get Technical support they work for Product and doesn't have any proper documentation Not good at all .

Skills evaluated in this interview

FIGMD Interview FAQs

How many rounds are there in FIGMD Associate Software Developer interview?
FIGMD interview process usually has 1-2 rounds. The most common rounds in the FIGMD interview process are Technical and HR.
What are the top questions asked in FIGMD Associate Software Developer interview?

Some of the top questions asked at the FIGMD Associate Software Developer interview -

  1. Basics of Javascript and SQL related questi...read more
  2. Dbms queries on 2nd largest sal...read more
  3. Normal discussion 20 minu...read more

Tell us how to improve this page.

FIGMD Associate Software Developer Interview Process

based on 2 interviews

Interview experience

3.5
  
Good
View more

Interview Questions from Similar Companies

Tata 1mg Interview Questions
3.7
 • 143 Interviews
MAQ Software Interview Questions
2.0
 • 96 Interviews
PharmEasy Interview Questions
3.7
 • 79 Interviews
Practo Interview Questions
3.1
 • 73 Interviews
Softenger Interview Questions
4.2
 • 51 Interviews
View all
FIGMD Associate Software Developer Salary
based on 58 salaries
₹2.1 L/yr - ₹8 L/yr
10% less than the average Associate Software Developer Salary in India
View more details

FIGMD Associate Software Developer Reviews and Ratings

based on 9 reviews

2.8/5

Rating in categories

2.2

Skill development

3.6

Work-life balance

1.9

Salary

2.4

Job security

3.0

Company culture

2.6

Promotions

2.6

Work satisfaction

Explore 9 Reviews and Ratings
Software Engineer
165 salaries
unlock blur

₹1 L/yr - ₹10.3 L/yr

Associate Software Engineer
125 salaries
unlock blur

₹2.4 L/yr - ₹6 L/yr

Senior Software Engineer
77 salaries
unlock blur

₹7 L/yr - ₹22.2 L/yr

Software Developer
66 salaries
unlock blur

₹2.6 L/yr - ₹10.5 L/yr

Test Engineer
58 salaries
unlock blur

₹3.1 L/yr - ₹10 L/yr

Explore more salaries
Compare FIGMD with

Practo

3.1
Compare

Lybrate

3.5
Compare

PharmEasy

3.7
Compare

Netmeds.com

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