Upload Button Icon Add office photos
Engaged Employer

i

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

Instant Systems Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Instant Systems Intern Interview Questions and Answers

Updated 10 Apr 2024

Instant Systems Intern Interview Experiences

1 interview found

Intern Interview Questions & Answers

user image Anonymous

posted on 10 Apr 2024

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

I applied via Recruitment Consulltant and was interviewed in Mar 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Aptitude test was the mixture of common aptitude questions along with sql, basic javascript and java language basic questions and couple of simple coding questions like febinachi series, palindrom pattern etc .

Round 2 - Technical 

(2 Questions)

  • Q1. They started from basic of java and some frameworks like springboot and then moved to advance of these topics.
  • Q2. Springboot annotations Opps concept run-time and compile time polimorphisam SQL quesries for Select and Joins
Round 3 - One-on-one 

(2 Questions)

  • Q1. Level 2 interview from the same topics along with abstraction and interface Constructor overriding is possible or not? dependency injection
  • Q2. Ways to create object in java.

Interview Preparation Tips

Topics to prepare for Instant Systems Intern interview:
  • java
  • sql
  • opps
  • springboot

Skills evaluated in this interview

Top trending discussions

View All
Interview Hub
5d (edited)
anshitanegi
·
ex -
Planet Spark
When HR’s Chinese English made me drop the interview!
So, I talked to the HR yesterday about the interview. I asked Please send me the location But their English… bro I was shocked! It was like talking to someone jisne english nahi kuch ar hi seekh liya ho, if the HR’s English is this I can only imagine the rest of the company I decided to drop the interview with this chinese english😶‍🌫️
FeedCard Image
Got a question about Instant Systems?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Referral

Interview Preparation Tips

Round: Technical Interview
Experience: details of the initial interview process?
• Group discussions
• Case study Analysis , presentations etc
• Assessment centre
• Management games etc
• Panel / one on one interview – First round was primarily a personal interview
with their CEO and the HR head. Interview centered around my resume, my
background and other personal questions.
• Telecon interviews – Final round was a telecom with most of the technical
team (about 5 of them) – which was primarily technical and about projects I
did.
• Video conferencing etc
Tips: On resume – brushing up on projects I have done; making sure past mistakes
are not repeated; and identifying primary focus areas where I can sell myself
better; in fact I modified the order of my projects in my resume a little bit to
put the equities project I have done at the very top.
• Communication skills
• Mock interview practice – 1-2 mock interviews; I had done enough already
for prior interviews
• Collecting information of company / role – researched company website; read
DSP’s market outlook report; and found out what types of funds they have.
• Technical / subject / functional preparations – read quite a bit on Portfolio
Management (from a book in lib – don’t remember the author’s name);
reviewed O&F fundaas and IA fundaas..
• PPT’s stage

College Name: Indian School Of Business (ISB)

Intern Interview Questions Asked at Other Companies

