Upload Button Icon Add office photos
Engaged Employer

i

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

Intelizign Lifecycle Services Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 199 Reviews

Filter interviews by

Intelizign Lifecycle Services C Developer Interview Questions and Answers

Updated 12 Sep 2024

Intelizign Lifecycle Services C Developer Interview Experiences

1 interview found

C Developer Interview Questions & Answers

user image Yash kale

posted on 12 Sep 2024

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

(2 Questions)

  • Q1. All 4 pillers of object oriented programming.
  • Q2. Write a program to find the second largest element in an array.
  • Ans. 

    Program to find the second largest element in an array

    • Iterate through the array to find the largest element

    • Then iterate again to find the second largest element

    • Handle edge cases like empty array or array with only one element

  • Answered by AI

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Hackathon on chatbot development website

Round 2 - Technical 

(2 Questions)

  • Q1. OOPS basics like shallow copy deep copy
  • Q2. Sorting techniques and psuedo code
Round 3 - HR 

(2 Questions)

  • Q1. Questions on projects
  • Q2. Introduction and insights of comapny
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. Explain Public , private Procedure
  • Q2. Cursor and Trigger , Mutating error
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 Sep 2024. There was 1 interview round.

Round 1 - Technical 

(6 Questions)

  • Q1. Brief about your project ?
  • Ans. 

    Developed a web application for managing inventory and sales for a retail store.

    • Used Angular framework to create a responsive and user-friendly interface.

    • Implemented features for adding, updating, and deleting products in the inventory.

    • Integrated with backend APIs to fetch real-time sales data and generate reports.

    • Utilized Angular Material for designing consistent UI components.

  • Answered by AI
  • Q2. What is angular? what is SPA?
  • Ans. 

    Angular is a popular front-end framework for building web applications. SPA stands for Single Page Application.

    • Angular is a front-end framework developed by Google for building dynamic web applications.

    • It uses TypeScript for building applications with components, services, and modules.

    • SPA is a web application that loads a single HTML page and dynamically updates the content as the user interacts with the app.

    • SPA provid...

  • Answered by AI
  • Q3. What is lazy loading?
  • Ans. 

    Lazy loading is a technique in web development where resources are loaded only when needed, improving performance.

    • Lazy loading helps reduce initial load time by loading resources on demand

    • It is commonly used in Angular for loading modules, components, or routes asynchronously

    • Lazy loading can improve user experience by speeding up page load times

  • Answered by AI
  • Q4. What is rxjs? in deep?
  • Ans. 

    RxJS is a library for reactive programming using Observables to handle asynchronous data streams.

    • RxJS stands for Reactive Extensions for JavaScript.

    • It allows you to work with asynchronous data streams and handle events.

    • Operators like map, filter, and mergeMap are used to manipulate and combine streams.

    • Subscriptions are used to listen to and react to changes in the data streams.

    • Example: Using RxJS to make HTTP requests

  • Answered by AI
  • Q5. Angular and javascript basic question?
  • Q6. Difference between ?? and ?:
  • Ans. 

    ?? is the nullish coalescing operator, while ? is the optional chaining operator in Angular.

    • ?? is used to provide a default value when a variable is null or undefined.

    • ? is used to safely access nested properties of an object without causing errors.

    • Example: const name = person?.name; // safe access to 'name' property of 'person' object

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Aptitude Test 

General aptitude online test

Round 2 - Technical 

(2 Questions)

  • Q1. OOPS basic concepts with eg
  • Q2. C#,Sql,MVC concepts
Round 3 - Technical 

(2 Questions)

  • Q1. Project experience
  • Ans. 

    I have experience working on various projects including web development, mobile app development, and database management.

    • Developed a web application using React.js and Node.js for a client in the e-commerce industry

    • Created a mobile app using Swift for a healthcare startup to track patient data

    • Managed a MySQL database for a financial services company to store and retrieve customer information

  • Answered by AI
  • Q2. Coding related questions asked
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Assignment 

Prev job work and project details , roles and responsibility

Round 2 - Technical 

(2 Questions)

  • Q1. What is SDLC process
  • Ans. 

    SDLC process is a structured approach to software development that defines tasks performed at each stage of the software development life cycle.

    • SDLC stands for Software Development Life Cycle

    • It includes stages like planning, analysis, design, implementation, testing, and maintenance

    • Each stage has specific goals and deliverables to ensure the quality and success of the software project

  • Answered by AI
  • Q2. What is the ASp.net mean for ?
  • Ans. 

    ASP.NET stands for Active Server Pages .NET, a web application framework developed by Microsoft.

    • ASP.NET is a server-side web application framework used for building dynamic web pages and web applications.

    • It allows developers to create web applications using languages like C# or VB.NET.

    • ASP.NET provides tools and libraries for building web forms, MVC (Model-View-Controller) applications, and Web API services.

    • It is part o...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - focus on tech round

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Javascript features
  • Q2. Virtual dom

Interview Preparation Tips

Interview preparation tips for other job seekers - Basics should be clear and definitions should be at your tips
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. C# basic and .net
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain SDLC process test
  • Ans. 

    SDLC process test involves testing the software at various stages of the software development life cycle.

    • Testing is done at each stage of SDLC - requirements, design, implementation, and maintenance.

    • It helps in identifying defects early in the development process.

    • Types of testing include unit testing, integration testing, system testing, and acceptance testing.

    • Testing ensures that the software meets the specified requi...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - test

Skills evaluated in this interview

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

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Explain opps concept
  • Ans. 

    OOPs concept stands for Object-Oriented Programming, a programming paradigm based on the concept of objects.

    • OOPs focuses on creating objects that contain data in the form of attributes and code in the form of methods.

    • Encapsulation, Inheritance, Polymorphism, and Abstraction are the four main principles of OOPs.

    • Example: In a banking system, a 'Customer' object can have attributes like name and account number, and method

  • Answered by AI

Intelizign Lifecycle Services Interview FAQs

How many rounds are there in Intelizign Lifecycle Services C Developer interview?
Intelizign Lifecycle Services interview process usually has 1 rounds. The most common rounds in the Intelizign Lifecycle Services interview process are Technical.
How to prepare for Intelizign Lifecycle Services C 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 Intelizign Lifecycle Services. The most common topics and skills that interviewers at Intelizign Lifecycle Services expect are Teamcenter, Customization and SOA.
What are the top questions asked in Intelizign Lifecycle Services C Developer interview?

Some of the top questions asked at the Intelizign Lifecycle Services C Developer interview -

  1. Write a program to find the second largest element in an arr...read more
  2. All 4 pillers of object oriented programmi...read more

Tell us how to improve this page.

Intelizign Lifecycle Services C Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.9
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Capgemini Interview Questions
3.7
 • 4.8k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
NeoSOFT Interview Questions
4.0
 • 260 Interviews
View all
Software Engineer
331 salaries
unlock blur

₹2 L/yr - ₹10 L/yr

Senior Software Engineer
256 salaries
unlock blur

₹5.1 L/yr - ₹17.1 L/yr

Design Engineer
195 salaries
unlock blur

₹1.8 L/yr - ₹8 L/yr

Software Developer
75 salaries
unlock blur

₹2.5 L/yr - ₹11 L/yr

Senior Design Engineer
56 salaries
unlock blur

₹3.8 L/yr - ₹9.1 L/yr

Explore more salaries
Compare Intelizign Lifecycle Services with

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare

Tech Mahindra

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