Upload Button Icon Add office photos

Filter interviews by

Infotechsolz Web Developer Interview Questions and Answers

Updated 1 Nov 2021

Infotechsolz Web Developer Interview Experiences

1 interview found

I applied via Naukri.com and was interviewed before Nov 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Expected Compensation
  • Q2. Some Normal Technical Questions

Interview Preparation Tips

Interview preparation tips for other job seekers - You'd be asked about your experience, and what you know. Some minor technical question. Interview isn't hard. If you clear that, whether you get selected really depends on other factors like compensation desired.

Interview questions from similar companies

I applied via Recruitment Consultant and was interviewed in May 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. The technical round went for an hour. Mostly from my previous project experience- any significant work, major issues, way to tackle etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Focus on basic concepts , Brainstorm all major issues tackled in current role, focus on functional part as well apart from technical.

I applied via Naukri.com and was interviewed in May 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. OOPS Concepts, Interface, Sealed classes, SQL basic queries(remove duplicates, find nth highest salary, Using Dense_rank etc.,) MVC Architecture, routing in MVC, Javascript basics
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Only one written test consists of aptitude questions and one coding question. coding question is easy-moderate

Round 2 - Technical 

(1 Question)

  • Q1. There are 2 technical rounds .In first round they have covered Java theory concepts and oops basic questions and asked me to write any sorting code and a SQL query that is print who's salary lies between 1...
Round 3 - HR 

(1 Question)

  • Q1. About yourself, Where you are after 5 years,Are you ready to relocate,about company and some basic hr questions.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Describe about yourself
  • Q2. What is your role in your current project and explain the roles and responsibilities
  • Q3. Why would you like to explore other opportunities
Round 2 - Technical 

(6 Questions)

  • Q1. Explain about the swift payment flows. Explain any one end to end payment flows
  • Ans. 

    Swift payment flows refer to the process of transferring funds quickly and securely between financial institutions globally.

    • Swift payment flows involve the sender initiating a payment instruction through their bank.

    • The instruction is then sent to the recipient's bank via the SWIFT network.

    • The recipient's bank verifies the payment details and credits the recipient's account.

    • An example of an end-to-end payment flow is wh...

  • Answered by AI
  • Q2. What is your current test environment management tool and how does this help in your daily activities
  • Ans. 

    Our current test environment management tool is Jenkins, which helps automate our testing processes and streamline our daily activities.

    • Jenkins allows us to schedule and run automated tests, saving time and effort.

    • It provides detailed reports on test results, helping us identify and fix issues quickly.

    • We can integrate Jenkins with other tools like Jira for seamless workflow management.

  • Answered by AI
  • Q3. Are you aware of JIRA or any ticketing tools
  • Ans. 

    Yes, I am aware of JIRA and have experience using ticketing tools in previous projects.

    • Yes, I have used JIRA extensively in previous projects for tracking tasks and issues.

    • I am familiar with creating, assigning, and tracking tickets in JIRA.

    • I have also used other ticketing tools like Trello and Asana for project management.

  • Answered by AI
  • Q4. Explain yourself in just two words
  • Q5. What are your expectations from the team if we are releasing you the offer
  • Q6. Are you willing to work in US shift
Round 3 - HR 

(3 Questions)

  • Q1. Explain about yourself
  • Q2. Projects roles and responsibilities
  • Q3. Salary discussions

Interview Preparation Tips

Interview preparation tips for other job seekers - I would recommend to write resume on your own. No tools or anything. Use chatgpt for proper English but at the same time it should not write your whole resume. When you are writing resume on your own you will clearly understand what is your roles and responsibilities. Most of the questions will be asked from your resume. No extra add-ons. Be precise and on point.

Skills evaluated in this interview

Consultant Interview Questions & Answers

Thryve Digital user image Gayathri Santhanam

posted on 4 Jul 2024

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Recruitment Consulltant and was interviewed before Jul 2023. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Angular in depth
  • Ans. 

    Angular is a popular front-end framework for building web applications.

    • Angular is developed and maintained by Google.

    • It uses TypeScript for building applications.

    • Angular follows the component-based architecture.

    • It provides features like data binding, dependency injection, and routing.

    • Angular CLI is used for creating and managing Angular projects.

  • Answered by AI
Round 2 - One-on-one 

(1 Question)

  • Q1. Tools and technologies
Round 3 - HR 

(1 Question)

  • Q1. Culture fit and other discussion

Skills evaluated in this interview