asked in Accenture
Q1. There is a housing society “The wasteful society”. You collect al ... read more
Q2. Which programming language are you comfortable with?
asked in Accenture
Q3. A marketing strategy case: A perfume seller in Jaipur has unique ... read more
asked in Deloitte
Q4. Case : I am a US based company and I sell 3 products A, B, C (I d ... read more
Q5. Huffman Coding Challenge Given an array ARR of integers containin ... read more

I appeared for an interview before Jun 2016.

Interview Questionnaire 

2 Questions

  • Q1.  Given k and DFS traversal string for a k-ary tree, construct the tree. The String contains P (if a parent) and L (if a leaf). E.g. - k=3, str="PPLLLLL" 2. All the strings are arranged in the following ord...
  • Ans. 

    The question asks to construct a k-ary tree using the given k and DFS traversal string.

    • Iterate through the DFS traversal string

    • If the current character is 'P', create a parent node

    • If the current character is 'L', create a leaf node

    • Link the nodes according to the DFS traversal order

  • Answered by AI
  • Q2. "How would you tell whether a graph has a node with n degree?"
  • Ans. 

    To determine if a graph has a node with n degree, iterate through all nodes and count their edges.

    • Iterate through each node in the graph

    • Count the number of edges connected to each node

    • If any node has n edges, then the graph has a node with n degree

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: Questions on C++(Virtual fns, inheritance). Two on probability, 12 on Algorithms
Duration: 45 minutes

Round: Technical + HR Interview
Experience: He asked some more puzzles and some probability (expectation) questions. Then, he modified one question asked in the written test and asked me write code for it on paper.
Tips: First of all, prepare all the questions asked in the test before going for the interviews.


Skills evaluated in this interview

I appeared for an interview in May 2022.

Round 1 - Video Call 

(1 Question)

Round duration - 45 Minutes
Round difficulty - Easy

The interviewer was friendly. Explained the question well. Allowed to use any preferred platform to write code.

  • Q1. 

    Best Time to Buy and Sell Stock Problem Statement

    Given an array prices representing the prices of a stock where each element indicates the price at a given minute, determine the maximum profit you can ac...

  • Ans. 

    Find the maximum profit by buying and selling a stock once based on given prices.

    • Iterate through the prices array and keep track of the minimum price seen so far and the maximum profit achievable.

    • Calculate the profit by subtracting the current price from the minimum price and update the maximum profit if needed.

    • Return the maximum profit, ensuring it is not negative.

    • Example: prices = [2, 100, 150, 120], Buy at 2, sell a...

  • Answered by AI
Round 2 - Video Call 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Dance Team Pairing Challenge

    Imagine you are helping Ninja, a dance coach, who needs to form dance pairs from the available boys and girls in a studio. Given the number of boys N, the number of girls M, a...

  • Ans. 

    The challenge involves forming dance pairs from available boys and girls based on potential pairings to maximize the number of pairs.

    • Parse the input to get the number of test cases, boys, girls, and potential pairings.

    • Iterate through the potential pairings and form pairs based on the given indexes.

    • Output '1' if a set of maximum possible pairs is returned, else output '0'.

    • There can be multiple valid configurations of pa...

  • Answered by AI
  • Q2. What is the difference between multiprocessing and multithreading?
  • Ans. 

    Multiprocessing involves multiple processes running concurrently, while multithreading involves multiple threads within a single process.

    • Multiprocessing utilizes multiple processes to execute tasks simultaneously.

    • Multithreading involves multiple threads within a single process sharing the same memory space.

    • Multiprocessing is typically used for CPU-bound tasks, while multithreading is more suitable for I/O-bound tasks.

    • E...

  • Answered by AI
Round 3 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Hard

  • Q1. Can you describe the classes and functions involved in the design of a system like Splitwise?
  • Ans. 

    Splitwise is a system for managing shared expenses among groups of people.

    • Classes: User, Expense, Group

    • Functions: addExpense(), settleUp(), calculateBalance()

  • Answered by AI
Round 4 - Video Call 

Round duration - 60 Minutes
Round difficulty - Hard

Interview Preparation Tips

Professional and academic backgroundI applied for the job as Software Engineer in GurgaonEligibility criteriaNo criteriaTower Research Capital interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, Low level design, High Level Design, Relational Database Management Systems, Operating SystemsTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 5 questions of each topic of various difficulty levels
Tip 2 : Read out theory articles about your preferred language showing your proficiency in the same.
Tip 3 : Hard work is overrated, consistency is the key.

Application resume tips for other job seekers

Tip 1 : Own everything you have there, do not add random skills that you are not proficient in.
Tip 2 : Keep it clean and try to give out minimal but most of the relevant information for the role.

Final outcome of the interviewSelected

Skills evaluated in this interview

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 tips
Round 2 - HR 

(1 Question)

  • Q1. They asked specific questions about the industry i would be focused on
Round 3 - Principals 

(1 Question)

  • Q1. How do you handle complex valuation metrics for technology companies
  • Ans. 

    I analyze various factors such as revenue growth, market share, competitive landscape, and future prospects to determine the valuation of technology companies.

    • I research and analyze financial statements, industry reports, and market trends.

    • I consider the company's revenue growth, market share, and competitive landscape.

    • I evaluate the company's future prospects and potential for innovation.

    • I use various valuation method...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - know the industry before you speak with senior managers; they know these companies cold.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before May 2022. There were 2 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 tips
Round 2 - Technical 

(2 Questions)

  • Q1. Previous work experience. What do you know about hedge funds and private equity funds
  • Ans. 

    Hedge funds and private equity funds are alternative investment vehicles that pool capital from accredited investors to invest in various assets.

    • Hedge funds are typically more actively managed and use various strategies to generate returns, such as long/short equity, event-driven, and macro.

    • Private equity funds invest in private companies and aim to improve their operations and profitability before selling them for a p...

  • Answered by AI
  • Q2. Explain about water fall method
  • Ans. 

    Waterfall method is a linear sequential approach to software development.

    • It follows a sequential process where each phase must be completed before moving on to the next.

    • It is a rigid and inflexible approach.

    • It is suitable for projects with well-defined requirements and a fixed scope.

    • Examples of industries that use this method are construction and manufacturing.

    • Phases include requirements gathering, design, implementati...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Need to have good knowledge on the previous work and sound knowledge on the profile that you have applied

Skills evaluated in this interview

Instant Systems HR Interview Questions

4 questions and answers

Q. Tell me about a time you solved a problem.
Q. Why do you want to work for this company?
Q. Why should we hire you?

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

Round 1 - Technical 

(1 Question)

  • Q1. Sql DML,DQL, TCL, etc, operations
Round 2 - Technical 

(1 Question)

  • Q1. Constraints in SQL, knowledge on Eagle etc
  • Ans. 

    Constraints in SQL and knowledge on Eagle

    • SQL constraints ensure data integrity by enforcing rules on data

    • Eagle is a PCB design software used for creating circuit boards

    • Knowledge on Eagle includes schematic capture, board layout, and design rule checks

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Some other discussions like previous companies what we have worked and salary packages.

Interview Preparation Tips

Topics to prepare for STP Investment Services Software Engineer interview:
  • SQL
  • Oracle
  • eagle pace
  • PL SQL
Interview preparation tips for other job seekers - Great place to learn new technologies and new domain. Team was good and very helpful and very experienced and knowledge persons.

Company will provide all allowances and Definitely will experience good work culture.

Definitely STP will be a benchmark for success.

Skills evaluated in this interview

Are these interview questions helpful?
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Apr 2024, where I was asked the following questions.

  • Q1. What is Derivative
  • Q2. Corporate Actions - Mandatory and Voluntary
  • Q3. Difference between hedge funds and mutual funds
  • Ans. 

    Hedge funds are private investment funds with flexible strategies, while mutual funds are publicly offered and regulated investment vehicles.

    • Hedge funds typically require high minimum investments, often $1 million or more, while mutual funds can be accessed with lower amounts, sometimes as low as $100.

    • Hedge funds employ diverse strategies, including short selling and leverage, whereas mutual funds generally invest in s...

  • Answered by AI
  • Q4. What is CDS - OTC derivatives
  • Ans. 

    CDS (Credit Default Swap) is a financial derivative used to transfer credit risk of an underlying asset in OTC markets.

    • CDS allows investors to hedge against the risk of default on debt instruments.

    • Example: A bank buys a CDS to protect against a corporate bond default.

    • CDS contracts are traded over-the-counter (OTC), not on exchanges.

    • They can be used for speculation, allowing investors to bet on creditworthiness.

    • The buye...

  • Answered by AI
  • Q5. Equities and fixed income
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 coding questions based on DSA.

Round 2 - Technical 

(2 Questions)

  • Q1. Easy coding problem.
  • Q2. Medium coding problem.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview before Feb 2024.

Round 1 - HR 

(2 Questions)

  • Q1. The interview emphasized team collaboration and work ethics, with a particular focus on my overall work experience at my previous company.
  • Q2. What were your preferences regarding work locations, specifically your views on working from the office (WFO) compared to working from home (WFH)?
  • Ans. 

    I prefer a mix of both working from the office and working from home.

    • I believe in the benefits of face-to-face collaboration and communication that come with working from the office.

    • At the same time, I appreciate the flexibility and productivity that working from home offers.

    • I think a hybrid approach, where employees have the option to choose between WFO and WFH based on their tasks and preferences, is ideal.

    • I have exp...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Focus was on DS algo and scenario based coding questions
  • Q2. Design skills and OS knowledge

Instant Systems Interview FAQs

How many rounds are there in Instant Systems Intern interview?
Instant Systems interview process usually has 3 rounds. The most common rounds in the Instant Systems interview process are Aptitude Test, Technical and One-on-one Round.
What are the top questions asked in Instant Systems Intern interview?

Some of the top questions asked at the Instant Systems Intern interview -

  1. Ways to create object in ja...read more
  2. level 2 interview from the same topics along with abstraction and interface Co...read more
  3. Springboot annotations Opps concept run-time and compile time polimorphisam SQL...read more

Tell us how to improve this page.

Overall Interview Experience Rating

4/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more
Software Engineer
31 salaries
unlock blur

₹5.4 L/yr - ₹12 L/yr

Associate Software Engineer
21 salaries
unlock blur

₹2.5 L/yr - ₹7.7 L/yr

IOS Developer
11 salaries
unlock blur

₹8 L/yr - ₹19.3 L/yr

Software Developer
11 salaries
unlock blur

₹3.1 L/yr - ₹14.9 L/yr

Data Scientist
9 salaries
unlock blur

₹5.3 L/yr - ₹11 L/yr

Explore more salaries
Compare Instant Systems with

Resurgent India

4.3
Compare

Belstar Investment and Finance

4.1
Compare

Cholamandalam Securities

3.4
Compare

Link Intime

3.5
Compare
write
Share an Interview