Upload Button Icon Add office photos

Consilium Software

Compare button icon Compare button icon Compare

Filter interviews by

Consilium Software Interview Questions and Answers

Updated 5 Mar 2025
Popular Designations

Consilium Software Interview Experiences

3 interviews found

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I appeared for an interview in Aug 2023.

Round 1 - One-on-one 

(1 Question)

  • Q1. Professional background only

Interview Preparation Tips

Interview preparation tips for other job seekers - Don’t even go for interview.

I applied via Walk-in

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. . Net Code compilation on. Net plateform?
  • Ans. 

    .NET code is compiled on the .NET platform.

    • The .NET platform includes a compiler that translates source code into Microsoft Intermediate Language (MSIL).

    • The MSIL is then compiled into native code by the Just-In-Time (JIT) compiler when the code is executed.

    • The .NET platform also includes a tool called Ngen.exe that can precompile MSIL into native code for faster startup times.

    • The .NET platform supports multiple program...

  • Answered by AI
  • Q2. What are Ajax attributes in Jquery?
  • Ans. 

    Ajax attributes in Jquery are used to handle asynchronous HTTP requests.

    • Ajax attributes include url, type, data, success, error, and beforeSend.

    • They are used to send and receive data from a server without reloading the page.

    • Example: $.ajax({url: 'example.com', type: 'GET', success: function(data){console.log(data)}});

  • Answered by AI
  • Q3. What are difference s between SP and Sql function?
  • Ans. 

    SP is a stored procedure while SQL function returns a value.

    • SP is used to execute a set of SQL statements while SQL function returns a single value.

    • SP can have input/output parameters while SQL function can only have input parameters.

    • SP can modify data in tables while SQL function cannot.

    • SP can be called from within a SQL statement while SQL function can be used in a SELECT statement.

    • Examples of SQL functions include S...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Consilium Software Software Developer interview:
  • OOP
  • Jquery
  • SQL
Interview preparation tips for other job seekers - Have good understanding of OOP and web app development.

Skills evaluated in this interview

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

I appeared for an interview before Mar 2024.

Round 1 - Aptitude Test 

Standard aptitude questions.

Round 2 - Coding Test 

Questions related to data types.

Round 3 - HR 

(2 Questions)

  • Q1. Brief introduction
  • Ans. 

    I am a passionate software engineer with expertise in full-stack development and a strong focus on problem-solving and collaboration.

    • Experience in developing web applications using React and Node.js.

    • Proficient in database management with SQL and NoSQL technologies.

    • Strong understanding of algorithms and data structures, demonstrated through competitive programming.

    • Worked on a team project that improved application perfo...

  • Answered by AI
  • Q2. Salary expectation

Top trending discussions

