Upload Button Icon Add office photos
Engaged Employer

i

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

Ascella Infosec Verified Tick

Compare button icon Compare button icon Compare
5.0

based on 3 Reviews

i

This rating is based on a small number of reviews, so it may not fully reflect the overall employee experience.

Filter interviews by

Ascella Infosec Software Engineer Intern Interview Questions and Answers for Freshers

Updated 9 Aug 2024

Ascella Infosec Software Engineer Intern Interview Experiences for Freshers

1 interview found

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

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

Round 1 - HR 

(2 Questions)

  • Q1. Location preferences, company objectives.
  • Q2. General discussion

Interview questions from similar companies

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

I applied via Campus Placement and was interviewed in Mar 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

Complete Aptitude Assessment

Round 2 - Coding Test 

3 low - medium coding questions

Round 3 - One-on-one 

(2 Questions)

  • Q1. Technical Interview 1
  • Q2. Technologies Interview 2
Round 4 - HR 

(1 Question)

  • Q1. Some basic HR interview questions
Round 5 - Behavioral 

(1 Question)

  • Q1. Managerial Round Interview
Interview experience
4
Good
Difficulty level
Hard
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Jan 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 - Coding Test 

The technical assessment was in hackerRank when I was assigned a coding problem and five questions chose which one is right type, two were in time complexity, and three in abstract reasoning, the coding problem I found to be very difficult, and couldn't make any progress on it.

Round 3 - Case Study 

Machine learning take-home assignment in Kaggle.

Interview Preparation Tips

Topics to prepare for Oracle Software Engineer Intern interview:
  • leetcode
Interview preparation tips for other job seekers - do a lot of leetcode, I mean like a lot of it, if you're planning for this you should probably be preparing 6-12 months before applying.
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic aptitude with logical and verbal and reasoning.also microprocessor and micro controller.

Round 2 - Group Discussion 

We were divided into 10 and ques were asked from dbms,ds,os,cn

Interview Preparation Tips

Interview preparation tips for other job seekers - prepare the basic core computer science concepts and subject like dbms,ds,os,cn
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed before Oct 2023.

Round 1 - Technical 

(2 Questions)

  • Q1. Longest Valid Parentheses
  • Ans. 

    Find the length of the longest valid parentheses substring in a given string.

    • Use a stack to keep track of the indices of opening parentheses.

    • Iterate through the string and update the maximum length of valid parentheses.

    • Handle cases where closing parentheses are encountered without a matching opening parentheses.

  • Answered by AI
  • Q2. Find the maximum number in the subarrays of length k.
  • Ans. 

    Find the maximum number in the subarrays of length k.

    • Iterate through the array and keep track of the maximum number in each subarray of length k.

    • Use a sliding window approach to efficiently find the maximum number in each subarray.

    • Time complexity can be optimized to O(n) using a deque data structure.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. Spiral Matrix Question

Skills evaluated in this interview

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

Good level question. I have qualified for the next round

Round 2 - Coding Test 

Basic to intermediate question, Cleared the test

Round 3 - HR 

(1 Question)

  • Q1. Tell me about yourself and introduce yourself

Interview Preparation Tips

Interview preparation tips for other job seekers - Not selected in the technical round because of lack of projects as per my role
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I was interviewed before Oct 2023.

Round 1 - Coding Test 

It was easy round with 2 questions from hacker rank

Round 1 - Technical 

(3 Questions)

  • Q1. Implement Linked list
  • Ans. 

    Linked list is a data structure where each node points to the next node.

    • Create a Node class with data and next pointer

    • Create a LinkedList class with head pointer

    • Implement methods to add, remove, search, and traverse the list

  • Answered by AI
  • Q2. Implement Hash Map with array and linked list.
  • Ans. 

    Implement Hash Map with array and linked list.

    • Create an array of linked lists

    • Hash function maps keys to array indices

    • Insert key-value pairs into linked lists

    • Handle collisions by chaining

    • Search for a key by hashing and traversing linked list

  • Answered by AI
  • Q3. How to create a immutable class in java
  • Ans. 

    To create an immutable class in Java, follow these steps:

    • Make the class final

    • Make all fields private and final

    • Do not provide any setter methods

    • Initialize all fields via constructor

    • If any field is mutable, return a clone of it instead of the original object

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and explain your code property.

Skills evaluated in this interview

I was interviewed before Dec 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 120 minutes
Round difficulty - Easy

After round 1 there was a break of 15 mins and the coding round started.
We had a choice to attempt the exam in R language & SQL or python & sql
I chose python and sql
It had 8 questions 4 python and 4 sql

  • Q1. Longest Common Subsequence

    Given two strings, 'S' and 'T' with lengths 'M' and 'N', find the length of the 'Longest Common Subsequence'.

    For a string 'str'...

  • Ans. Memoization

    Let the two strings be x and y. 

    Let x(i) be the substring of x from index 0 to index i. 

    Let c[i, j] be the length of the longest common subsequence of strings x(i) and y(j).

    Then the recurrence relation to find c[i, j] is as follows:

    We can use this relation to write a simple recursive program but instead of recomputing the results of subproblems, compute them just once and store their results in a l...

  • Answered by CodingNinjas
