Upload Button Icon Add office photos
Engaged Employer

i

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

Northcorp Software Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Clear (1)

Northcorp Software Automation Engineer Interview Questions, Process, and Tips

Updated 26 Feb 2025

Top Northcorp Software Automation Engineer Interview Questions and Answers

  • Q1. What is the difference between Continuous Integration (CI) and Continuous Deployment (CD) ?
  • Q2. What is the primary purpose of using selenium n automation testing?
  • Q3. What is difference between Selenium WebDriver Selenium RC?
View all 6 questions

Northcorp Software Automation Engineer Interview Experiences

7 interviews found

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

(2 Questions)

  • Q1. What is the difference between Continuous Integration (CI) and Continuous Deployment (CD) ?
  • Ans. 

    CI is the practice of regularly integrating code changes into a shared repository, while CD is the automated process of deploying code changes to production.

    • CI focuses on integrating code changes frequently to detect and fix integration errors early on.

    • CD automates the deployment process to quickly and reliably release code changes to production.

    • CI is a part of the software development process, while CD is a part of th...

  • Answered by AI
  • Q2. CI is the automated merging the code changes, while CD automatically deploys the changes to production after testing.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is difference between Selenium WebDriver Selenium RC?
  • Ans. 

    Selenium WebDriver is newer and more advanced than Selenium RC.

    • Selenium WebDriver is faster and more reliable than Selenium RC.

    • Selenium WebDriver supports multiple programming languages, while Selenium RC only supports Java.

    • Selenium WebDriver does not require a separate server to run tests, unlike Selenium RC.

    • Selenium WebDriver has a simpler and more user-friendly API compared to Selenium RC.

  • Answered by AI
  • Q2. WebDriver is faster and more efficient than RC.

Automation Engineer Interview Questions Asked at Other Companies

asked in GEA Group
Q1. 16) What is modbus ? Types of modbus? How many slaves we can conn ... read more
asked in Blue Yonder
Q2. 1. What is the difference between Absolute & Relative Xpaths?
Q3. 1. Explain oops concepts in coding. 2. Write a program to find mi ... read more
Q4. One coding challenge was given to find the number of palindrome w ... read more
asked in GEA Group
Q5. 15) What is ASI protocol? How many slaves we can connect to one m ... read more
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the purpose of a test automation framework?
  • Ans. 

    A test automation framework is a set of guidelines, coding standards, concepts, processes, practices, tools, and utilities that help to create automated tests.

    • Provides structure and organization for automated tests

    • Promotes reusability of code and components

    • Enhances test maintenance and scalability

    • Supports multiple test types such as functional, regression, and performance testing

    • Integrates with continuous integration t...

  • Answered by AI
  • Q2. It provides guideline, best practices, and reusable components to write efficient and maintainable test scripts.

Interview Preparation Tips

Interview preparation tips for other job seekers - "Customize your resume for each role."
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is the primary purpose of using selenium n automation testing?
  • Ans. 

    The primary purpose of using Selenium in automation testing is to automate web application testing.

    • Automate repetitive manual testing tasks

    • Increase test coverage and efficiency

    • Support multiple browsers and platforms

    • Integrate with continuous integration tools like Jenkins

    • Execute parallel testing to save time

    • Verify functionality and performance of web applications

  • Answered by AI
  • Q2. Selenium is primarily used of automation web browsers .............etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Build your skills; opportunities will follow.

Northcorp Software interview questions for designations

 Qa Automation Testing Engineer

 (1)

 Sdet Automation Test Engineer

 (1)

 QA Engineer

 (4)

 Devops Engineer

 (3)

 Data Engineer

 (1)

 Softwaretest Engineer

 (1)

 Software Testing Engineer

 (1)

 Business Development Executive

 (2)

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is stands by QA?
  • Ans. 

    QA stands for Quality Assurance, which is the process of ensuring that products or services meet specified requirements and standards.

    • QA involves testing and evaluating products to identify defects or issues.

    • It focuses on preventing defects rather than detecting them after they occur.

    • QA helps improve processes and ensure consistency in product quality.

    • Examples of QA activities include test planning, test execution, and

  • Answered by AI
  • Q2. QA stands by Quality Ensurance.

Get interview-ready with Top Northcorp Software Interview Questions

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

(1 Question)

  • Q1. Name one popular tool used for automation testing?

Interview Preparation Tips

Interview preparation tips for other job seekers - "Always follow up after interview."
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. What is Karate Technology?
  • Ans. 

    Karate is an open-source tool for API testing and automation.

    • Karate is built on top of Cucumber, a popular BDD framework.

    • It allows for writing test scripts in a simple and readable syntax.

    • Karate supports HTTP request/response handling, JSON/XML parsing, and data-driven testing.

    • It can be integrated with CI/CD pipelines for automated testing.

    • Karate is commonly used for testing RESTful APIs.

  • Answered by AI

Interview questions from similar companies

I applied via Campus Placement and was interviewed before Jul 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

