Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Ip Infusion Software Team. If you also belong to the team, you can get access from here

Ip Infusion Software Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Ip Infusion Software Associate Software Engineer Interview Questions, Process, and Tips

Updated 18 Nov 2021

Ip Infusion Software Associate Software Engineer Interview Experiences

1 interview found

I applied via Campus Placement

Interview Questionnaire 

6 Questions

  • Q1. Basics of c and datastructure and about project
  • Q2. What is call by value and call by reference with sample code
  • Ans. 

    Call by value and call by reference are two ways of passing arguments to a function.

    • Call by value passes a copy of the value to the function, while call by reference passes a reference to the original value.

    • In call by value, changes made to the parameter inside the function do not affect the original value, while in call by reference, changes made to the parameter inside the function affect the original value.

    • Example o...

  • Answered by AI
  • Q3. What is static
  • Ans. 

    Static refers to a variable or method that belongs to a class rather than an instance of that class.

    • Static variables are shared across all instances of a class

    • Static methods can be called without creating an instance of the class

    • Static blocks are used to initialize static variables

    • Static import is used to import static members of a class

  • Answered by AI
  • Q4. Y we r using call by reference what is the main purpose of using call by reference
  • Ans. 

    Call by reference is used to pass the memory address of a variable to a function.

    • Allows modification of the original variable

    • Saves memory by not creating a copy of the variable

    • Used for large data structures like arrays

    • Example: void swap(int *a, int *b) { int temp = *a; *a = *b; *b = temp; }

  • Answered by AI
  • Q5. Difference between call by value and call ny by reference
  • Ans. 

    Call by value passes a copy of the value to the function, while call by reference passes a reference to the original value.

    • Call by value creates a new copy of the variable, while call by reference uses the original variable.

    • Call by value does not modify the original variable, while call by reference can modify the original variable.

    • Call by value is used for simple data types like int, float, etc., while call by referen...

  • Answered by AI
  • Q6. Can we find the ip address of a system
  • Ans. 

    Yes, we can find the IP address of a system.

    • Use command prompt and type 'ipconfig' to find the IP address of the system.

    • Alternatively, use online tools like 'WhatIsMyIP' or 'IP Lookup' to find the IP address.

    • IP addresses can also be found in the network settings of the system.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall good.. but think 1000 times before joining this organisation....i

Skills evaluated in this interview

Interview questions from similar companies

Interview experience
2
Poor
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Find the memory of the given structure (Struct padding is the hint)
  • Ans. 

    The question asks to find the memory of a given structure by considering struct padding.

    • Struct padding refers to the unused bytes added to align the members of a structure.

    • To find the memory of a structure, we need to consider the size of each member and the padding added.

    • The total memory of a structure is the sum of the sizes of its members and the padding.

  • Answered by AI
  • Q2. Write code to find the position of a number in a BST
  • Ans. 

    Code to find the position of a number in a BST

    • Implement a recursive function to traverse the BST

    • Compare the target number with the current node value

    • If the target is smaller, go to the left subtree; if larger, go to the right subtree

    • Repeat until the target is found or the subtree is null

  • Answered by AI
  • Q3. Create a Trie data structure and perform insertion and search on it.
  • Ans. 

    A Trie is a tree-like data structure used for efficient retrieval of strings. It supports insertion and search operations.

    • A Trie is also known as a prefix tree.

    • Each node in the Trie represents a character.

    • The root node represents an empty string.

    • Each node can have multiple children, each representing a different character.

    • Insertion involves traversing the Trie and creating new nodes as needed.

    • Search involves traversing...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Arista Networks Senior Software Engineer interview:
  • Data Structures
  • OS
  • C

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. A string contains parenthesis, curly brackets and square brackets. Check if the string is valid or not.
  • Ans. 

    Check if a string containing parenthesis, curly brackets, and square brackets is valid.

    • Use a stack to keep track of opening brackets

    • Pop from stack when encountering a closing bracket, ensuring it matches the corresponding opening bracket

    • Return false if stack is not empty at the end

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Large scale system design interview
Round 2 - Coding Test 

Two DSA questions related to Arrays & strings

Round 3 - One-on-one 