Round 2 - Video Call 

(2 Questions)

Round duration - 15 minutes
Round difficulty - Medium

The interview was mostly analytical based and how you approach the round a few technical questions in dbms and oops were also asked.

  • Q1. Aptitiude Questions

    In one box there are 12 red and 12 green balls and in another box there are 24 res and 24 green balls.
    You have two balls choose from each of the box with replacement such that they have ...

  • Q2. Technical Questions

    What is an immutable object and why is it useful

    Acid properties in dbms
    Explain atomicity and what is d in acid.

Round 3 - Video Call 

(2 Questions)

Round duration - 20 Minutes
Round difficulty - Medium

Similar to first round
For Shortlists after elimination from first round.

  • Q1. Car Pooling

    You are working as a cab driver. Your car moves in a straight line and moves toward the forward direction only. Initially, you have ‘C’ empty seats for the passengers.

    Now, you are given ‘N’ ...

  • Ans. Hash Map Implementation

    The simple idea is that we will keep a record of the number of passengers changed at every time in a hash map ‘passengers’ where the key represents the time at which the number of passengers changed and the value at that key represents the count of passengers changed. 

     

    For Example- If we have trips = [ 2, 1,4 ], [ 2, 2,5 ] then at time = 1, no of passengers changed and increased by 2. S...

  • Answered by CodingNinjas
  • Q2. General Questions

    Top 5 best things that happened during covid lockdown for you.

    Byjus bussiness model
    Why is it better to have online coaching classes

Round 4 - Video Call 

(2 Questions)

Round duration - 20 minutes
Round difficulty - Easy

After two technical round interviews, the last round was a hr interview. The whole process can take up one whole day or more and your interview can be at any time
My process started at 5 pm and ended at 10:30 pm
All the interviewers were very friendly no pressure.

  • Q1. Nth Fibonacci Number

    Nth term of Fibonacci series F(n), where F(n) is a function, is calculated using the following formula -

        F(n) = F(n-1) + F(n-2), 
        Where, F(1) = F(2) = 1
    

    Provided N you have...

  • Ans. Recursive Approach
    • In this approach, we use recursion and uses a basic condition that :
      • If ‘N’ is smaller than ‘1’(N<=1) we return ‘N’
      • Else we call the function again as ninjaJasoos(N-1) + ninjaJasoos(N-2).
    • In this way, we reached our answer.
    Space Complexity: O(n)Explanation:

    O(N),  where ‘N’ is the given number.  

    As recursion uses a stack of size ‘N’

    Time Complexity: O(2^n)Explanation:

    O(2^N), where ‘N’ i...

  • Answered by CodingNinjas
  • Q2. Basic HR Questions

    The most difficult situation you had overcome

    A situation where you brought the best in another person

    If in a situation with four people including you come up with a better solution than t...

Interview Preparation Tips

Eligibility criteriaCgpa was initially 6 and above but was later on cut to 7 and above due to high no of applicationsFractal Analytics interview preparation:Topics to prepare for the interview - Machine learning, dbms, sql, oops, python,Time required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Be fast ans accurate on your aptitude amd verbal tests. 
Tip 2 : In coding round, depending on the difficulty of the questions the time in which you complete solving them should decrease .If almost everyone can solve them timming comes in to the equation for shortlisting
Tip 3 : While submitting your resume, please be honest about the projects you have done and do not bluff about it because in the interview when you ate drilled abt it, they can catch you easily.
Tip 4 : be confident and answer every question to the best of your ability and if u don't know something, tell them you don't know abt it .

Application resume tips for other job seekers

Tip 1 : Research the company and put the most revalent projects and skills that the company os looking for specifically
Tip 2 : Do not bluff or lie on your resume. It show's during the interview.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed in Jun 2024. There were 5 interview rounds.

Round 1 - Aptitude Test 

QUANTS in Fill up form , 60qns-60, min

Round 2 - Coding Test 

5 coding question to be solved in 2 hrs

Round 3 - Coding Test 

2 Coding questions to be solved in 2 hrs

Round 4 - Technical 

(1 Question)

  • Q1. Asked about projects and puzzles
Round 5 - HR 

(1 Question)

  • Q1. Asked general HR questions

Ascella Infosec Interview FAQs

How many rounds are there in Ascella Infosec Software Engineer Intern interview for freshers?
Ascella Infosec interview process for freshers usually has 1 rounds. The most common rounds in the Ascella Infosec interview process for freshers are HR.

Tell us how to improve this page.

People are getting interviews through

based on 1 Ascella Infosec interview
Job Portal
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Compare Ascella Infosec with

Busibud

4.0
Compare

Plus IT Park

5.0
Compare

SP Robotic Works

4.0
Compare

Morphedo Technologies

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