Upload Button Icon Add office photos

Filter interviews by

CrossAsyst Technologies Private Limited. Interview Questions and Answers

Updated 2 Dec 2024

CrossAsyst Technologies Private Limited. Interview Experiences

Popular Designations

5 interviews found

Interview Questions & Answers

user image Anonymous

posted on 29 Dec 2020

I applied via Other and was interviewed in Jun 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. What is use of retry Analyser
  • Q2. How to initiate POM class

Interview Preparation Tips

Interview preparation tips for other job seekers - The interviewer is technically sounded person you have to take to give answer in simple and to the point answer

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Oops concepts asked
  • Q2. Sql queries asked

Senior Software Engineer Interview Questions asked at other Companies

Q1. Tell me about yourself. What technology are you using? What is a Collection? What are the different types of collection there? What is the difference between ArrayList and LinkedList What are the basic building blocks of Stream operators, s... read more
View answer (2)
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is asp.net
  • Ans. 

    ASP.NET is a web application framework developed by Microsoft for building dynamic web sites, web applications, and web services.

    • Developed by Microsoft

    • Used for building dynamic web sites, web applications, and web services

    • Supports multiple programming languages like C# and VB.NET

    • Includes tools for building web forms, MVC, and Web API applications

  • Answered by AI
  • Q2. Jquery asp.net mvc , javascript, c#

Interview Preparation Tips

Interview preparation tips for other job seekers - basic knowledge of c# and asp.net is required

Skills evaluated in this interview

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (223)
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(1 Question)

  • Q1. Basic questions
Round 2 - Technical 

(1 Question)

  • Q1. Core java, coding round

Junior Developer Interview Questions asked at other Companies

Q1. If a client website is in trouble, they are bleeding money, would you show the client the watch and say my time is over, or are you someone who will stay up all night unless problem is solved?
View answer (1)

CrossAsyst Technologies Private Limited. interview questions for popular designations

 Software Engineer

 (2)

 Senior Software Engineer

 (1)

 Junior Developer

 (1)

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

I applied via Referral and was interviewed before Feb 2022. There were 4 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 - HR 

(1 Question)

  • Q1. Basic personal details
Round 3 - Assignment 

Full project life cycle with given scenarios also prepared for housi game ticket logic code

Round 4 - One-on-one 

(1 Question)

  • Q1. Discussion with manager

Interview Preparation Tips

Interview preparation tips for other job seekers - Dont study oops concept and theory it will not ask
Based on your experience and practicle question you can crack interview
Good company

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (223)

Interview questions from similar companies

I appeared for an interview before Sep 2020.

Round 1 - Coding Test 

(1 Question)

Round duration - 60 mins
Round difficulty - Medium

  • Q1. 

    Railway Seat Berth Determination

    Given a railway seat number represented as an integer, determine if it is a valid seat number and identify its berth type. Possible berth types include lower berth, middle...

  • Ans. 

    Given a railway seat number, determine if it is valid and identify its berth type.

    • Parse input integer 't' for number of test cases

    • For each test case, check if seat number is valid (1 <= N <= 100)

    • Identify berth type based on seat number and output the result

    • Possible berth types are Lower, Middle, Upper, Side Lower, and Side Upper

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 90 mins
Round difficulty - Hard

First they asked me to introduce myself then they started questioning on oops concept from basic to advance level such as inheritance, polymorphism, abstraction, exception handling , STL etc. Next they started questioning on data structures. They asked me the logic of “how to find the middle of a linked list”.

  • Q1. 

    Matrix Symmetry Check

    You are provided with a square matrix. Your task is to return true if the matrix is symmetric; otherwise, return false.

    A symmetric matrix is characterized by its transpose being eq...

  • Ans. 

    Check if a square matrix is symmetric by comparing it with its transpose.

    • Iterate through the matrix and compare each element with its corresponding element in the transpose

    • If any pair of elements do not match, return false immediately

    • If all pairs match, return true at the end

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from K. K. Wagh Institute Of Engineering Education And Research. I applied for the job as Software Engineer in PuneEligibility criteria6.0 CGPAJosh Technology Group interview preparation:Topics to prepare for the interview - Data Structures, OOPS, DBMS, Python, SQLTime required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Clear the basic concepts of data structure and OOPs.
Tip 2 : Use coding ninja platform and Hackerearth for practice on coding skills.
Tip 3 : Use Geeks For Geeks for interview preparation.

Application resume tips for other job seekers

Tip 1: Make your resume short and try to make it of one page only.
Tip 2: Add relevant keywords

Final outcome of the interviewRejected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Jul 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Check if binary tree is balanced or not.
  • Ans. 

    Check if binary tree is balanced or not.

    • A balanced binary tree has the height of left and right subtrees differ by at most 1.

    • Recursively check the height of left and right subtrees and compare.

    • Use a helper function to calculate the height of a subtree.

    • Time complexity: O(nlogn) for a balanced tree, O(n^2) for a skewed tree.

  • Answered by AI
  • Q2. Detect loops in linked list.
  • Ans. 

    Detect loops in a linked list.

    • Use two pointers, one moving at a faster pace than the other.

    • If there is a loop, the faster pointer will eventually catch up to the slower one.

    • To detect the start of the loop, reset one pointer to the head and move both pointers at the same pace.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview experience was good, do your DS Algo questoin thoroughly.

