Upload Button Icon Add office photos
Engaged Employer

i

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

CIGNEX Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

CIGNEX Senior Software Developer Interview Questions, Process, and Tips

Updated 12 Apr 2022

CIGNEX Senior Software Developer Interview Experiences

1 interview found

Round 1 - Technical 

(1 Question)

  • Q1. Drupal Form Apis, Cache API's, events and subscribers
Round 2 - Technical 

(4 Questions)

  • Q1. Steps to create drupal custom block and entity
  • Ans. 

    Steps to create Drupal custom block and entity

    • Create a custom module

    • Define the block and entity in the module's .info.yml file

    • Create a class for the block and entity

    • Define the block and entity properties and methods in the class

    • Implement the necessary interfaces for the block and entity

    • Define the block and entity routes in the module's routing.yml file

    • Create the block and entity templates in the module's templates dire

  • Answered by AI
  • Q2. How to migrate from d7 to d8
  • Ans. 

    Migrating from Drupal 7 to Drupal 8 involves a few steps.

    • Upgrade to the latest version of Drupal 7

    • Install the Drupal 8 core and migrate modules

    • Migrate content and configuration using the Migrate API

    • Test and fix any issues that arise

  • Answered by AI
  • Q3. How to drupal site performance
  • Ans. 

    Optimize Drupal site performance by caching, optimizing database, using a CDN, and minimizing HTTP requests.

    • Enable caching and use a caching mechanism like Varnish or Memcached.

    • Optimize the database by removing unused modules and tables, and using indexes.

    • Use a Content Delivery Network (CDN) to serve static files.

    • Minimize HTTP requests by combining CSS and JavaScript files, and compressing images.

    • Use a performance moni...

  • Answered by AI
  • Q4. How to add drupal patches
  • Ans. 

    To add Drupal patches, use the patch command in the terminal.

    • Download the patch file and place it in the root directory of the Drupal installation.

    • Open the terminal and navigate to the root directory of the Drupal installation.

    • Run the command 'patch -p1 < [patch_file_name].patch' to apply the patch.

    • Verify that the patch has been applied successfully by checking the affected files.

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. What is your strength and weakness

Interview Preparation Tips

Interview preparation tips for other job seekers - Just clear the second technical round and you will be selected

Skills evaluated in this interview

Interview questions from similar companies

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

(2 Questions)

  • Q1. What are Django signals, and what is their application in web development?
  • Ans. 

    Django signals are a way for decoupled applications to get notified when certain actions occur elsewhere in the application.

    • Django signals allow certain senders to notify a set of receivers when some action has taken place.

    • They are used for decoupling various components of a web application.

    • Signals are useful for executing code based on certain events, such as user login, object creation, etc.

    • Example: Sending an email ...

  • Answered by AI
  • Q2. What are Django generic views?
  • Ans. 

    Django generic views are pre-built views provided by Django to simplify common tasks like displaying data from a database.

    • Django generic views help reduce code duplication by providing ready-to-use views for common tasks like displaying objects from a database.

    • They are generic in nature and can be easily customized to suit specific requirements.

    • Examples include ListView for displaying a list of objects, DetailView for ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - They are conducting three rounds of interviews, with coding required in each round, and tasks are assigned during the interview.

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via campus placement at Gokaraju Rangaraju Institute of Engineering and Technology, Hyderabad and was interviewed before Mar 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Java OOPS concepts, Algorithms, Exception Handling

Interview Preparation Tips

Topics to prepare for Credera Senior Software Developer interview:
  • Java
Interview preparation tips for other job seekers - Good company
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Solid Principle, Design Patterns,
  • Q2. React sharing data btw siblings without any state management.
  • Q3. NodeJs is single threaded then why it feels concurrent?
Round 2 - Technical 

(3 Questions)

  • Q1. Questions related micro services
  • Q2. Message queue related questions
  • Q3. NodeJs related questions: Event loop

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare NodeJs in-depth.
Mention things in your resume that you actually know and worked on. They will ask questions from your experience.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Tell us about your experience.
  • Q2. In english, give me a feedback you received lately.
Round 2 - Technical 

(2 Questions)

  • Q1. Brief explanation of SOLID principles
  • Q2. Ref vs out arguments
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I was interviewed in Jul 2024.

Round 1 - Coding Test 

Leet code medium level question

Round 2 - Technical 

(2 Questions)

  • Q1. About Java Streams
  • Q2. Restful API coding completion based on given file
Round 3 - HR 

(2 Questions)

  • Q1. To check your attitude
  • Q2. Given detailed about company and what project you are going to work on?
Round 4 - One-on-one 

