Upload Button Icon Add office photos
Engaged Employer

i

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

NextComm Corporation Verified Tick

Compare button icon Compare button icon Compare
4.9

based on 1.2k Reviews

Filter interviews by

NextComm Corporation AWS Engineer Interview Questions and Answers

Updated 1 Dec 2024

NextComm Corporation AWS Engineer Interview Experiences

1 interview found

AWS Engineer Interview Questions & Answers

user image Anonymous

posted on 1 Dec 2024

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

I applied via Recruitment Consulltant and was interviewed before Dec 2023. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. AWS basics and services

Interview questions from similar companies

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

I applied via LinkedIn and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - Coding Test 

This was a coderpad round where I solved python coding problem and SQL queries.

Round 2 - Technical 

(2 Questions)

  • Q1. The Interviewer discussed my resume in detail and discussed the projects.
  • Q2. Problems faced in project and solutions implemented.
Round 3 - Technical 

(1 Question)

  • Q1. Conversational round focused on team collaboration and problem solving
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Technical 

(4 Questions)

  • Q1. CDS Annotations
  • Q2. Difference between interface and abstract class
  • Ans. 

    Interface is a contract specifying methods that a class must implement, while abstract class can have both implemented and abstract methods.

    • Interface can only have abstract methods and cannot have any implementation, while abstract class can have both abstract and non-abstract methods.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Interfaces are used to achieve multiple inheritan...

  • Answered by AI
  • Q3. Scenario based question from RAP and OO ABAP
  • Q4. Scenario based questions on Odata and CDS

Interview Preparation Tips

Interview preparation tips for other job seekers - Overall difficulty level was high, from basics to advanced covering all topics including OO ABAP, RAP, CDS, Odata, Enhancements, InApp Extensibility etc.
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
No response

I applied via Referral and was interviewed in Sep 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Explain oop concets
  • Ans. 

    OOP concepts are fundamental principles in object-oriented programming that help in organizing and designing code.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

    • Inheritance: Ability of a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the complex implementation detai...

  • Answered by AI
  • Q2. Virtual functions
Round 2 - Technical 

(2 Questions)

  • Q1. Explain vectors and array difference
  • Ans. 

    Vectors are dynamic arrays that can change in size, while arrays have a fixed size.

    • Vectors can grow or shrink in size dynamically, while arrays have a fixed size.

    • Vectors can be resized using functions like push_back() and pop_back(), while arrays cannot.

    • Vectors are part of the C++ Standard Template Library (STL), while arrays are a fundamental data structure.

    • Example: vector vec; int arr[5];

