Upload Button Icon Add office photos

Filter interviews by

CLA Global Indus Value Consulting Interview Questions, Process, and Tips

Updated 17 Feb 2025

Top CLA Global Indus Value Consulting Interview Questions and Answers

View all 8 questions

CLA Global Indus Value Consulting Interview Experiences

Popular Designations

3 interviews found

Full Stack Developer Interview Questions & Answers

user image Manvendra Singh Yadav

posted on 31 Jul 2024

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

I applied via Approached by Company and was interviewed before Jul 2023. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. Design a students management results system?Write the logic to short the for the student have marks in english more than 80 marks?
  • Ans. 

    Design a student management results system and write logic to sort students with English marks above 80.

    • Create a database table for students with fields like name, marks in English, etc.

    • Implement a function to retrieve and filter students with English marks above 80.

    • Sort the filtered students based on their marks in English.

    • Display the sorted list of students in the results system.

  • Answered by AI
  • Q2. What is dependency injection and how is it implemented in .NET?
  • Ans. 

    Dependency injection is a design pattern where components are given their dependencies rather than creating them.

    • In .NET, dependency injection is implemented using built-in IoC containers like Unity, Autofac, or Ninject.

    • Dependencies are registered in the container and injected into the classes that need them.

    • This helps in decoupling components, making the code more maintainable and testable.

    • For example, in ASP.NET Core...

  • Answered by AI
  • Q3. Write a function in C# to reverse a string.
  • Ans. 

    Function in C# to reverse a string

    • Use StringBuilder to efficiently reverse the string

    • Convert the string to char array, reverse it, then convert back to string

    • Handle null or empty string cases

  • Answered by AI

Interview Preparation Tips

Topics to prepare for CLA Global Indus Value Consulting Full Stack Developer interview:
  • Mssql
  • .net core
Interview preparation tips for other job seekers - Be confidant!, write Sudo code while answering coding questions, and give real life experience for technical understanding questions.

Skills evaluated in this interview

Full Stack Developer Interview Questions asked at other Companies

Q1. Query and Matrix Problem Statement You are given a binary matrix with 'M' rows and 'N' columns, initially consisting of all 0s. You will receive 'Q' queries, which can be of four types: Query 1: 1 R indexQuery 2: 1 C indexQuery 3: 2 R index... read more
View answer (1)
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(5 Questions)

  • Q1. Find a substring from given string
  • Ans. 

    Use string methods to find a substring within a given string.

    • Use the indexOf() method to find the starting index of the substring within the string.

    • Use the substring() method to extract the substring based on the starting index and length.

    • Consider using regular expressions for more complex substring matching.

  • Answered by AI
  • Q2. What are lambda functions in Python, write some expressions
  • Ans. 

    Lambda functions are anonymous functions in Python that can have any number of arguments but only one expression.

    • Lambda functions are defined using the lambda keyword.

    • They are commonly used for small, one-time operations.

    • Example: add = lambda x, y: x + y

  • Answered by AI
  • Q3. What challenges did you face while deploying a Flutter application? Which optimization technique did you use?
  • Ans. 

    I faced challenges with performance optimization while deploying a Flutter application.

    • One challenge was optimizing the app's performance on different devices with varying hardware capabilities.

    • I used techniques like code splitting to reduce the initial load time of the app.

    • I also implemented lazy loading for components that were not immediately needed to improve overall performance.

    • Additionally, I utilized tree shakin...

  • Answered by AI
  • Q4. What are some state management techniques you are aware of regarding Flutter. Explain them.
  • Ans. 

    State management techniques in Flutter help manage the state of widgets and data throughout the app.

    • Provider package: A simple way to manage state in Flutter using InheritedWidget.

    • Bloc pattern: Helps separate presentation and business logic, making it easier to manage state.

    • GetX package: A lightweight state management solution with reactive programming.

    • Redux: A predictable state container for Flutter apps, inspired by

  • Answered by AI
  • Q5. Difference between parallelism and concurrency. Which is better?
  • Ans. 

    Parallelism involves executing multiple tasks simultaneously, while concurrency involves switching between tasks in a timely manner.

    • Parallelism is suitable for tasks that can be truly executed simultaneously, while concurrency is more suitable for tasks that involve waiting for external events or resources.

    • Parallelism can lead to better performance in tasks that can be divided into independent subtasks, while concurren...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Stay true to your basics. Never boast of anything. Its not a shame to not know every question asked. But you should atleast try to come at an answer.

Skills evaluated in this interview

Associate Consultant Interview Questions asked at other Companies

Q1. There are 2 cricket teams, A and B, with 11 players each. If every player of team A shakes hands with every player of team B(once), what will be the total number of handshakes?
View answer (15)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected
Round 1 - Technical 

(1 Question)

  • Q1. What are the skills you've worked on
Round 2 - HR 

(1 Question)

  • Q1. Salary Discussion

Senior Consultant Interview Questions asked at other Companies

Q1. 1. What's the use of update sets and how do you move update set from one instance to another? Once you imported the update set, what will you do? To check the customisations, You need to do open the update set and do something. What is that... read more
View answer (3)

Jobs at CLA Global Indus Value Consulting

View all

Interview questions from similar companies

I applied via Naukri.com and was interviewed before May 2021. There was 1 interview round.

