Upload Button Icon Add office photos

Filter interviews by

Kalyani Consultants Interview Questions and Answers for Experienced

Updated 11 Aug 2022

Kalyani Consultants Interview Experiences for Experienced

1 interview found

I applied via Referral and was interviewed in Feb 2022. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Tell me latest amendment of Companies Act.
  • Ans. 

    The latest amendment of Companies Act is the Companies (Amendment) Act, 2020.

    • The amendment was passed by the Indian Parliament in September 2020.

    • It aims to decriminalize minor procedural or technical lapses under the Companies Act, 2013.

    • It also introduces new provisions related to corporate social responsibility, producer companies, and the National Company Law Appellate Tribunal.

    • The amendment also allows companies to ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Organization is running with mindset of pre independence work culture. Please don't waste your time and ignore this organisation.

Associate Company Secretary Interview Questions asked at other Companies

Q1. Tell me latest amendment of Companies Act.
View answer (1)

Interview questions from similar companies

I applied via Referral and was interviewed before May 2017. There were 3 interview rounds.

Interview Questionnaire 

6 Questions

  • Q1. Working experience working responsibility locations changes
  • Q2. Salary discussion expectation salary
  • Q3. 1ST HR ROUND // 2ND AOM ROUND
  • Q4. Regarding Existing work
  • Q5. Family background family details
  • Q6. Timing working style working culture
  • Ans. 

    Timing, working style, and working culture are important factors for a Branch Operation Executive.

    • As a Branch Operation Executive, it is important to have a good sense of timing and be able to manage time effectively.

    • Working style should be adaptable and flexible to meet the needs of the job and the team.

    • Working culture should be positive and collaborative, with a focus on achieving common goals.

    • Examples of good workin...

  • Answered by AI

Interview Preparation Tips

Always keep your data of your current organisation like portfolio collection cases displacement related ticket size digitalisation focus.
Interview experience
4
Good
Difficulty level
Hard
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Approached by Company and was interviewed before May 2017. There were 6 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Salary discussion and negotiation
  • Q2. Java related questions were asked.
  • Q3. Selenium waits and some program
  • Q4. Asked about Collection Framework and different usecases
  • Q5. Different testing Methodologies where they checking code skills
  • Q6. Questions around different scenario based coding
  • Q7. Asked about project and work done with the experience
  • Q8. Given exam in some app where you need to write, speak and hear english senetences.

I applied via Naukri.com and was interviewed before Mar 2019. There were 6 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. P&L disused
  • Q2. Six sigma retail

Interview Preparation Tips

Interview preparation tips for other job seekers - Was fantastic open for customer services

Interview Questionnaire 

5 Questions

  • Q1. What is the difference between Service and Component in Angular
  • Ans. 

    Service provides data and functionality while Component handles UI and user interaction.

    • Service is a singleton object that can be injected into multiple components

    • Component is a directive with a template and styles

    • Service provides data and functionality to components

    • Component handles UI and user interaction

    • Services can be used to share data between components

    • Components can communicate with services using dependency inj

  • Answered by AI
  • Q2. What is the most critical technical challenge you faced in the careet and how did you resolve it
  • Q3. Which is the best to use either the State variables or Properties in ReactJS and why
  • Ans. 

    State variables are best for managing component's internal state, while properties are best for passing data from parent to child components.

    • State variables are mutable and can be changed within the component

    • Properties are immutable and cannot be changed within the component

    • State variables are used to manage the component's internal state

    • Properties are used to pass data from parent to child components

    • State variables ar...

  • Answered by AI
  • Q4. How do you configure the Authentication system in API service and how do you ensure that it is not hacked from external sources
  • Ans. 

    Authentication system in API service must be configured securely to prevent external hacking.

    • Use strong encryption algorithms to store passwords

    • Implement multi-factor authentication

    • Use HTTPS protocol to encrypt data in transit

    • Implement rate limiting to prevent brute force attacks

    • Regularly update and patch the authentication system

    • Use secure coding practices to prevent injection attacks

  • Answered by AI
  • Q5. How the clients of one domain will be made to access the API service? How do the different domains based clients authentication and authorization are managed in the API service
  • Ans. 

    Clients of one domain can access API service through authentication and authorization managed by API service.

    • API service can use OAuth2.0 for authentication and authorization

    • Different domains can have different client IDs and secrets for OAuth2.0

    • API service can use JWT for token-based authentication

    • Cross-Origin Resource Sharing (CORS) can be used to allow access from different domains

  • Answered by AI

Skills evaluated in this interview

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

Interview Questionnaire 