3 sections :
1.Aptitude
2.Reasoning
3.Coding

Round 2 - One-on-one 

(1 Question)

  • Q1. Resume based technical questions
Round 3 - HR 

(1 Question)

  • Q1. Family background and company related things.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare aptitude well and resume based questions.
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 Oct 2023. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Difference between final finally finalize
  • Ans. 

    final, finally, and finalize are related keywords in Java with different meanings and usage.

    • final is a keyword used to declare constants, variables, methods, and classes that cannot be changed or extended.

    • finally is a block used in exception handling to ensure a piece of code is always executed, whether an exception is thrown or not.

    • finalize is a method used in Java to perform cleanup operations on an object before it

  • Answered by AI
  • Q2. Gave code class A { int i = 10; } class B extends A { int i = 20; } public class test{ public static void main (String [] args) { A a = new B(); System.out.println(a.i): } }
  • Ans. 

    The code will output 10 because the variable i is accessed through a reference of class A.

    • When a subclass object is assigned to a superclass reference, the superclass reference can only access the superclass members.

    • In this case, even though the object is of class B, the variable i is accessed from class A.

    • Output: 10

  • Answered by AI
  • Q3. Gave code and asked output class A { static int i = 10; public void inc(){ i++; System.out.println(i); } } public class test{ public static void main (String [] args){ A a = new A(); A b = new B(); a.inc...

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare oops concepts tricky code questions only theory wont help.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

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

Round 1 - Technical 

(6 Questions)

  • Q1. Tell me about yourself
  • Q2. Write a java program for prime number
  • Ans. 

    A Java program to check if a number is prime or not.

    • Create a function to check if a number is prime by iterating from 2 to the square root of the number.

    • If the number is divisible by any number in that range, it is not prime.

    • Handle edge cases like 0, 1, and negative numbers separately.

    • Example: public static boolean isPrime(int num) { for(int i=2; i<=Math.sqrt(num); i++) { if(num % i == 0) { return false; } } return tru

  • Answered by AI
  • Q3. Write a program for leap year
  • Ans. 

    Program to determine if a given year is a leap year or not

    • Check if the year is divisible by 4

    • If the year is divisible by 100, also check if it is divisible by 400

    • If both conditions are met, it is a leap year

  • Answered by AI
  • Q4. Explain your last project framework
  • Q5. Where you used OOPS concept in your framework
  • Ans. 

    I used OOPS concepts in my framework for creating reusable components and maintaining code modularity.

    • Used inheritance to create a base class with common functionalities shared by multiple classes

    • Implemented polymorphism to allow different classes to implement the same method in their own way

    • Encapsulated data and behavior within classes using access modifiers like private and public

    • Utilized abstraction to hide the impl...

  • Answered by AI
  • Q6. Write a java program for add this number 6134 and total will be 14
  • Ans. 

    Java program to add numbers 6134 to get total 14.

    • Create an array of integers with the numbers to be added

    • Iterate through the array and add the numbers

    • Check if the total equals 14

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - No

Skills evaluated in this interview

Contribute & help others!
anonymous
You can choose to be anonymous

Northcorp Software Interview FAQs

How many rounds are there in Northcorp Software Automation Engineer interview?
Northcorp Software interview process usually has 1 rounds. The most common rounds in the Northcorp Software interview process are Technical.
What are the top questions asked in Northcorp Software Automation Engineer interview?

Some of the top questions asked at the Northcorp Software Automation Engineer interview -

  1. What is the difference between Continuous Integration (CI) and Continuous Deplo...read more
  2. What is the primary purpose of using selenium n automation testi...read more
  3. What is difference between Selenium WebDriver Selenium ...read more

Recently Viewed

INTERVIEWS

McNally Bharat Engineering

No Interviews

INTERVIEWS

McNally Bharat Engineering

No Interviews

INTERVIEWS

McNally Bharat Engineering

No Interviews

INTERVIEWS

Northcorp Software

No Interviews

INTERVIEWS

McNally Bharat Engineering

No Interviews

INTERVIEWS

Northcorp Software

No Interviews

INTERVIEWS

Northcorp Software

No Interviews

LIST OF COMPANIES

McNally Bharat Engineering

Locations

INTERVIEWS

Northcorp Software

No Interviews

INTERVIEWS

Northcorp Software

No Interviews

Tell us how to improve this page.

Northcorp Software Automation Engineer Interview Process

based on 7 interviews

1 Interview rounds

  • Technical Round
View more

Northcorp Software Automation Engineer Reviews and Ratings

based on 8 reviews

4.1/5

Rating in categories

4.1

Skill development

4.1

Work-life balance

4.1

Salary

4.1

Job security

4.1

Company culture

4.1

Promotions

4.1

Work satisfaction

Explore 8 Reviews and Ratings
Software Developer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Devops Engineer
9 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Data Scientist
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Java Developer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Northcorp Software with

Infosys

3.6
Compare

TCS

3.7
Compare

Wipro

3.7
Compare

HCLTech

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