Upload Button Icon Add office photos

Filter interviews by

Infosystems Web Developer Interview Questions and Answers

Updated 6 Apr 2023

Infosystems Web Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
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 tips
Round 2 - Coding Test 

Cred app in php which having user login and registration

Round 3 - One-on-one 

(2 Questions)

  • Q1. General information about the course
  • Q2. General information about personal information

Interview Preparation Tips

Interview preparation tips for other job seekers - Good company to work with customers. Good culture and excellent working experience

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Infosystems?
Ask anonymously on communities.

Interview questions from similar companies

Associate Interview Questions & Answers

user image Anonymous

posted on 26 Jun 2021

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

Interview Questionnaire 

1 Question

  • Q1. Job processes

Web Developer Interview Questions Asked at Other Companies

Q1. Last Index of Element The task is to determine the index of the l ... read more
Q2. Check Indices With Given Difference Problem Statement You are pro ... read more
asked in Evalueserve
Q3. Reverse Linked List Problem Statement Given a singly linked list ... read more
asked in Internshala
Q4. Clone a Linked List with Random Pointers Given a linked list wher ... read more
asked in Internshala
Q5. Loot Houses Problem Statement A thief is planning to steal from s ... read more

I appeared for an interview before Sep 2020.

Round 1 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Easy

  • Q1. 

    0/1 Knapsack Problem Statement

    A thief is planning to rob a store and can carry a maximum weight of 'W' in his knapsack. The store contains 'N' items where the ith item has a weight of 'wi' and a value of...

  • Ans. 

    Yes, the 0/1 Knapsack problem can be solved using dynamic programming with a space complexity of not more than O(W).

    • Use a 1D array to store the maximum value that can be stolen for each weight capacity from 0 to W.

    • Iterate through each item and update the array based on whether including the item would increase the total value.

    • The final value in the array at index W will be the maximum value that can be stolen.

  • Answered by AI
  • Q2. 

    Find the Second Largest Element

    Given an array or list of integers 'ARR', identify the second largest element in 'ARR'.

    If a second largest element does not exist, return -1.

    Example:

    Input:
    ARR = [2,...
  • Ans. 

    Find the second largest element in an array of integers.

    • Iterate through the array to find the largest and second largest elements.

    • Handle cases where all elements are identical.

    • Return -1 if a second largest element does not exist.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Easy

System Design Round

  • Q1. Design a system for Twitter, discussing its architecture, key components, and scalability considerations.
  • Ans. 

    Design a scalable system for Twitter with key components and architecture.

    • Use microservices architecture for scalability and fault isolation.

    • Key components include user service, tweet service, timeline service, and notification service.

    • Use a distributed database like Cassandra for storing tweets and user data.

    • Implement a message queue like Kafka for handling real-time updates and notifications.

    • Use a caching layer like ...

  • Answered by AI
Round 3 - HR 

Round duration - 30 Minutes
Round difficulty - Easy

It is just a formality

Interview Preparation Tips

Professional and academic backgroundI applied for the job as SDE - 1 in BangaloreEligibility criteriaResume shortlistingSwiggy interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Core Java, Algorithms, DBMS, SQL,Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : System Design
Tip 2 : Practice questions from leetcode
Tip 3 : Have some projects.

Application resume tips for other job seekers

Tip 1 : Mention what you know 
Tip 2 : Good previous work to showcase

Final outcome of the interviewSelected

Skills evaluated in this interview

Interview Questionnaire 

5 Questions

  • Q1. What is the viewport?
  • Ans. 

    The viewport is the visible area of a web page displayed on a device's screen.

    • It determines the layout and dimensions of the content on the screen.

    • It can be adjusted using meta tags in the HTML head section.

    • It is important for responsive design and mobile optimization.

    • It can be simulated in web development tools like Chrome DevTools.

  • Answered by AI
  • Q2. Inline elements and block elements in CSS
  • Ans. 

    Inline elements are displayed inline with text while block elements take up the full width available.

    • Inline elements do not start on a new line

    • Block elements start on a new line and take up the full width available

    • Inline elements can have padding and margin applied horizontally but not vertically

    • Block elements can have padding and margin applied in all directions

    • Examples of inline elements include and , while examples...

  • Answered by AI
  • Q3. Display inline vs. display block
  • Ans. 

    display inline is used for inline elements while display block is used for block-level elements.

    • display inline elements are placed next to each other horizontally

    • display block elements take up the entire width of their container

    • display inline-block elements are placed next to each other horizontally and can have a width and height set

  • Answered by AI
  • Q4. Flex and grid
  • Q5. Pseudo-classes in css
  • Ans. 

    Pseudo-classes are used in CSS to select and style elements based on their state or position in the document.

    • Pseudo-classes start with a colon (:)

    • Common pseudo-classes include :hover, :active, :focus, :first-child, :last-child

    • Pseudo-classes can be combined with selectors to target specific elements

    • Pseudo-classes can also be used to style links based on their state

  • Answered by AI

Skills evaluated in this interview

Associate Interview Questions & Answers

CitiusTech user image Kshitija Bagul

posted on 10 Sep 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Explain random forest
  • Ans. 

    Random forest is an ensemble learning method that builds multiple decision trees and merges them to improve accuracy and prevent overfitting.

    • Random forest is a type of ensemble learning method.

    • It builds multiple decision trees during training.

    • Each tree is built using a subset of the training data and a random subset of features.

    • The final prediction is made by averaging the predictions of all the individual trees.

    • Random...

  • Answered by AI
  • Q2. What is boosting
  • Ans. 

    Boosting is a machine learning ensemble technique where multiple weak learners are combined to create a strong learner.

    • Boosting is an iterative process where each weak learner is trained based on the errors of the previous learners.

    • Examples of boosting algorithms include AdaBoost, Gradient Boosting, and XGBoost.

    • Boosting is used to improve the accuracy of models and reduce bias and variance.

  • Answered by AI

Skills evaluated in this interview

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 Nov 2023. There were 2 interview rounds.

Round 1 - Assignment 

Create a business requirement document

Round 2 - Technical 

(1 Question)

  • Q1. What are the strengths and weakness
  • Ans. 

    Strengths include strong analytical skills and attention to detail. Weaknesses may include difficulty with public speaking and time management.

    • Strengths: strong analytical skills

    • Strengths: attention to detail

    • Weaknesses: difficulty with public speaking

    • Weaknesses: time management

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

I applied via Job Portal and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. SOLID principles
  • Q2. Microservice Architecture and Kafka

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared with core concepts.
Are these interview questions helpful?
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 tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. Will ask sql queries
  • Q2. Oops and design pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well will acknowledge within a week if selected
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
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 tips
Round 2 - Aptitude Test 

Basic react, JS and CSS related questions were there.

Round 3 - Technical 

(1 Question)

  • Q1. Basic technical question on react, js and css
Round 4 - One-on-one 

(1 Question)

  • Q1. Only salary discussion was done.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join neosoft as the work culture here is pathetic. HR team, sales team and technical team, all are useless.
Interview experience
3
Average
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 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - Coding Test 

They will give two types of questions on coding you need to write correct logic not depend upon the execution.

Round 3 - Technical 

(1 Question)

  • Q1. It's technical round they will ask oops concepts , and then collections, spring boot and microservice related questions.
Round 4 - HR 

(1 Question)

  • Q1. Just need to discuss package with HR

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join this company if ur on any client project it's okay but if u don't have any projects they will immediately terminate you no job security.
And very poor management.

Infosystems Interview FAQs

How many rounds are there in Infosystems Web Developer interview?
Infosystems interview process usually has 3 rounds. The most common rounds in the Infosystems interview process are Resume Shortlist, Coding Test and One-on-one Round.

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Interview Questions from Similar Companies

Senco Gold Interview Questions
4.4
 • 568 Interviews
Planet Spark Interview Questions
3.8
 • 490 Interviews
Swiggy Interview Questions
3.8
 • 469 Interviews
Klm Axiva Finvest Interview Questions
4.4
 • 433 Interviews
ITC Infotech Interview Questions
3.7
 • 373 Interviews
Meesho Interview Questions
3.7
 • 365 Interviews
Ekart Logistics Interview Questions
3.9
 • 348 Interviews
Udaan Interview Questions
3.9
 • 346 Interviews
CitiusTech Interview Questions
3.3
 • 288 Interviews
NeoSOFT Interview Questions
3.6
 • 279 Interviews
View all
Software Engineer
6 salaries
unlock blur

₹3.2 L/yr - ₹7 L/yr

Senior Software Engineer
5 salaries
unlock blur

₹4 L/yr - ₹7.7 L/yr

Database Developer
5 salaries
unlock blur

₹3 L/yr - ₹16 L/yr

System Engineer
4 salaries
unlock blur

₹3 L/yr - ₹4 L/yr

Senior Service Engineer
4 salaries
unlock blur

₹3.6 L/yr - ₹3.6 L/yr

Explore more salaries
Compare Infosystems with

Ekart Logistics

3.9
Compare

Udaan

3.9
Compare

Swiggy

3.8
Compare

SBI Cards & Payment Services

3.7
Compare
write
Share an Interview