View All
Interview Tips & Stories
5d (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Consilium Software?
Ask anonymously on communities.

Interview questions from similar companies

I applied via Naukri.com and was interviewed before Feb 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. 2 technical rounds, 1 psychometric test, then Manager and HR rounds, basic question on java 7 and java 8,interface and class, DS questions like linkedList reverse and adding nodes to linkedList, Hashmap, ...

Interview Preparation Tips

Interview preparation tips for other job seekers - Java basics should be clear and brushed up, be calm and confident while giving your answers.

I applied via Company Website and was interviewed in Apr 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. What did you do, and how? This is only for experience candidate. Excel assessment will be from vlookup, shorting.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was very easy process, I have gone through total 3 rounds of interviews process. First 2 round is general discussion in which they will Chek your problem solving skills, and how your approach to project. 3rd round is excel assessment which was very easy.

Interview Questionnaire 

1 Question

  • Q1. Level of questions are pretty good, nothing like typical theoretical interviewer looking more towards the practical knowledge
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Reconciliation based question medium
Are these interview questions helpful?
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Normal Aptitude and Basics of the Computer Core Questions

Round 2 - Technical 

(2 Questions)

  • Q1. Tell about Yourself
  • Ans. 

    I am a software developer with 5 years of experience in developing web applications using Java, Spring Boot, and Angular.

    • 5 years of experience in software development

    • Proficient in Java, Spring Boot, and Angular

    • Strong problem-solving skills

    • Experience working in Agile development environment

    • Passionate about learning new technologies

  • Answered by AI
  • Q2. Write the code abt the right binary tree?
Round 3 - HR 

(1 Question)

  • Q1. Normal Hr Questions

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. SQL Questions - Constraints- how to optimize long SQL query without changing the output
  • Ans. 

    Optimize long SQL queries by refining structure, using indexes, and minimizing data retrieval.

    • Use indexes on columns frequently used in WHERE clauses to speed up data retrieval. Example: CREATE INDEX idx_column ON table_name(column);

    • Avoid SELECT *, specify only the columns needed to reduce data transfer. Example: SELECT column1, column2 FROM table_name;

    • Utilize JOINs efficiently instead of subqueries when possible. Exam...

  • Answered by AI
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

Sql mcq questions with medium difficulty

Round 2 - Technical 

(1 Question)

  • Q1. What is inheritance? What are advantages of oops? What's indexing in sql?
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Advantages of OOPs include reusability, modularity, and flexibility in code design.

    • Indexing in SQL is a way to optimize database queries by creating indexes on columns to improve search performance.

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

(1 Question)

  • Q1. What was your previous job role? What methodologies did you follow while working?
  • Ans. 

    I was a Software Developer at XYZ Company. I followed Agile and Scrum methodologies.

    • Worked as a Software Developer at XYZ Company

    • Followed Agile and Scrum methodologies for project management

    • Participated in daily stand-up meetings, sprint planning, and retrospectives

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. What are you leaving your current organization?

Consilium Software Interview FAQs

How many rounds are there in Consilium Software interview?
Consilium Software interview process usually has 2 rounds. The most common rounds in the Consilium Software interview process are Resume Shortlist, Technical and One-on-one Round.
How to prepare for Consilium Software 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 Consilium Software. The most common topics and skills that interviewers at Consilium Software expect are CRM, Customer Engagement, Cisco, SQL and Javascript.
What are the top questions asked in Consilium Software interview?

Some of the top questions asked at the Consilium Software interview -

  1. What are difference s between SP and Sql functi...read more
  2. . Net Code compilation on. Net platefo...read more
  3. What are Ajax attributes in Jque...read more

Tell us how to improve this page.

Overall Interview Experience Rating

2/5

based on 2 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

CyberArk Interview Questions
3.5
 • 15 Interviews
Exotel Interview Questions
3.0
 • 14 Interviews
Narvar India Interview Questions
3.0
 • 12 Interviews
PlanSource Interview Questions
3.5
 • 11 Interviews
Vanenburg Interview Questions
3.7
 • 10 Interviews
Addepar Interview Questions
3.3
 • 8 Interviews
Ivalua Interview Questions
3.7
 • 8 Interviews
Unbxd Interview Questions
3.8
 • 7 Interviews
View all

Consilium Software Reviews and Ratings

based on 13 reviews

2.4/5

Rating in categories

2.4

Skill development

2.5

Work-life balance

2.2

Salary

2.9

Job security

2.3

Company culture

2.4

Promotions

2.6

Work satisfaction

Explore 13 Reviews and Ratings
Manager HR and Marketing

New Delhi

3-8 Yrs

Not Disclosed

CX Solutions Consultant

New Delhi

3-5 Yrs

Not Disclosed

Technical Engineer - UCCX/UCCE

New Delhi

2-3 Yrs

Not Disclosed

Explore more jobs
Software Developer
42 salaries
unlock blur

₹3.5 L/yr - ₹8.5 L/yr

Database Developer
10 salaries
unlock blur

₹3.6 L/yr - ₹11 L/yr

Junior Software Developer
5 salaries
unlock blur

₹1.8 L/yr - ₹4.5 L/yr

Software Tester
5 salaries
unlock blur

₹2.5 L/yr - ₹4.5 L/yr

Senior Software Developer
5 salaries
unlock blur

₹7 L/yr - ₹18.1 L/yr

Explore more salaries
Compare Consilium Software with

Exotel

3.0
Compare

Azuga Telematics

3.2
Compare

Shell Recharge Solutions

4.7
Compare

Flixstock

2.4
Compare
write
Share an Interview