Skills evaluated in this interview

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

Two sections :
in 1st section aptitude and verbal test and 2nd section technical

Round 2 - Technical 

(2 Questions)

  • Q1. Introduction of yourself
  • Q2. What is angular
  • Ans. 

    Angular is a popular open-source front-end web application framework developed by Google.

    • Angular is used for building dynamic web applications.

    • It allows for the creation of single-page applications.

    • Angular uses TypeScript for building applications.

    • It provides features like data binding, dependency injection, and routing.

    • Angular has a large community and ecosystem with many libraries and tools available.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - good and nice exprience with interview and waiting for feedback

Skills evaluated in this interview

I applied via Referral and was interviewed before Dec 2021. There were 5 interview rounds.

Round 1 - Aptitude Test 

20 basic coding and non coding mcq with 60 min time.

Round 2 - Coding Test 

5 basic coding problems with 60 min time based on arrays string and numbers.

Round 3 - Technical 

(1 Question)

  • Q1. 1St Technical Interview 3 coding problems 1) leap Year 2)binary to decimal 3)prime number
Round 4 - Technical 

(1 Question)

  • Q1. 2nd Technical Interview 1)input: "Raja Software Labs" output: "Raja%20Software%20Labs" 2) find contigious subarray with max sum
Round 5 - Technical 

(1 Question)

  • Q1. 3rd Technical Interview did not qualify for this round

Interview Preparation Tips

Interview preparation tips for other job seekers - Practice questions on array, numbers and string.
explain logic before coding
Interview experience
2
Poor
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Walk-in and was interviewed before Oct 2022. 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 

Simple array and string based questions were asked in the coding round

Round 3 - One-on-one 

(1 Question)

  • Q1. Questions were like - find first non repeating character in string, find max consecutive duplicate elements in an array

Interview Preparation Tips

Interview preparation tips for other job seekers - They only ask coding questions mainly on array and strings to freshers.

CrossAsyst Technologies Private Limited. Interview FAQs

How many rounds are there in CrossAsyst Technologies Private Limited. interview?
CrossAsyst Technologies Private Limited. interview process usually has 2 rounds. The most common rounds in the CrossAsyst Technologies Private Limited. interview process are Technical, HR and Resume Shortlist.
How to prepare for CrossAsyst Technologies Private Limited. interview?
Go through your CV in detail and study all the technologies mentioned in your CV. Prepare at least two technologies or languages in depth if you are appearing for a technical interview at CrossAsyst Technologies Private Limited.. The most common topics and skills that interviewers at CrossAsyst Technologies Private Limited. expect are Javascript, AWS, Java, Terraform and HTML.
What are the top questions asked in CrossAsyst Technologies Private Limited. interview?

Some of the top questions asked at the CrossAsyst Technologies Private Limited. interview -

  1. What is use of retry Analy...read more
  2. How to initiate POM cl...read more
  3. what is asp....read more

Tell us how to improve this page.

CrossAsyst Technologies Private Limited. Interview Process

based on 7 interviews

Interview experience

2.7
  
Poor
View more

Interview Questions from Similar Companies

Affine Interview Questions
3.3
 • 49 Interviews
Cyfuture Interview Questions
3.0
 • 45 Interviews
Revature Interview Questions
3.5
 • 40 Interviews
View all

CrossAsyst Technologies Private Limited. Reviews and Ratings

based on 26 reviews

3.3/5

Rating in categories

4.0

Skill development

3.2

Work-life balance

2.8

Salary

2.7

Job security

3.3

Company culture

2.6

Promotions

3.1

Work satisfaction

Explore 26 Reviews and Ratings
QA Manager

Mumbai,

Navi Mumbai

4-9 Yrs

Not Disclosed

Senior React.js Developer (HTML5, and CSS3)

Bangalore / Bengaluru

5-7 Yrs

Not Disclosed

Explore more jobs
Software Engineer
22 salaries
unlock blur

₹1.5 L/yr - ₹9.9 L/yr

Software Developer
19 salaries
unlock blur

₹2.2 L/yr - ₹7.5 L/yr

Devops Engineer
13 salaries
unlock blur

₹4.5 L/yr - ₹11.4 L/yr

Senior Software Engineer
10 salaries
unlock blur

₹10 L/yr - ₹16 L/yr

Automation Test Engineer
7 salaries
unlock blur

₹2.4 L/yr - ₹10.4 L/yr

Explore more salaries
Compare CrossAsyst Technologies Private Limited. with

Maxgen Technologies

4.6
Compare

Cyfuture

3.0
Compare

Value Point Systems

3.6
Compare

JoulestoWatts Business Solutions

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