Round 1 - One-on-one 

(1 Question)

  • Q1. Discuss 4 case study related to supply chain management.

Interview Preparation Tips

Topics to prepare for Tech Mahindra Senior Software Engineer interview:
  • Supply Chain Management
Interview preparation tips for other job seekers - Develop some case study of your own and also deep analysis for each.

I applied via Walk-in and was interviewed before Apr 2020. There were 5 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What is Excel what is vlookup what is your strength and weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - Be honest and bold

I was interviewed before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 140 minutes
Round difficulty - Medium

Test timing was at 2:00 pm , it was conducted in a college and the environment was good for the test. Camera was a primary part of test, so no suspicious activity.

  • Q1. 

    Sum of Two Numbers Represented as Arrays

    Given two numbers in the form of two arrays where each element of the array represents a digit, calculate the sum of these two numbers and return this sum as an ar...

  • Ans. 

    Given two numbers represented as arrays, calculate their sum and return the result as an array.

    • Iterate through the arrays from right to left, adding digits and carrying over if necessary

    • Handle cases where one array is longer than the other by considering the remaining digits

    • Ensure the final sum array does not have any leading zeros

  • Answered by AI
Round 2 - Face to Face 

Round duration - 20 minutes
Round difficulty - Easy

The round was conducted at around 12 p.m. I was called at the college location and then it was conducted. The interviewer was quite polite and frank.

Round 3 - HR 

Round duration - 8 minutes
Round difficulty - Easy

This round was conducted right after finishing and clearing the technical round at the same place and on the same day.

Interview Preparation Tips

Eligibility criteriaAbove 60 %Wipro Limited interview preparation:Topics to prepare for the interview - OOPS, Data Structures, Database Concepts, Coding problemsTime required to prepare for the interview - 2-3 monthsInterview preparation tips for other job seekers

Tip 1 : Practice atleast 2-3 Coding problems daily so your logic building becomes stronger.
Tip 2 : Exercise problems based on OOPS concepts and others too.
Tip 3 : If you can have your own project built, then it's the major point and will act as a plus point.

Application resume tips for other job seekers

Tip 1 : Your resume should be in standard form, short and simple will be more effective.
Tip 2 : Whatever you have learned, you need to mention it in your resume as that will be your primary source of selection and having project on your resume is important.

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Recruitment Consultant and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. 1. Why do you want to change?
  • Q2. 2. What is your goal?
  • Q3. 3. Critical project you have handled?

Interview Preparation Tips

Interview preparation tips for other job seekers - Always be yourself and provide short and to the point answer

I applied via Naukri.com and was interviewed in Jul 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. SOLID principals, oops, c# basics, SQL server, azure, design pattern

Interview Preparation Tips

Interview preparation tips for other job seekers - Clear basics of oops and design pattern

I applied via Job Portal and was interviewed before Apr 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Solid principles in c#
  • Ans. 

    Solid principles are a set of design principles for writing maintainable and scalable code in C#.

    • Single Responsibility Principle (SRP) - a class should have only one reason to change

    • Open/Closed Principle (OCP) - a class should be open for extension but closed for modification

    • Liskov Substitution Principle (LSP) - derived classes should be substitutable for their base classes

    • Interface Segregation Principle (ISP) - client...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good company for freshers as well as beginners

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Tell me about yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - It was an good experience

CLA Global Indus Value Consulting Interview FAQs

How many rounds are there in CLA Global Indus Value Consulting interview?
CLA Global Indus Value Consulting interview process usually has 1-2 rounds. The most common rounds in the CLA Global Indus Value Consulting interview process are Technical, One-on-one Round and HR.
How to prepare for CLA Global Indus Value Consulting 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 CLA Global Indus Value Consulting. The most common topics and skills that interviewers at CLA Global Indus Value Consulting expect are ISO 27001 Lead Auditor, Business Development, Cold Calling, Cyber Security and Information Security.
What are the top questions asked in CLA Global Indus Value Consulting interview?

Some of the top questions asked at the CLA Global Indus Value Consulting interview -

  1. What challenges did you face while deploying a Flutter application? Which optim...read more
  2. What is dependency injection and how is it implemented in .N...read more
  3. Design a students management results system?Write the logic to short the for th...read more

Tell us how to improve this page.

CLA Global Indus Value Consulting Interview Process

based on 5 interviews

Interview experience

3.8
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Accenture Interview Questions
3.8
 • 8.1k Interviews
Infosys Interview Questions
3.6
 • 7.5k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Cognizant Interview Questions
3.8
 • 5.6k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.7
 • 4.7k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
Genpact Interview Questions
3.8
 • 3.1k Interviews
View all

CLA Global Indus Value Consulting Reviews and Ratings

based on 14 reviews

2.5/5

Rating in categories

2.0

Skill development

2.6

Work-life balance

2.6

Salary

2.2

Job security

2.4

Company culture

2.2

Promotions

2.4

Work satisfaction

Explore 14 Reviews and Ratings
Senior Consultant
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Consultant
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Associate Consultant
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Assistant Manager
4 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare CLA Global Indus Value Consulting with

TCS

3.7
Compare

Accenture

3.8
Compare

Wipro

3.7
Compare

Cognizant

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