I applied via LinkedIn and was interviewed in Dec 2020. There were 3 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. JS Prototype usage and functionality.
  • Ans. 

    JS Prototype is a mechanism for inheritance and sharing properties among objects.

    • Prototype is a property of every JavaScript function.

    • It allows objects to inherit properties and methods from other objects.

    • Modifying the prototype of a function affects all instances of that function.

    • Prototype chain is used to look up properties and methods of an object.

    • Prototype can be used to add new methods and properties to existing o

  • Answered by AI
  • Q2. Node- without any loop need to check how can you find the total number
  • Ans. 

    To find the total number without any loop in Node.js

    • Use the reduce() method to sum up the values in an array

    • Use the length property of an array to get the total number of elements

    • Use the Object.keys() method to get the total number of keys in an object

  • Answered by AI
  • Q3. Node - what is difference between promise and async await and callback.
  • Ans. 

    Promises, async/await, and callbacks are all ways to handle asynchronous operations in Node.js.

    • Callbacks are functions passed as arguments to another function and called when the operation is complete.

    • Promises represent a value that may not be available yet, but will be resolved at some point in the future.

    • Async/await is a syntax for writing asynchronous code that looks like synchronous code.

    • Callbacks are the oldest an...

  • Answered by AI
  • Q4. Node - why do we use promise.
  • Ans. 

    Promises are used in Node to handle asynchronous operations and avoid callback hell.

    • Promises simplify error handling and make code more readable.

    • Promises allow for chaining multiple asynchronous operations.

    • Promises can be used with async/await to write synchronous-looking code.

    • Example: fetching data from an API using axios library with promises.

    • Example: reading a file with promises in Node's fs module.

  • Answered by AI
  • Q5. Node - use of Sequelize (ORM)
  • Ans. 

    Sequelize is an ORM for Node.js that supports multiple databases and provides easy data modeling and querying.

    • Sequelize is used to interact with databases in Node.js

    • It supports multiple databases like MySQL, PostgreSQL, SQLite, etc.

    • It provides easy data modeling and querying with its object-relational mapping

    • Example: const sequelize = new Sequelize('database', 'username', 'password', { dialect: 'mysql' });

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and if don't know about it please just say no, haven't worked on it.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Introduce yourself
  • Q2. Explain your projects
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed before Apr 2023. There were 3 interview rounds.

Round 1 - Coding Test 

Used an online IDE and asked general DS Algo questions

Round 2 - Technical 

(1 Question)

  • Q1. System Design HLD question to make URL shortener
Round 3 - HR 

(1 Question)

  • Q1. General HR Aptitude questions

Interview Preparation Tips

Topics to prepare for Apptio Software Developer interview:
  • Java
  • OOPS
Interview preparation tips for other job seekers - Prepare well with DS and Algo, keep knowledge of Java and OOP concepts
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed before Dec 2023.

Round 1 - Aptitude Test 

Online assessment with quantitative and qualitative questions

Round 2 - Coding Test 

Some Tree traversal coding question

Round 3 - Technical 

(2 Questions)

  • Q1. Load balancer design question
  • Q2. Technical challenges faced

Infotechsolz Interview FAQs

How to prepare for Infotechsolz Web Developer 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 Infotechsolz. The most common topics and skills that interviewers at Infotechsolz expect are Branch Banking Operations, Finishing, JMeter, Oracle ERP and Quark Express.

Tell us how to improve this page.

Interview Questions from Similar Companies

Luxoft Interview Questions
3.7
 • 122 Interviews
Thryve Digital Interview Questions
3.9
 • 67 Interviews
Iksula Interview Questions
3.5
 • 27 Interviews
Gammastack Interview Questions
3.6
 • 23 Interviews
Dyninno India Interview Questions
3.9
 • 23 Interviews
Apptio Interview Questions
3.9
 • 19 Interviews
View all
Infotechsolz Web Developer Salary
based on 4 salaries
₹1.6 L/yr - ₹3 L/yr
41% less than the average Web Developer Salary in India
View more details

Infotechsolz Web Developer Reviews and Ratings

based on 1 review

1.0/5

Rating in categories

1.0

Skill development

4.0

Work-life balance

2.0

Salary

1.0

Job security

1.0

Company culture

1.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Software Developer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Web Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Web Application Developer
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Infotechsolz with

Luxoft

3.7
Compare

Thryve Digital

3.9
Compare

Iksula

3.5
Compare

Mantra Technologies

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