(1 Question)

  • Q1. Design URL shortener
  • Ans. 

    Design a URL shortener service with features like shortening, redirecting, tracking, handling collisions, and providing analytics.

    • Use a hashing algorithm to generate unique short URLs from long URLs

    • Store mappings of short URLs to original URLs in a database

    • Implement a redirect mechanism to direct users to the original URL when accessing the short URL

    • Track the number of times each short URL is accessed and store this da...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. System design - 1500 max inserting request to db a day max latency 60 se
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Company Website and was interviewed before Feb 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Discussion about OOPS concepts and String related program

Round 2 - Coding Test 

Program on Recursion and Array

Round 3 - HR 

(2 Questions)

  • Q1. Strength and Weakness
  • Q2. Reason for joining with company

I applied via Referral and was interviewed in Jul 2022. There were 4 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. L2/L3 layer questions
Round 2 - Technical 

(2 Questions)

  • Q1. Questions related to python coding .
  • Q2. Questions related to work u have done . And coding
Round 3 - Technical 

(1 Question)

  • Q1. Questions about networking , security profile
Round 4 - Technical 

(1 Question)

  • Q1. About networking protocols and coding rounds

Interview Preparation Tips

Interview preparation tips for other job seekers - Have u basics clear and have confidence on your work whatever u have done
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2022. There were 5 interview rounds.

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 - Coding Test 

C, Data structure and networking

Round 3 - Technical 

(1 Question)

  • Q1. Technicall discussion on c and ds
Round 4 - Technical 

(1 Question)

  • Q1. Another round of technical and cultural fit
Round 5 - HR 

(1 Question)

  • Q1. CTC discussion mostly

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on ds and networking questions
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 - Coding Test 

2 coding hacker rank questions

Round 3 - Technical 

(1 Question)

  • Q1. Ds question on trees

Interview Preparation Tips

Interview preparation tips for other job seekers - Refresh your dds algo skills and system design skills
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself.
Contribute & help others!
anonymous
You can choose to be anonymous

Ip Infusion Software Interview FAQs

What are the top questions asked in Ip Infusion Software Associate Software Engineer interview?

Some of the top questions asked at the Ip Infusion Software Associate Software Engineer interview -

  1. What is call by value and call by reference with sample c...read more
  2. Y we r using call by reference what is the main purpose of using call by refere...read more
  3. Difference between call by value and call ny by refere...read more

Recently Viewed

JOBS

Browse jobs

Discover jobs you love

COMPANY BENEFITS

KNR Constructions

20 benefits

COMPANY BENEFITS

IRB Infrastructure

60 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

COMPANY BENEFITS

Dilip Buildcon

304 benefits

SALARIES

Intellipaat Software Solutions

INTERVIEWS

Intellipaat Software Solutions

No Interviews

INTERVIEWS

Befree Business Resourceing

No Interviews

INTERVIEWS

Befree Business Resourceing

No Interviews

INTERVIEWS

Befree Business Resourceing

No Interviews

Tell us how to improve this page.

Interview Questions from Similar Companies

Cisco Interview Questions
4.1
 • 370 Interviews
VMware Software Interview Questions
4.4
 • 145 Interviews
Citrix Interview Questions
3.6
 • 52 Interviews
Arista Networks Interview Questions
4.2
 • 43 Interviews
ZIGRAM Interview Questions
3.9
 • 26 Interviews
RGBSI Interview Questions
3.5
 • 24 Interviews
F5 Networks Interview Questions
3.8
 • 23 Interviews
View all
Ip Infusion Software Associate Software Engineer Salary
based on 6 salaries
₹2 L/yr - ₹6 L/yr
10% less than the average Associate Software Engineer Salary in India
View more details

Ip Infusion Software Associate Software Engineer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

1.0

Work-life balance

1.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

1.0

Work satisfaction

Explore 1 Review and Rating
Senior Software Engineer
102 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
81 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
57 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Technical Lead
17 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior TAC Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Ip Infusion Software with

Cisco

4.1
Compare

Juniper Networks

4.2
Compare

Arista Networks

4.2
Compare

VMware Software

4.4
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent