Upload Button Icon Add office photos

Filter interviews by

Compassites Software Solutions Interview Questions and Answers

Updated 3 Jul 2023

Compassites Software Solutions Interview Experiences

Popular Designations

2 interviews found

UI Developer Interview Questions & Answers

user image Anonymous

posted on 3 Jul 2023

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
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 - Technical 

(4 Questions)

  • Q1. About yourself and salary expectation
  • Q2. Basic javascript, and html css
  • Q3. What does map do, and forloop
  • Ans. 

    Map is a method used to transform elements of an array, while for loop is used to iterate over elements in an array.

    • Map applies a function to each element of an array and returns a new array with the results.

    • For loop iterates over each element in an array and allows you to perform operations on each element.

    • Example: Using map to double each element in an array - [1, 2, 3].map(num => num * 2) would result in [2, 4, 6].

    • E...

  • Answered by AI
  • Q4. What is position absolute
  • Ans. 

    Position absolute is a CSS property that positions an element relative to its closest positioned ancestor.

    • Position absolute removes the element from the normal flow of the document.

    • It is positioned based on the nearest positioned ancestor.

    • The element's position is specified using the top, right, bottom, and left properties.

    • Commonly used for creating overlays, tooltips, and pop-up menus.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - NEVER JOIN NO SALARY GIVEN

Skills evaluated in this interview

UI Developer Interview Questions asked at other Companies

Q1. Create 10 no. of Checkboxes in javascript and on-checked checkboxes count should be show at below. as you will un-check the checkbox count should also change. so means to say checked checkbox count should be print.
View answer (1)
Round 1 - Technical 

(3 Questions)

  • Q1. What is total experience
  • Q2. Roles of previous company
  • Q3. Write the automation
  • Ans. 

    Automation can be written using various tools and programming languages depending on the application and requirements.

    • Choose the appropriate automation tool based on the application and requirements

    • Select the programming language that is compatible with the automation tool

    • Identify the test cases that need to be automated

    • Write the automation scripts using the selected programming language

    • Execute the automation scripts a

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepare what you learn. Automation has lot of demand

Software Testing Engineer Interview Questions asked at other Companies

Q1. Maximal AND Subsequences Problem Given an array consisting of N integers, your task is to determine how many k-element subsequences of the given array exist where the bitwise AND of the subsequence's elements is maximal. Your objective is t... read more
View answer (1)

Interview questions from similar companies

I appeared for an interview before May 2016.

Interview Preparation Tips

Round: Test
Experience: The first round had two programming questions and one question of database concepts.
Duration: 1 hour
Total Questions: 3

Round: Technical Interview
Experience: In the first technical interview, I was asked basic questions about the domain and my resume. There was also a lot of emphasis on problem solving abilities since I was asked to solve some puzzles.

Round: Technical Interview
Experience: The second technical interview was a written round where I was asked to code some searching / sorting variants , to test my ability to write quality code.

Round: Technical Interview
Experience: The last and the final round was probably the toughest and I was asked to design databases, with some constraints. I was given ample time to do it and it did take a lot of time. After that, we had some interesting questions about data structures and trees and that was it.

College Name: RNSIT, Bangalore

I applied via Recruitment Consultant and was interviewed before Oct 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Python file handling, input,output, in a file, Sql joins, list sort in python, basics of GIS, Web service how to test

Interview Preparation Tips

Interview preparation tips for other job seekers - This is hust basics not deep dive, strog ur basics to crack

I applied via Internshala and was interviewed in Dec 2021. There were 3 interview rounds.

Round 1 - Coding Test 

They mostly ask some basic dsa questions in the automated interview

Round 2 - Technical 

(1 Question)

  • Q1. The interviewer was very friendly and ask me some basic of react js and some basic of how internet works
Round 3 - HR 

(1 Question)

  • Q1. Was very easy they ask me really basic ye questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be good with the tech stack and some basic of dsa
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Jun 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 - Automated bot interview 

(1 Question)

  • Q1. Just basic questions about you and why you want to join This organisation
Round 3 - Automated bot interview 

(1 Question)

  • Q1. Nothing big, simple array related questions,
Round 4 - One-on-one 

(1 Question)

  • Q1. Just showcase your college/personal projects and random array questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing great about company,lot of internal politics will be there, forgot about your position,they won't even treat you as a human,If you a fresher try to avoid this organization at any cost .
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via eLitmus and was interviewed before Sep 2022. There were 4 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Coding Test 

General coding test includes basic DSA, understanding of FE, BE, DB, etc.,

Round 3 - One-on-one 

(1 Question)

  • Q1. 1:1 discussion to understand the candidate's profile
Round 4 - HR 

(1 Question)

  • Q1. Salary, policies, engagements discussion
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed before Jan 2023. There were 2 interview rounds.

Round 1 - Coding Test 

Simple coding test. LC medium

Round 2 - Technical 

(1 Question)

  • Q1. Basics of work experience. Slight changes to questions asked in round 1 and scenario-based questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Job Portal and was interviewed before Sep 2023. There were 2 interview rounds.

Round 1 - Coding Test 

There was an automated machine coding round where i had to solve multiple problems as well as answer multiple questions related to Javascript and the development process as a whole.

Round 2 - Technical 

(1 Question)

  • Q1. Explain promises in JS and async/await.
  • Ans. 

    Promises in JS are objects representing the eventual completion or failure of an asynchronous operation. Async/await is a syntactic sugar for working with promises.

    • Promises are used to handle asynchronous operations in JavaScript.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Async/await is a modern way to work with asynchronous code in JavaScript, making it easier to read and write.

    • Async functions...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Brush up basic framework concepts and logic building

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Question on Java mcq
  • Q2. Questions on Oops
Round 2 - Technical 

(1 Question)

  • Q1. Questions based on resume
Round 3 - HR 

(1 Question)

  • Q1. Questions on direction, physics

Compassites Software Solutions Interview FAQs

How many rounds are there in Compassites Software Solutions interview?
Compassites Software Solutions interview process usually has 1-2 rounds. The most common rounds in the Compassites Software Solutions interview process are Technical and Resume Shortlist.
What are the top questions asked in Compassites Software Solutions interview?

Some of the top questions asked at the Compassites Software Solutions interview -

  1. what does map do, and forl...read more
  2. what is position absol...read more
  3. Write the automat...read more

Tell us how to improve this page.

Compassites Software Solutions Interview Process

based on 2 interviews

Interview experience

1
  
Bad
View more

Interview Questions from Similar Companies

NexTurn Interview Questions
4.1
 • 29 Interviews
ClaySys Interview Questions
2.9
 • 24 Interviews
Contus Interview Questions
4.2
 • 23 Interviews
Pitney Bowes Interview Questions
3.7
 • 21 Interviews
Knoldus Inc Interview Questions
3.9
 • 20 Interviews
DynPro Interview Questions
3.9
 • 20 Interviews
View all

Compassites Software Solutions Reviews and Ratings

based on 49 reviews

2.6/5

Rating in categories

2.5

Skill development

2.9

Work-life balance

2.1

Salary

2.3

Job security

2.3

Company culture

2.3

Promotions

2.6

Work satisfaction

Explore 49 Reviews and Ratings
Associate Software Engineer
35 salaries
unlock blur

₹1.8 L/yr - ₹8 L/yr

Senior Software Engineer
32 salaries
unlock blur

₹8.1 L/yr - ₹22 L/yr

Software Engineer
28 salaries
unlock blur

₹3.6 L/yr - ₹10.3 L/yr

Technical Lead
11 salaries
unlock blur

₹11.4 L/yr - ₹25 L/yr

Senior Test Engineer
10 salaries
unlock blur

₹7.5 L/yr - ₹12 L/yr

Explore more salaries
Compare Compassites Software Solutions with

Accel Frontline

4.0
Compare

Pitney Bowes

3.7
Compare

Apmosys Technologies

3.5
Compare

DynPro

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