Answered by AI
  • Q2. Virtual destructors
  • Round 3 - One-on-one 

    (2 Questions)

    • Q1. About last project
    • Q2. Puzzle with some analytical skills

    Skills evaluated in this interview

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

    Basic questions only.

    Round 2 - Technical 

    (2 Questions)

    • Q1. Basic questions like, how react works?
    • Q2. What is the equivalent of ReactDOM in mobile application development?
    • Ans. 

      The equivalent of ReactDOM in mobile application development is React Native.

      • React Native is a framework for building mobile applications using React.

      • It allows developers to write code in JavaScript and render native components.

      • Just like ReactDOM in web development, React Native handles rendering components to the screen.

    • Answered by AI
    Interview experience
    3
    Average
    Difficulty level
    Moderate
    Process Duration
    -
    Result
    Not Selected

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

    Round 1 - One-on-one 

    (2 Questions)

    • Q1. Concurrent HashMap versus HashMap?
    • Ans. 

      Concurrent HashMap is thread-safe and allows concurrent access, while HashMap is not thread-safe.

      • Concurrent HashMap is suitable for multi-threaded environments where multiple threads can access and modify the map concurrently.

      • HashMap is not thread-safe and can lead to data corruption if accessed concurrently by multiple threads.

      • Concurrent HashMap uses internal locking mechanisms to ensure thread safety, while HashMap d...

    • Answered by AI
    • Q2. Partitioning a large Database.
    • Ans. 

      Partitioning a large database involves dividing the data into smaller chunks to improve performance and manageability.

      • Identify key columns for partitioning, such as date ranges or customer IDs.

      • Choose a partitioning strategy, such as range partitioning or hash partitioning.

      • Implement partitioning using database features like table partitioning in Oracle or partitioned tables in PostgreSQL.

    • Answered by AI

    Interview Preparation Tips

    Interview preparation tips for other job seekers - General awareness would be good.
    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (2 Questions)

    • Q1. Project explanation
    • Q2. C syntaxes, questions on arrays pointers
    Round 2 - Technical 

    (2 Questions)

    • Q1. Coding related to pointers
    • Q2. Recursion program
    Interview experience
    4
    Good
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Aptitude Test 

    Basic math questions

    Round 2 - Technical 

    (2 Questions)

    • Q1. Questions about oops concept
    • Q2. What is function overloading and function overriding
    • Ans. 

      Function overloading is having multiple functions with the same name but different parameters. Function overriding is redefining a base class function in a derived class.

      • Function overloading allows multiple functions with the same name but different parameters.

      • Function overriding involves redefining a base class function in a derived class with the same name and parameters.

      • Example of function overloading: void print(in...

    • Answered by AI
    Interview experience
    5
    Excellent
    Difficulty level
    -
    Process Duration
    -
    Result
    -
    Round 1 - Technical 

    (2 Questions)

    • Q1. Explian oops concepts
    • Ans. 

      Object-oriented programming concepts that focus on classes and objects for better code organization and reusability.

      • Encapsulation: Bundling data and methods that operate on the data into a single unit (class).

      • Inheritance: Ability of a class to inherit properties and behavior from another class.

      • Polymorphism: Ability to present the same interface for different data types.

      • Abstraction: Hiding the complex implementation det...

    • Answered by AI
    • Q2. Types of waits in selenium
    • Ans. 

      Types of waits in Selenium include implicit, explicit, and fluent waits.

      • Implicit wait: Waits for a certain amount of time before throwing a NoSuchElementException.

      • Explicit wait: Waits for a certain condition to occur before proceeding further in the code.

      • Fluent wait: Waits for a condition to be true with a specified frequency of checking.

      • Example: driver.manage().timeouts().implicitlyWait(10, TimeUnit.SECONDS);

    • Answered by AI
    Round 2 - HR 

    (2 Questions)

    • Q1. Salary dsicussion
    • Q2. Previous company details

    Skills evaluated in this interview

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

    (2 Questions)

    • Q1. Project explaining
    • Q2. Write code to generate csv file with note pad data
    • Ans. 

      Code to generate a CSV file with notepad data

      • Open a text file and read the data

      • Parse the data and write it to a CSV file

      • Use libraries like pandas in Python for easier CSV handling

    • Answered by AI

    NextComm Corporation Interview FAQs

    How many rounds are there in NextComm Corporation AWS Engineer interview?
    NextComm Corporation interview process usually has 1 rounds. The most common rounds in the NextComm Corporation interview process are Technical.

    Tell us how to improve this page.

    Interview Questions from Similar Companies

    TCS Interview Questions
    3.7
     • 10.2k Interviews
    Infosys Interview Questions
    3.7
     • 7.4k Interviews
    Wipro Interview Questions
    3.7
     • 5.5k Interviews
    Tech Mahindra Interview Questions
    3.6
     • 3.7k Interviews
    HCLTech Interview Questions
    3.5
     • 3.7k Interviews
    BYJU'S Interview Questions
    3.1
     • 2.2k Interviews
    Bharti Airtel Interview Questions
    4.0
     • 806 Interviews
    Asian Paints Interview Questions
    4.0
     • 616 Interviews
    View all
    Corporate Trainer
    3 salaries
    unlock blur

    ₹6 L/yr - ₹9 L/yr

    HR Executive Recruiter
    3 salaries
    unlock blur

    ₹3.5 L/yr - ₹3.6 L/yr

    AWS Devops Engineer
    3 salaries
    unlock blur

    ₹5 L/yr - ₹6 L/yr

    Explore more salaries
    Compare NextComm Corporation with

    Bharti Airtel

    4.0
    Compare

    Reliance Industries

    4.1
    Compare

    TCS

    3.7
    Compare

    Infosys

    3.7
    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