Premium Employer

i

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

ICON Plc Verified Tick

Compare button icon Compare button icon Compare
4.2

based on 711 Reviews

Filter interviews by

ICON Plc Senior Engineer Interview Questions and Answers

Updated 30 Dec 2023

ICON Plc Senior Engineer Interview Experiences

1 interview found

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

I applied via Company Website and was interviewed in Jun 2023. There were 2 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Steel and super structure (pile,girder,ms excell,steel reconslation,auto cad,planning ,) Core design type pile quiestion and prestressing process and calculation etc
Round 2 - HR 

(1 Question)

  • Q1. Roles and responsibilities in present company Salary negotiations

Interview Preparation Tips

Interview preparation tips for other job seekers - If u not capable English conversation, no problems ,u conversation in Hindi.

Interview questions from similar companies

Senior Engineer Interview Questions & Answers

IQVIA user image Qhairunnisa Syed

posted on 8 Jun 2024

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Dec 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic topics of plsql
  • Q2. One query to fetch max n min of salary from emp table
  • Ans. 

    Use SQL query to fetch maximum and minimum salary from emp table

    • Use SELECT MAX(salary) FROM emp to fetch maximum salary

    • Use SELECT MIN(salary) FROM emp to fetch minimum salary

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Performance tuning
  • Q2. Indexes and exceptions used
  • Ans. 

    Indexes and exceptions are used to optimize database performance and handle errors in code.

    • Indexes are used to quickly retrieve data from a database by creating a sorted list of values.

    • Exceptions are used to handle errors in code and prevent the program from crashing.

    • Examples: Creating indexes on frequently queried columns like 'id' or 'timestamp'. Using try-catch blocks to handle exceptions like divide by zero.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Anagram of two strings in java
  • Ans. 

    Java program to check if two strings are anagrams

    • Create a function that takes two strings as input

    • Convert both strings to character arrays and sort them

    • Check if the sorted arrays are equal to determine if they are anagrams

  • Answered by AI
  • Q2. Insert and select query in MySQL
  • Ans. 

    Insert and select data in MySQL using SQL queries

    • Use INSERT INTO table_name (column1, column2, ...) VALUES (value1, value2, ...); to insert data

    • Use SELECT * FROM table_name; to select all data from a table

    • Use SELECT column1, column2 FROM table_name WHERE condition; to select specific data based on a condition

  • Answered by AI
  • Q3. Get and Post APIs in rest
  • Ans. 

    GET and POST are HTTP methods used in REST APIs for retrieving and sending data.

    • GET method is used to retrieve data from a server

    • POST method is used to send data to a server

    • GET requests are idempotent, while POST requests are not

    • GET requests should only be used for retrieving data, not for modifying data

    • Example: GET request to retrieve a list of users - GET /users

    • Example: POST request to create a new user - POST /users

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - It was technical round and there were three panelists. Started with alot of database questions and core java question. Prepare well about your project working in the company. I couldn't clear this round recieved rejection mail after two weeks.

Skills evaluated in this interview

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

I applied via Indeed and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

It was very easy basic qns

Round 2 - HR 

(1 Question)

  • Q1. Why would you like to work for this company
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

There were two question on DSA

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

I was interviewed before Feb 2023.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Will be full on previous experience technical found
  • Q2. Previous company technical questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Should be a have grip previous company work

I applied via Campus Placement and was interviewed before Jun 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Distillation, mechanical operation, mixing, powder handling process, simulation, DEM

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident on yourself
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
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Approached by Company and was interviewed in Aug 2023. 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 - Technical 

(2 Questions)

  • Q1. Explain Behaviour subject in Angular.
  • Ans. 

    Behaviour subject in Angular is a special type of subject that allows both subscribing and emitting values.

    • BehaviourSubject is a type of subject in RxJS library.

    • It has an initial value that will be emitted to new subscribers.

    • It stores the latest value and emits it immediately to new subscribers.

    • Example: const subject = new BehaviorSubject('initial value');

    • Example: subject.next('new value');

  • Answered by AI
  • Q2. Explain Design Principles
  • Ans. 

    Design principles are guidelines for designing software solutions that are maintainable, scalable, and efficient.

    • Design principles help in creating software that is easy to understand, modify, and maintain.

    • They promote code reusability, modularity, and flexibility.

    • Examples of design principles include SOLID principles, DRY (Don't Repeat Yourself), KISS (Keep It Simple, Stupid), and YAGNI (You Aren't Gonna Need It).

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare the interview questions which are asked in portals.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. SQL interview question
  • Q2. Stored Procedure and function differences
  • Ans. 

    Stored procedures are precompiled and stored in the database, while functions are compiled and stored in memory.

    • Stored procedures are precompiled and stored in the database for reuse.

    • Functions are compiled and stored in memory for faster execution.

    • Stored procedures can return multiple values, while functions return a single value.

    • Functions can be called from within a stored procedure, but stored procedures cannot be ca

  • Answered by AI
  • Q3. SQL query flow and window function they will ask

Interview Preparation Tips

Interview preparation tips for other job seekers - Good hands on SQL is required

ICON Plc Interview FAQs

How many rounds are there in ICON Plc Senior Engineer interview?
ICON Plc interview process usually has 2 rounds. The most common rounds in the ICON Plc interview process are Technical and HR.

Tell us how to improve this page.

ICON Plc Senior Engineer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more
Join ICON Plc Clinical Research. Evolved.

Senior Engineer Interview Questions from Similar Companies

View all

Fast track your campus placements

View all
ICON Plc Senior Engineer Salary
based on 8 salaries
₹6 L/yr - ₹9 L/yr
21% less than the average Senior Engineer Salary in India
View more details

ICON Plc Senior Engineer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

5.0

Skill development

3.0

Work-life balance

4.0

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

4.0

Work satisfaction

Explore 1 Review and Rating
Senior Clinical Data Coordinator
132 salaries
unlock blur

₹6.3 L/yr - ₹14.4 L/yr

Drug Safety Associate
94 salaries
unlock blur

₹3.5 L/yr - ₹7.2 L/yr

Clinical Data Coordinator
89 salaries
unlock blur

₹3 L/yr - ₹11.3 L/yr

tmf specialist
65 salaries
unlock blur

₹2.5 L/yr - ₹5.8 L/yr

Clinical Data Coordinator 2
62 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

Explore more salaries
Compare ICON Plc with

Parexel International

3.9
Compare

Fortrea Development India Private Limited

3.9
Compare

PPD

Compare

Syneos Health

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