8 Questions

  • Q1. What was the architecture used in your project?
  • Q2. What is the IDisposal? Give an example used in the applicstion.
  • Ans. 

    IDisposable is an interface used to release unmanaged resources.

    • It is used to release unmanaged resources like file handles, database connections, etc.

    • It has a single method called Dispose() which is used to release the resources.

    • It is implemented by classes that use unmanaged resources and needs to be disposed of.

    • Example: SqlConnection class implements IDisposable to release the database connection.

    • Example: FileStream...

  • Answered by AI
  • Q3. What is Dependency Injection and how can we inplement those?
  • Ans. 

    Dependency Injection is a design pattern that allows objects to receive dependencies rather than creating them internally.

    • Dependency Injection is used to reduce tight coupling between software components.

    • It allows for easier testing and maintenance of code.

    • There are three types of Dependency Injection: Constructor Injection, Setter Injection, and Interface Injection.

    • Frameworks like Spring and Angular provide built-in s

  • Answered by AI
  • Q4. Write the code to concatenate the value with comma in the given array. int[] arr = {1, 2, 3,4,5}
  • Ans. 

    Concatenate the values in the given integer array with comma.

    • Convert the integer array to string array using Arrays.toString()

    • Use String.join() method to concatenate with comma

  • Answered by AI
  • Q5. Explaination of Interface and Abstract classes.
  • Ans. 

    Interfaces and abstract classes are used for abstraction and defining contracts.

    • Interfaces are a collection of abstract methods that define a contract for a class to implement.

    • Abstract classes are classes that cannot be instantiated and can have both abstract and concrete methods.

    • Interfaces can be implemented by multiple classes, while a class can only inherit from one abstract class.

    • Interfaces are used for loose coupl...

  • Answered by AI
  • Q6. Is it possible to instanciate the abstract class? Explain.
  • Ans. 

    No, abstract classes cannot be instantiated.

    • Abstract classes are incomplete and cannot be instantiated on their own.

    • They can only be used as a base class for other classes.

    • Instantiation of an abstract class will result in a compile-time error.

    • However, concrete classes that inherit from the abstract class can be instantiated.

  • Answered by AI
  • Q7. What is Solid Principle? Give the examples used in your application.
  • Ans. 

    SOLID is a set of principles for object-oriented programming to make software more maintainable and scalable.

    • S - Single Responsibility Principle

    • O - Open/Closed Principle

    • L - Liskov Substitution Principle

    • I - Interface Segregation Principle

    • D - Dependency Inversion Principle

    • Example: Using Single Responsibility Principle to separate UI and business logic

    • Example: Using Open/Closed Principle to extend functionality without mo

  • Answered by AI
  • Q8. Explain about the design pattern used in your application.
  • Ans. 

    We used the Model-View-Controller (MVC) design pattern in our application.

    • MVC separates the application into three interconnected components: the model, the view, and the controller.

    • The model represents the data and business logic of the application.

    • The view displays the data to the user.

    • The controller handles user input and updates the model and view accordingly.

    • MVC promotes separation of concerns and modularity.

    • Examp...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare strongly whatever you have worked practically in your projects.

Skills evaluated in this interview

Legal Interview Questions & Answers

Google user image Anonymous

posted on 17 Jan 2021

I applied via LinkedIn and was interviewed in Jul 2020. There were 6 interview rounds.

Interview Questionnaire 

8 Questions

  • Q1. Why should you be hired for this Role ?
  • Q2. Why did you choose the google company ?
  • Q3. How do you handle the Stress and Pressure ?
  • Q4. Do you have an experienced regarding this Role ?
  • Q5. What area of law most interests you?
  • Ans. 

    I am most interested in intellectual property law.

    • I find the intersection of law and technology fascinating.

    • I enjoy working with clients to protect their creative works and inventions.

    • I am particularly interested in trademark law and the branding of products and services.

    • I have experience in drafting patent applications and conducting patent searches.

    • I am also interested in the emerging field of artificial intelligence

  • Answered by AI
  • Q6. Describe a professional failure and how you handled it ?
  • Q7. Is your GPA an accurate reflection of ur abilities ? Why or why not ?
  • Ans. 

    GPA is not always an accurate reflection of abilities.

    • GPA only measures academic performance, not practical skills or experience.

    • Some students may struggle with standardized testing or have personal issues that affect their grades.

    • Employers often look for well-rounded candidates with extracurricular activities and work experience.

    • However, a high GPA can demonstrate discipline, hard work, and intelligence.

    • Ultimately, GP...

  • Answered by AI
  • Q8. What's your next 5years plan in law profession?

Interview Preparation Tips

