Upload Button Icon Add office photos
Engaged Employer

i

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

JConnect Infotech Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

JConnect Infotech Software Engineer Interview Questions and Answers

Updated 10 Jun 2024

JConnect Infotech Software Engineer Interview Experiences

1 interview found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Difference between interface and abstract
  • Ans. 

    Interface is a contract that defines the methods a class must implement, while abstract class can have both implemented and abstract methods.

    • Interface can only have abstract methods and constants, while abstract class can have both abstract and implemented methods.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Interfaces are used to achieve multiple inheritance in Java, while abs...

  • Answered by AI
  • Q2. Tell about constructor
  • Ans. 

    A constructor is a special type of method that is used to initialize objects in a class.

    • Constructors have the same name as the class they belong to.

    • They do not have a return type.

    • They are called automatically when an object is created.

    • Constructors can have parameters to initialize object properties.

    • Example: public class Car { public Car(String color) { this.color = color; } }

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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 

(3 Questions)

  • Q1. LMS LOS CMS life cycle
  • Q2. What is loan life cycle
  • Ans. 

    Loan life cycle refers to the stages involved in the processing and management of a loan.

    • The loan life cycle includes origination, underwriting, funding, servicing, and collection.

    • Origination involves the application and approval process.

    • Underwriting involves assessing the borrower's creditworthiness and determining the terms of the loan.

    • Funding involves disbursing the loan amount to the borrower.

    • Servicing involves man...

  • Answered by AI
  • Q3. What is software life cycle
  • Ans. 

    Software life cycle is the process of developing software from conception to retirement.

    • It includes phases like planning, design, development, testing, deployment, and maintenance.

    • Each phase has its own set of activities and deliverables.

    • The life cycle model can be iterative, sequential, or a combination of both.

    • Examples of life cycle models include Waterfall, Agile, and DevOps.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - OK to join as a fresher but de[ends on client project

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Face to Face 

(1 Question)

  • Q1. Insurance based

I applied via Naukri.com and was interviewed in Feb 2022. There were 2 interview rounds.

Round 1 - Aptitude Test 

Good test soo check

Round 2 - Group Discussion 

Failed in this round

Interview Preparation Tips

Interview preparation tips for other job seekers - Can do better and avoid this round for freshers

I applied via Naukri.com and was interviewed in Jun 2019. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Software manual testing related questions..retesting, regression testing, types of testing, domain
  • Q2. Stlc, sdlc, retesting, regression testing, Writing test cases

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear testing basic concepts,domain knowledge in which you are working.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

  • Q1. What is angular
  • Q2. Compound and directive
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral 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 

(3 Questions)

  • Q1. Tell me more about your last task that you worked on.
  • Ans. 

    Developed a web application for managing customer orders and inventory.

    • Used JavaScript, HTML, and CSS to build the front-end interface.

    • Implemented a RESTful API using Node.js and Express.js for the back-end functionality.

    • Utilized a PostgreSQL database to store and retrieve data.

    • Implemented authentication and authorization features for secure access.

    • Performed unit testing and debugging to ensure the application's functi...

  • Answered by AI
  • Q2. Design a System from High level and low level
  • Ans. 

    Designing a system involves creating a high-level architecture and breaking it down into low-level components.

    • Start by identifying the problem the system needs to solve

    • Create a high-level architecture that outlines the major components and their interactions

    • Break down each component into smaller, more manageable pieces

    • Design each low-level component with a specific function in mind

    • Ensure that all components work togeth...

  • Answered by AI
  • Q3. Some direct Questions from SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare yourself everyday, not for interview, for being better Engineer

Skills evaluated in this interview

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

I applied via Walk-in and was interviewed before Jun 2022. There were 3 interview rounds.

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

Write a program how to sort

Round 3 - Technical 

(1 Question)

  • Q1. Questions regarding your tech

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics need to be referred
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Just asked details 

(1 Question)

  • Q1. Asked about salary, Technology worked with
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. What are components
  • Ans. 

    Components are reusable and independent parts of a software system that perform specific functions.

    • Components are modular and can be easily integrated into different parts of a software system.

    • They help in organizing code and promoting reusability.

    • Examples include buttons, input fields, and dropdown menus in a user interface.

    • Components can be class-based (e.g. React components) or function-based (e.g. Angular component

  • Answered by AI
  • Q2. Es6 features in javascript
  • Ans. 

    ES6 features in JavaScript include arrow functions, classes, template literals, destructuring, and more.

    • Arrow functions provide a more concise syntax for writing functions.

    • Classes allow for easier object-oriented programming.

    • Template literals enable easier string interpolation.

    • Destructuring simplifies extracting values from arrays and objects.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - great company

Skills evaluated in this interview

JConnect Infotech Interview FAQs

How many rounds are there in JConnect Infotech Software Engineer interview?
JConnect Infotech interview process usually has 1 rounds. The most common rounds in the JConnect Infotech interview process are Technical.
What are the top questions asked in JConnect Infotech Software Engineer interview?

Some of the top questions asked at the JConnect Infotech Software Engineer interview -

  1. difference between interface and abstr...read more
  2. tell about construc...read more

Tell us how to improve this page.

JConnect Infotech Software Engineer Interview Process

based on 1 interview

Interview experience

3
  
Average
View more

Interview Questions from Similar Companies

W3Global Interview Questions
3.7
 • 18 Interviews
Xpheno Interview Questions
3.6
 • 18 Interviews
Kelly Services Interview Questions
4.2
 • 15 Interviews
ICONMA Interview Questions
2.9
 • 10 Interviews
Zyoin Interview Questions
3.5
 • 10 Interviews
View all

JConnect Infotech 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
Technical Recruiter
104 salaries
unlock blur

₹1.5 L/yr - ₹4.2 L/yr

Information Technology Recruiter
88 salaries
unlock blur

₹1.7 L/yr - ₹4 L/yr

IT Technical Recruiter
18 salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

US IT Recruiter
17 salaries
unlock blur

₹2.2 L/yr - ₹4.2 L/yr

Senior Software Engineer
11 salaries
unlock blur

₹6.8 L/yr - ₹13.5 L/yr

Explore more salaries
Compare JConnect Infotech with

Bonace Engineers

4.0
Compare

US Tech Solutions

3.8
Compare

New Opportunity Consultancy

4.2
Compare

Kelly Services

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