Premium Employer

i

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

Perceptive Verified Tick

Compare button icon Compare button icon Compare
3.6

based on 84 Reviews

Filter interviews by

Perceptive Senior Software Engineer Interview Questions, Process, and Tips

Updated 2 Jan 2024

Perceptive Senior Software Engineer Interview Experiences

1 interview found

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

I applied via Approached by Company and was interviewed in Jul 2023. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. What is azure PAAS , IAAS , SAAS ?
  • Ans. 

    Azure PAAS, IAAS, and SAAS are different cloud service models provided by Microsoft Azure.

    • PAAS (Platform as a Service) - Provides a platform for developers to build, deploy, and manage applications without worrying about infrastructure.

    • IAAS (Infrastructure as a Service) - Provides virtualized computing resources over the internet, such as virtual machines, storage, and networking.

    • SAAS (Software as a Service) - Delivers...

  • Answered by AI
  • Q2. What is Dependency Injection ? How is dependency Injection achieved ?
  • Ans. 

    Dependency Injection is a design pattern in which a class receives its dependencies from external sources rather than creating them itself.

    • Dependency Injection helps in achieving loose coupling between classes.

    • It allows for easier testing and maintenance of code.

    • There are three common ways to achieve Dependency Injection: Constructor Injection, Setter Injection, and Interface Injection.

  • Answered by AI
  • Q3. Difference between dotnet 6 and dotnet 5
  • Ans. 

    Dotnet 6 is the latest version with new features and improvements over Dotnet 5.

    • Dotnet 6 has improved performance and reduced memory usage compared to Dotnet 5.

    • Dotnet 6 introduces Hot Reload feature for faster development iteration.

    • Dotnet 6 includes support for MAUI (Multi-platform App UI) for building cross-platform apps.

    • Dotnet 6 has enhanced support for cloud-native applications and microservices.

    • Dotnet 6 includes im...

  • Answered by AI
  • Q4. What is azure functions ? what is the difference between azure functions and logic apps
  • Ans. 

    Azure Functions is a serverless compute service that allows you to run event-triggered code without managing infrastructure.

    • Azure Functions is used for running small pieces of code or 'functions' in the cloud.

    • It is event-driven and can be triggered by various Azure services or external sources.

    • Azure Logic Apps is a workflow automation tool that allows you to automate business processes by connecting various services an...

  • Answered by AI
Round 2 - Technical 

(4 Questions)

  • Q1. Explain the use of interfaces . when will you use interface vs when will you use abstract class ?
  • Ans. 

    Interfaces define a contract for classes to implement, while abstract classes provide partial implementation.

    • Use interfaces when you want to define a contract that multiple classes can implement.

    • Use abstract classes when you want to provide some common functionality to multiple classes.

    • Interfaces support multiple inheritance, while classes can only inherit from one abstract class.

    • Interfaces are used for loose coupling ...

  • Answered by AI
  • Q2. Explain Solid principles
  • Ans. 

    Solid principles are a set of five design principles for writing clean, maintainable, and scalable code.

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

    • Open/Closed Principle (OCP) - Software entities should be open for extension but closed for modification.

    • Liskov Substitution Principle (LSP) - Objects of a superclass should be replaceable with objects of its subclasses without affe...

  • Answered by AI
  • Q3. Test driven Development , azure Deployment , mocking test in dot net applications
  • Q4. Explain your own use of Logic apps and service bus .
  • Ans. 

    I use Logic Apps for automating workflows and Service Bus for reliable messaging.

    • I use Logic Apps to create automated workflows for integrating various systems and services.

    • I leverage Service Bus for reliable messaging between different components of a distributed system.

    • For example, I have used Logic Apps to automate data transfers between CRM systems and databases, and Service Bus for decoupling microservices in a cl

  • Answered by AI

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 is JAVA in software
  • Ans. 

    JAVA is a high-level programming language used for developing applications and software.

    • Object-oriented programming language

    • Platform-independent

    • Used for web development, mobile apps, enterprise software

    • Has a large standard library

    • Supports multithreading and networking

  • Answered by AI
  • Q2. What is oracle in software
  • Ans. 

    Oracle in software refers to Oracle Corporation, a multinational computer technology corporation known for its database management systems.

    • Oracle is a leading provider of relational database management systems (RDBMS).

    • It offers a wide range of products and services for data management, cloud applications, and more.

    • Oracle databases are widely used in enterprise applications for storing and managing data efficiently.

    • Exam...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Code for Hello World
  • Ans. 

    Simple code to print 'Hello World'

    • Use a print statement to display 'Hello World'

    • In Python: print('Hello World')

    • In Java: System.out.println('Hello World')

  • Answered by AI
  • Q2. Code for printing algo
  • Ans. 

    Code for printing algorithm in software development.

    • Use loops to iterate through the data to be printed.

    • Consider formatting options such as spacing and alignment.

    • Handle edge cases like empty input or invalid data.

    • Example: for (int i = 0; i < array.length; i++) { System.out.println(array[i]); }

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