Interview preparation tips for other job seekers - 1.Be confident while giving the answers. 2.Clear with your thoughts and knowledge as well.
3.Dress appropriately
4.Be specific
5.Be succinct and give adequate information to the Interviewer
6.listen properly then respond of the question.

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

Interview Questionnaire 

2 Questions

  • Q1. Why do you left the previous organisation?
  • Q2. Explain about the process you worked for

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep it simple and communication is the key and try to be humble as possible.

Interview Questionnaire 

2 Questions

  • Q1. Describe the situation where you have gone out of the box to help the customer.
  • Ans. 

    I once went out of the box to help a customer by personally delivering their order when the delivery service failed.

    • Delivery service failed to deliver a customer's order

    • To ensure customer satisfaction, I personally delivered the order

    • Customer was delighted with the extra effort

  • Answered by AI
  • Q2. If you get such questions in interviews always try to be short and clear in framing sentences. Always use Star technique to answer such questions. Situation task action result.

Interview Questionnaire 

6 Questions

  • Q1. 1.Tell me about yourself?
  • Ans. 

    I am an experienced executive with a strong background in leadership and strategic planning.

    • Over 10 years of executive-level experience

    • Proven track record of driving business growth and profitability

    • Skilled in developing and implementing strategic initiatives

    • Strong leadership and team-building abilities

    • Excellent communication and negotiation skills

  • Answered by AI
  • Q2. I started my answer with my job experiences and told our work profile.
  • Q3. 2. Why you want you join EXL?
  • Ans. 

    I want to join EXL because of its reputation for excellence and its commitment to innovation and growth.

    • EXL has a strong reputation for excellence in the industry.

    • I am impressed by EXL's commitment to innovation and growth.

    • EXL offers great opportunities for career advancement and professional development.

    • I believe my skills and experience align well with the requirements of the executive role at EXL.

    • I am excited about ...

  • Answered by AI
  • Q4. 3. Salary expectations
  • Q5. 4. Told me are you ok with night shift?
  • Ans. 

    Yes, I am okay with night shifts.

    • I am comfortable working during the night.

    • I understand the demands of the role and can adjust my schedule accordingly.

    • I have previous experience working night shifts and have proven to be productive during those hours.

    • I am aware of the potential challenges of night shifts, such as maintaining a healthy work-life balance, and I am prepared to manage them effectively.

  • Answered by AI
  • Q6. 5.when you can join EXL?
  • Ans. 

    I can join EXL within 2 weeks.

    • I am available to start immediately.

    • I can join within the next two weeks.

    • My current notice period is two weeks.

    • I am flexible with the joining date.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just feel relax and cool before attend to interview. You must prepared about basic reasoning, English, personallity development, basic aptitude (topic-speed time and distance, some fractions mostly question asked me these topics) and typing.

Kalyani Consultants Interview FAQs

How many rounds are there in Kalyani Consultants interview for experienced candidates?
Kalyani Consultants interview process for experienced candidates usually has 1 rounds. The most common rounds in the Kalyani Consultants interview process for experienced candidates are Technical.

Tell us how to improve this page.

People are getting interviews through

based on 1 Kalyani Consultants interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Cognizant Interview Questions
3.8
 • 5.4k Interviews
Deloitte Interview Questions
3.8
 • 2.8k Interviews
BYJU'S Interview Questions
3.1
 • 2.2k Interviews
Teleperformance Interview Questions
3.9
 • 1.7k Interviews
Reliance Retail Interview Questions
3.9
 • 1.5k Interviews
Ernst & Young Interview Questions
3.5
 • 1.1k Interviews
WNS Interview Questions
3.4
 • 946 Interviews
iEnergizer Interview Questions
4.7
 • 526 Interviews
View all

Kalyani Consultants Reviews and Ratings

based on 4 reviews

2.5/5

Rating in categories

2.5

Skill development

2.2

Work-Life balance

2.0

Salary & Benefits

1.7

Job Security

1.5

Company culture

2.5

Promotions/Appraisal

2.2

Work Satisfaction

Explore 4 Reviews and Ratings
Accountant
4 salaries
unlock blur

₹3 L/yr - ₹4.2 L/yr

Senior Manager Finance & Accounts
3 salaries
unlock blur

₹10 L/yr - ₹10.5 L/yr

Attorney
3 salaries
unlock blur

₹5.2 L/yr - ₹6.2 L/yr

Explore more salaries
Compare Kalyani Consultants with

Cognizant

3.8
Compare

Teleperformance

3.9
Compare

Reliance Retail

3.9
Compare

iEnergizer

4.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview