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 was interviewed before May 2021.

Round 1 - Aptitude Test 

System engineer

Round 2 - Aptitude Test 

Basic c programming

Round 3 - Technical 

(2 Questions)

  • Q1. Interviewer makes interview smooth and friendly meeting
  • Q2. Write a program reverse number and palindrome in c and basic c programming

Interview Preparation Tips

Interview preparation tips for other job seekers - develope Skills and attitude and prepare well in programming

I applied via Approached by Company and was interviewed before Nov 2021. There were 2 interview rounds.

Round 1 - Coding Test 

Array and OOPS concept. Given set of questions to solve with each oops concept

Round 2 - One-on-one 

(3 Questions)

  • Q1. Out of box thinking. Given logical puzzles and ask you to analyze and provide your understanding
  • Q2. Explain the inheritance concept with car model
  • Ans. 

    Inheritance in car model refers to the ability of a new car model to inherit features and characteristics from an existing car model.

    • Inheritance allows for the creation of a new car model that shares common features with an existing car model

    • The new car model can add or modify features inherited from the existing car model

    • For example, a new sports car model can inherit features from a base car model such as engine, tra...

  • Answered by AI
  • Q3. Probability question with fruits and boxes

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with oops concept and be more creative. Dont find complex answers for simple questions.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Full c concept MCQ with IQ and Computaional Thinking

Round 2 - Technical 

(2 Questions)

  • Q1. Number system convertion in c
  • Ans. 

    Number system conversion in C involves converting numbers between different bases, such as decimal to binary or hexadecimal.

    • Use functions like itoa() to convert integers to strings in different bases

    • Use strtol() to convert strings to integers in different bases

    • Remember to specify the base when converting numbers

  • Answered by AI
  • Q2. Pointers, struct, Data Structure
Round 3 - One-on-one 

(2 Questions)

  • Q1. Decimal to Binary Convertion
  • Q2. Hexa Decimal to Binary convertion

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via Recruitment Consulltant and was interviewed in May 2024. There were 3 interview rounds.

Round 1 - Aptitude Test 

Logical reasoning and Aptitude

Round 2 - Coding Test 

Functions with Pointers and strings concepts

Round 3 - Technical 

(2 Questions)

  • Q1. Mainly on Pointers and Dynamic Memory Allocation of 2-D Array
  • Q2. Structure Padding and Packing

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare in depth in C and mainly on Bit-Manipulation.
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 

(2 Questions)

  • Q1. What is a pointer to pointer
  • Ans. 

    A pointer to pointer is a variable that stores the memory address of another pointer variable.

    • It is used to create dynamic data structures like linked lists and trees.

    • It allows multiple levels of indirection.

    • It is denoted by ** in C and C++.

    • Example: int **ptr;

    • Example: ptr = &p; where p is a pointer variable.

  • Answered by AI
  • Q2. Class, object, inheritance, polymorphism,dbms

Interview Preparation Tips

Interview preparation tips for other job seekers - Work on pointers,work on ds, study network analysis, learn more about the job and company

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Normal question about past experience
  • Q2. When you can join and all
Round 2 - Assignment 

SQL test on Select query, insert, create

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are the main principles of the Java
  • Ans. 

    Main principles of Java include object-oriented programming, platform independence, and automatic memory management.

    • Object-oriented programming: Java is based on classes and objects, allowing for encapsulation, inheritance, and polymorphism.

    • Platform independence: Java code can run on any platform that has a Java Virtual Machine (JVM) installed.

    • Automatic memory management: Java uses garbage collection to automatically m

  • Answered by AI
  • Q2. What is the different between == and equals method
  • Ans. 

    The == operator compares the memory addresses of two objects, while the equals method compares the content of two objects.

    • The == operator is used to compare the memory addresses of two objects in Java.

    • The equals method is used to compare the content of two objects in Java.

    • Example: String str1 = new String("hello"); String str2 = new String("hello"); str1 == str2 will return false, but str1.equals(str2) will return true

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. What is jdk, string related questions, basic java oops questions?

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
 • 27 Interviews
ClaySys Interview Questions
2.9
 • 24 Interviews
Contus Interview Questions
4.3
 • 22 Interviews
Pitney Bowes Interview Questions
3.8
 • 21 Interviews
Knoldus Inc 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

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
32 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Engineer
28 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Technical Lead
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Test Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Compassites Software Solutions with

IVTL Infoview Technologies

3.6
Compare

Apmosys Technologies

3.4
Compare

Pitney Bowes

3.8
Compare

Zebra Technologies

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