(5 Questions)

  • Q1. Hashmap working
  • Ans. 

    Hashmap is a data structure that stores key-value pairs and allows for fast retrieval of values based on keys.

    • Hashmap uses a hashing function to map keys to indices in an array.

    • It allows for constant time complexity O(1) for insertion, deletion, and retrieval operations.

    • Example: HashMap<String, Integer> map = new HashMap<>(); map.put("key", 123); int value = map.get("key");

  • Answered by AI
  • Q2. Multithreading cases
  • Q3. Scenario specific on how to handle multiple events on a single variable to have accurate result
  • Q4. Database indexing
  • Q5. Architecture level
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Job Portal and was interviewed in Sep 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What is solid principple
  • Ans. 

    SOLID is a set of five design principles that help make software designs more understandable, flexible, and maintainable.

    • S - Single Responsibility Principle: A class should have only one reason to change.

    • O - Open/Closed Principle: Software entities should be open for extension but closed for modification.

    • L - Liskov Substitution Principle: Objects of a superclass should be replaceable with objects of its subclasses with...

  • Answered by AI
  • Q2. Whats are oops in c#
  • Ans. 

    Object-oriented programming concepts in C#

    • Encapsulation: bundling data and methods that operate on the data into a single unit

    • Inheritance: allows a class to inherit properties and behavior from another class

    • Polymorphism: ability for objects to take on multiple forms

    • Abstraction: hiding the complex implementation details and showing only the necessary features

  • Answered by AI

Skills evaluated in this interview

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

Nothing it went well

Round 2 - Coding Test 

Same here , asked basics of java and C#

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare well and go! don't stammer
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in May 2024. There were 4 interview rounds.

Round 1 - Aptitude Test 

About front end , html, css, reasoning,

Round 2 - Technical 

(1 Question)

  • Q1. What.is let , var, const
Round 3 - Technical 

(2 Questions)

  • Q1. What is angular
  • Q2. Services in angular
Round 4 - HR 

(1 Question)

  • Q1. Communication skills.

Interview Preparation Tips

Interview preparation tips for other job seekers - Good for freshers
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is sql server agent why can't we create objects of abstract class write extension method for abstract class SQL: SP vs Function, which one is faster, why? can I call SP from Function Microservice orch...
  • Ans. 

    SQL Server Agent is a job scheduling tool in SQL Server. Abstract classes cannot be instantiated. SPs are faster than functions. Microservice concepts. IEnumerable vs IQueryable.

    • SQL Server Agent is a job scheduling tool in SQL Server for automating tasks like backups, database maintenance, etc.

    • Abstract classes cannot be instantiated because they are incomplete and meant to be extended by subclasses.

    • Extension methods ca...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. What is record in c# write generic method to perform summation of 2 numeric type variable (int, double, float..) write test cases for Sum method which design pattern you used
  • Ans. 

    A record in C# is a data structure that stores a fixed number of fields of different data types.

    • A record in C# is similar to a struct in C++, containing fields to store data.

    • Example: 'public record Person { public string Name; public int Age; }'

    • Generic method for summation: 'public T Sum(T a, T b) where T : struct, IConvertible { return Convert.ToDouble(a) + Convert.ToDouble(b); }'

    • Test cases can include checking the su...

  • Answered by AI
  • Q2. This was the worst interview I have ever given. Interview got rescheduled 3 times. The panelist behaved so rudely, Why people wouldn't even care to show his face, it's literally very frustrating.

Skills evaluated in this interview

CIGNEX Interview FAQs

How many rounds are there in CIGNEX Senior Software Developer interview?
CIGNEX interview process usually has 3 rounds. The most common rounds in the CIGNEX interview process are Technical and HR.
What are the top questions asked in CIGNEX Senior Software Developer interview?

Some of the top questions asked at the CIGNEX Senior Software Developer interview -

  1. steps to create drupal custom block and ent...read more
  2. how to migrate from d7 to...read more
  3. how to add drupal patc...read more

Tell us how to improve this page.

CIGNEX Senior Software Developer Salary
based on 36 salaries
₹8 L/yr - ₹20.7 L/yr
13% more than the average Senior Software Developer Salary in India
View more details

CIGNEX Senior Software Developer Reviews and Ratings

based on 4 reviews

3.7/5

Rating in categories

3.2

Skill development

4.4

Work-life balance

4.1

Salary

2.8

Job security

3.6

Company culture

3.1

Promotions

3.8

Work satisfaction

Explore 4 Reviews and Ratings
Senior Software Engineer
176 salaries
unlock blur

₹8 L/yr - ₹27.5 L/yr

Software Engineer
81 salaries
unlock blur

₹4.5 L/yr - ₹19.8 L/yr

Lead Software Engineer
79 salaries
unlock blur

₹10 L/yr - ₹27.3 L/yr

Technical Lead
42 salaries
unlock blur

₹12.1 L/yr - ₹31.7 L/yr

Senior Software Developer
36 salaries
unlock blur

₹8 L/yr - ₹20.7 L/yr

Explore more salaries
Compare CIGNEX with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

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