(2 Questions)

  • Q1. Different arrays in string types
  • Ans. 

    Arrays of string types are collections of strings stored in a single variable.

    • Arrays can be declared and initialized with string values like ['apple', 'banana', 'cherry'].

    • Access individual strings in the array using index like array[0] for 'apple'.

    • Perform operations like sorting or filtering on arrays of strings.

  • Answered by AI
  • Q2. Different strings in array texts
  • Ans. 

    Comparing different strings in an array of texts.

    • Iterate through the array and compare each string with the others.

    • Use a nested loop to compare each pair of strings.

    • Consider using a hash map to store the frequency of each unique string for efficient comparison.

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

(2 Questions)

  • Q1. Different dS in software engineer
  • Ans. 

    Different design patterns in software engineering

    • Creational patterns (e.g. Singleton, Factory)

    • Structural patterns (e.g. Adapter, Decorator)

    • Behavioral patterns (e.g. Observer, Strategy)

  • Answered by AI
  • Q2. Diff types in string test types
  • Ans. 

    Different types of string test types include equality, containment, length, case sensitivity, and pattern matching.

    • Equality test: comparing two strings to see if they are exactly the same

    • Containment test: checking if a string contains a specific substring

    • Length test: determining the length of a string

    • Case sensitivity test: checking if two strings are equal while considering case

    • Pattern matching test: using regular expr

  • Answered by AI

Skills evaluated in this interview

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

There were two question on DSA

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

I applied via Approached by Company and was interviewed in Apr 2024. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. 1. Solid principles 2. Design patterns 3. Background services .net core 4. .net core basics 5. Reverse a sentence along with a word
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. All the asp.net and MVC questions need.
Interview experience
3
Average
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2024. There were 2 interview rounds.

Round 1 - Coding Test 

Basic and advanced concepts of JavaScript / NodeJS covered.

Round 2 - HR 

(2 Questions)

  • Q1. Why are you looking for job change
  • Q2. What are your salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Freshers are not entertained. Minimum 3-4 yrs experience they look for. Expected to join in 30-45days.

I applied via Naukri.com and was interviewed in May 2022. There were 2 interview rounds.

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 - One-on-one 

