Upload Button Icon Add office photos

Filter interviews by

Ascomp Technologies Software Trainee Intern Interview Questions and Answers

Updated 28 Sep 2024

Ascomp Technologies Software Trainee Intern Interview Experiences

1 interview found

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

I was interviewed before Sep 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic programming question based on array
  • Q2. Stack vs heap and oops
  • Ans. 

    Stack and heap are memory management concepts in programming. OOPs is a programming paradigm.

    • Stack is used for static memory allocation, while heap is used for dynamic memory allocation.

    • Stack memory is limited and faster, while heap memory is larger but slower.

    • In OOPs, objects are created from classes, which encapsulate data and behavior.

    • OOPs principles include inheritance, polymorphism, encapsulation, and abstraction.

  • Answered by AI

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Asked about my experience as an integration developer
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Covers basics aps around 15 question

Round 2 - Coding Test 

DSA based questions from leetcode easy and medium

Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Not Selected
Round 1 - Aptitude Test 

The apptitude test is an online assessment and you will have questions from Quantitative Aptitude and Logical Reasoning.
You will have 60 questions in each section which needs to be solved in 60 minutes.
The questions are subjective and they were not MCQ based on questions

Round 2 - Coding Test 

For the technical role, round two is problem-solving.
Three questions need to be solved in 60 minutes.
The difficulty level is from medium to advanced.

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

I applied via Company Website and was interviewed before Jun 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. What are joins in sql
  • Ans. 

    Joins in SQL are used to combine rows from two or more tables based on a related column between them.

    • Joins are used to retrieve data from multiple tables based on a related column

    • Common types of joins include INNER JOIN, LEFT JOIN, RIGHT JOIN, and FULL JOIN

    • Example: SELECT * FROM table1 INNER JOIN table2 ON table1.column = table2.column

  • Answered by AI
  • Q2. Types of arrays in PHP
  • Ans. 

    Types of arrays in PHP include indexed arrays, associative arrays, and multidimensional arrays.

    • Indexed arrays: default type where each element is assigned a numeric index starting from 0.

    • Associative arrays: elements are assigned a specific key instead of numeric index.

    • Multidimensional arrays: arrays within arrays, creating a matrix-like structure.

    • Example: $indexedArray = [1, 2, 3]; $associativeArray = ['key1' => 'value...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Neural IT Junior Software Developer interview:
  • PHP
  • MySQL
Interview preparation tips for other job seekers - good environment and team mates are supportive

Skills evaluated in this interview

Round 1 - Technical 

(2 Questions)

  • Q1. Polymorphism, instance variables
  • Q2. Inheritance, array programs
Round 2 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Why should we hire you?
  • Q3. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself, nothing new just brush up core java

I applied via campus placement at University of Hyderabad, Hyderabad and was interviewed before Sep 2021. There were 3 interview rounds.

Round 1 - Coding Test 

Aptitude + Coding Test. 27 basic Aptitude problems and 3 problem solving questions.

Round 2 - Technical 

(1 Question)

  • Q1. Technical Round 1 has questions based on databases. NoSql will be + point. UI technologies and basic data structures.
Round 3 - Technical 

(1 Question)

  • Q1. Technical Round 2, follow-up from round 1. Some more questions on databases

Interview Preparation Tips

Topics to prepare for Valuefy Solutions Software Engineer interview:
  • MySQL
  • Angularjs
  • Node.Js
  • NoSQL
Interview preparation tips for other job seekers - Prepare Databases concept and anyone programing language. Nodejs/Angular will be great to have.

Interview Questionnaire 

1 Question

  • Q1. I asked a little about the company, how it works or not, asked the terms and conditions, and asked about my role in company, how to work.

Interview Preparation Tips

Interview preparation tips for other job seekers - It was my first interview and I feel I need to improve my self a lot but apart from this I answered mostly questions and try to explain a bit. My interview was good, but my point is that the interview should be a little more technical.

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

Interview Questionnaire 

4 Questions

  • Q1. Tell me about recent Project Details and what is your Role in this Project.
  • Ans. I explained my project and the modules which I had developed. Informed about Team members and their responsibilities who were working on the same Project. Then my role in the team as well as my responsibilities in the Project.
  • Answered Anonymously
  • Q2. Git and Azure DevOps related Questions
  • Ans. I Explained how we work on AzureDevOps. Explained workflow with Git Repos through DevOps Repositories. Explained Build and Release Pipelines also Explained NuGet Packages using Artifacts
  • Answered Anonymously
  • Q3. Explain Solid Principles and Where to use this with Example
  • Ans. 

    Solid Principles are a set of design principles for writing maintainable and scalable software.

    • Solid Principles consist of five principles: Single Responsibility Principle, Open/Closed Principle, Liskov Substitution Principle, Interface Segregation Principle, and Dependency Inversion Principle.

    • Single Responsibility Principle states that a class should have only one reason to change.

    • Open/Closed Principle states that sof...

  • Answered by AI
  • Q4. Abstraction and Interface Differance
  • Ans. 

    Abstraction focuses on hiding implementation details, while interface defines a contract for classes to follow.

    • Abstraction allows us to focus on the essential features of an object, while hiding unnecessary details.

    • Interface defines a set of methods that a class must implement, providing a contract for how the class should behave.

    • Abstraction is achieved through abstract classes and interfaces in object-oriented program...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't feel uncomfortable if you don't know the exact answer. Whatever you know just explain in your statement. make an easy sentence to explain don't give an exact theoretic answer try to explain with one example.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 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 - Aptitude Test 

Basic java based questions

Round 3 - Technical 

(2 Questions)

  • Q1. Data structures and algorithms
  • Q2. Linked list implementation
  • Ans. 

    Linked list is a data structure where each element points to the next element in the sequence.

    • Nodes contain data and a reference to the next node

    • Insertion and deletion can be done efficiently

    • Traversal starts from the head node

    • Example: Singly linked list, Doubly linked list

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn java and dsa

Skills evaluated in this interview

Ascomp Technologies Interview FAQs

How many rounds are there in Ascomp Technologies Software Trainee Intern interview?
Ascomp Technologies interview process usually has 1 rounds. The most common rounds in the Ascomp Technologies interview process are Technical.
What are the top questions asked in Ascomp Technologies Software Trainee Intern interview?

Some of the top questions asked at the Ascomp Technologies Software Trainee Intern interview -

  1. Stack vs heap and o...read more
  2. Basic programming question based on ar...read more

Tell us how to improve this page.

Ascomp Technologies Software Trainee Intern Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Interview Questions from Similar Companies

Link Group Interview Questions
3.8
 • 34 Interviews
Icl Fincorp Interview Questions
3.2
 • 17 Interviews
Innocule Interview Questions
4.7
 • 15 Interviews
PharmaACE Interview Questions
2.6
 • 15 Interviews
Neural IT Interview Questions
2.8
 • 14 Interviews
View all
Software Developer
22 salaries
unlock blur

₹2 L/yr - ₹4.8 L/yr

Software Engineer
5 salaries
unlock blur

₹2.7 L/yr - ₹5 L/yr

Business Analyst
5 salaries
unlock blur

₹2.8 L/yr - ₹3.5 L/yr

Senior Software Engineer
3 salaries
unlock blur

₹7.2 L/yr - ₹7.8 L/yr

Associate Business Analyst
3 salaries
unlock blur

₹2.9 L/yr - ₹3 L/yr

Explore more salaries
Compare Ascomp Technologies with

Karvy Financial Services

3.8
Compare

Reliance Money

3.7
Compare

Sonata Finance

3.9
Compare

Link Group

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