(4 Questions)

  • Q1. 1. Is string a value type of reference type? 2. Big O - for loop, binary search, hash table lookup 3. Can you use object as a key in a dictionary? - answer is yes, using GetHashCode 4. Get 7th highest sal...
  • Q2. Design a employee-Manager class. Write method to display employee organizational hierarchy like we see in Microsoft Teams Org tab
  • Ans. 

    Design an employee-Manager class and write a method to display employee organizational hierarchy.

    • Create an Employee class with attributes like name, id, managerId, etc.

    • Create a Manager class that inherits from Employee class and has a list of employees under them.

    • Write a method to display the hierarchy using recursion.

    • Use a data structure like a dictionary to store the employees and their managers.

    • Consider edge cases l

  • Answered by AI
  • Q3. Get 7th highest salary without CTE
  • Ans. 

    Get 7th highest salary without CTE

    • Use subquery to get distinct salaries

    • Order the salaries in descending order

    • Use LIMIT and OFFSET to get the 7th highest salary

  • Answered by AI
  • Q4. Delegates, significance of it in C#
  • Ans. 

    Delegates are a type-safe function pointers in C# used to encapsulate methods and pass them as arguments.

    • Delegates allow for event-driven programming

    • Delegates can be used to implement callbacks

    • Delegates can be chained together to create a multicast delegate

    • Delegates can be used to implement the observer pattern

    • Delegates can be used to implement the command pattern

  • Answered by AI

Interview Preparation Tips

Topics to prepare for IQVIA Senior Software Engineer interview:
  • Big O
  • HLD
  • C#
  • Javascript
Interview preparation tips for other job seekers - Know your CS fundamentals very well. Practice HLD & LLD for few scenarios like Employee-Manager, Customer-Order, Student-school etc.

Skills evaluated in this interview

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

I applied via Referral and was interviewed before Jun 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Solution for a given problem by writing codes

Round 2 - Aptitude Test 

Feasible check and fitment assessment

I applied via Recruitment Consultant and was interviewed in Nov 2021. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. OOPS basics, System design

Interview Preparation Tips

Interview preparation tips for other job seekers - The interview had 3 tech rounds and was mostly to check the candidates knowledge depth in their respective fields

Interview Questionnaire 

1 Question

  • Q1. Iqvia most of the projects are communites, all questions are on communities

Interview Preparation Tips

Interview preparation tips for other job seekers - customization and communities'

Perceptive Interview FAQs

How many rounds are there in Perceptive Senior Software Engineer interview?
Perceptive interview process usually has 2 rounds. The most common rounds in the Perceptive interview process are Technical.
How to prepare for Perceptive Senior Software Engineer 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 Perceptive. The most common topics and skills that interviewers at Perceptive expect are SQL, Javascript, Clinical Research, Unit Testing and Oracle.
What are the top questions asked in Perceptive Senior Software Engineer interview?

Some of the top questions asked at the Perceptive Senior Software Engineer interview -

  1. What is azure functions ? what is the difference between azure functions and lo...read more
  2. explain the use of interfaces . when will you use interface vs when will you us...read more
  3. What is Dependency Injection ? How is dependency Injection achieved...read more

Tell us how to improve this page.

Join Perceptive Serving Science.
Perceptive Senior Software Engineer Salary
based on 46 salaries
₹10.7 L/yr - ₹28.1 L/yr
23% more than the average Senior Software Engineer Salary in India
View more details

Perceptive Senior Software Engineer Reviews and Ratings

based on 2 reviews

4.7/5

Rating in categories

4.4

Skill development

4.7

Work-Life balance

4.4

Salary & Benefits

4.4

Job Security

4.7

Company culture

4.4

Promotions/Appraisal

4.7

Work Satisfaction

Explore 2 Reviews and Ratings
Senior Software Engineer
46 salaries
unlock blur

₹10.7 L/yr - ₹28 L/yr

Software Engineer
29 salaries
unlock blur

₹5.8 L/yr - ₹13 L/yr

Senior Software Validation Engineer
28 salaries
unlock blur

₹8.5 L/yr - ₹21 L/yr

Principal Software Validation Engineer
23 salaries
unlock blur

₹10 L/yr - ₹29 L/yr

Process Specialist
21 salaries
unlock blur

₹5 L/yr - ₹9 L/yr

Explore more salaries
Compare Perceptive with

Info Edge

4.0
Compare

JustDial

3.5
Compare

Indiamart Intermesh

3.6
Compare

Matrimony.com

4.3
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