Upload Button Icon Add office photos

Filter interviews by

Incrivel Software Solutions Interview Questions and Answers

Updated 23 Jul 2024

Incrivel Software Solutions Interview Experiences

Popular Designations

2 interviews found

UI Developer Interview Questions & Answers

user image Anonymous

posted on 10 Aug 2021

I applied via Naukri.com and was interviewed before Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic related to web design
  • Q2. What is Javascript
  • Ans. 

    Javascript is a programming language used for creating interactive web pages and web applications.

    • Javascript is a client-side scripting language

    • It can be used for form validation, creating animations, and manipulating HTML and CSS

    • It can also be used on the server-side with Node.js

    • Javascript frameworks like React and Angular are popular for building web applications

  • Answered by AI
  • Q3. What is sass
  • Ans. 

    Sass is a CSS preprocessor that allows you to write more efficient and maintainable CSS code.

    • Sass stands for Syntactically Awesome Style Sheets

    • It extends CSS with variables, nesting, mixins, and more

    • Sass files are compiled into regular CSS files before being served to the browser

    • Example: $primary-color: #007bff; .button { background-color: $primary-color; }

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing

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)
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. What was your best project.
  • Ans. 

    Developed a web application for tracking personal fitness goals and progress.

    • Used Django framework for backend development

    • Implemented user authentication and authorization

    • Integrated with fitness tracking APIs like Fitbit

    • Designed interactive charts and graphs for visualizing progress

  • Answered by AI
  • Q2. How you completed

Python Developer Intern Interview Questions asked at other Companies

Q1. what is python? what is a list? what is a tuple? what is set? Difference between list and tuple. Class and object. lambda function. map function filter function inheritance deep copy and shallow copy what is a dictionary? monkey patching. w... read more
View answer (3)

Interview questions from similar companies

I applied via Naukri.com and was interviewed in Jul 2019. There were 3 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Basic C questions and 2 c programs to find wrong in code.
  • Q2. Prepare all UART, SPI, CAN, I2C timing digrams their frame format.
  • Ans. 

    Explanation of UART, SPI, CAN, I2C timing diagrams and frame formats.

    • UART: asynchronous serial communication, start and stop bits, baud rate

    • SPI: synchronous serial communication, master-slave architecture, clock polarity and phase

    • CAN: differential serial communication, arbitration, error detection and correction

    • I2C: synchronous serial communication, master-slave architecture, addressing, clock stretching

  • Answered by AI
  • Q3. Matlab knowledge is advantage

Interview Preparation Tips

Interview preparation tips for other job seekers - Be calm and cofident

Skills evaluated in this interview

I applied via Naukri.com

Interview Questionnaire 

1 Question

  • Q1. About previous projects, C programming basics, Autosar related basic questions. Indetailed understanding about the previous projects required whichever area worked un.

Interview Preparation Tips

Interview preparation tips for other job seekers - Interview is not so hard.

I applied via Naukri.com and was interviewed in Jun 2021. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. All about your profile
  • Ans. All basic of Engineering and Automotive
  • Answered Anonymously

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

Interview Questionnaire 

2 Questions

  • Q1. How important is for you to celebrate Christmas?
  • Ans. Basically here they wanted to know if you would be flexible enough to work on Christmas day. The reason because December happens to be a crucial month for year end and the workload is overwhelming. So the crux of the question is you only get one day leave for Christmas I.e Christmas day else you are asked to work. It may happen that your leaves are not approved at all the rest of the days depending on the situation. Ha
  • Answered Anonymously
  • Q2. How often have you been given negative feedback?

Interview Preparation Tips

Interview preparation tips for other job seekers - They want to know how flexible you are and will you be available for business as and when required. That includes stretched hours, overtime.

I appeared for an interview before May 2021.

Round 1 - Coding Test 

(3 Questions)

Round duration - 90 minutes
Round difficulty - Medium

  • Q1. 

    Longest Increasing Subsequence Problem Statement

    Given 'N' students standing in a row with specific heights, your task is to find the length of the longest strictly increasing subsequence of their heights...

  • Ans. 

    Find the length of the longest strictly increasing subsequence of heights of students in a row.

    • Iterate through the heights array and for each element, find the length of the longest increasing subsequence ending at that element.

    • Use dynamic programming to keep track of the longest increasing subsequence length for each element.

    • Return the maximum length found as the result.

  • Answered by AI
  • Q2. 

    Overlapping Intervals Problem Statement

    You are given the start and end times of 'N' intervals. Write a function to determine if any two intervals overlap.

    Note:

    If an interval ends at time T and anothe...

  • Ans. 

    Given start and end times of intervals, determine if any two intervals overlap.

    • Iterate through intervals and check if any two intervals overlap by comparing their start and end times

    • Sort intervals based on start times for efficient comparison

    • Consider edge cases where intervals end and start at the same time

  • Answered by AI
  • Q3. What SQL queries were asked during your interview?
  • Ans. 

    Various SQL queries related to data manipulation and retrieval were asked during the interview.

    • Basic SELECT queries to retrieve data from a single table

    • JOIN queries to retrieve data from multiple tables based on a common column

    • Aggregate functions like COUNT, SUM, AVG, etc. to perform calculations on data

    • Subqueries to retrieve data based on the result of another query

    • UPDATE queries to modify existing data in a table

    • DELE...

  • Answered by AI
Round 2 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Zig-Zag String Problem Statement

    Given a string STR of size N and an integer M representing the number of rows in the zig-zag pattern, return the string formed by concatenating all rows when the string ST...

  • Ans. 

    Arrange a string in zig-zag pattern with given number of rows and concatenate the rows.

    • Iterate through the string and distribute characters to rows based on zig-zag pattern

    • Concatenate the characters in each row to get the final result

    • Handle edge cases like when number of rows is 1 or equal to the length of the string

  • Answered by AI
  • Q2. 

    Next Permutation Problem Statement

    You are given a permutation of 'N' integers. A sequence of 'N' integers is considered a permutation if it includes all integers from 1 to 'N' exactly once. Your task is ...

  • Ans. 

    The task is to rearrange a given permutation of 'N' integers to form the lexicographically next greater permutation.

    • Iterate from right to left to find the first element that is smaller than the element to its right.

    • Swap this element with the smallest element to its right that is greater than it.

    • Reverse the elements to the right of the swapped element to get the lexicographically next greater permutation.

  • Answered by AI
Round 3 - Face to Face 

(2 Questions)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. 

    Remove Consecutive Duplicates Problem Statement

    Given a string S, your task is to recursively remove all consecutive duplicate characters from the string.

    Input:

    String S

    Output:

    Output string

    Constr...

  • Ans. 

    Recursively remove consecutive duplicate characters from a string.

    • Use recursion to check if the current character is the same as the next character, if so skip the next character

    • Base case: if the string is empty or has only one character, return the string

    • Example: Input: 'aaabcc', Output: 'abc'

  • Answered by AI
  • Q2. 

    Print Permutations - String Problem Statement

    Given an input string 'S', you are tasked with finding and returning all possible permutations of the input string.

    Input:

    The first and only line of input ...
  • Ans. 

    Return all possible permutations of a given input string.

    • Use recursion to generate all possible permutations of the input string.

    • Swap characters at different positions to generate permutations.

    • Handle duplicate characters in the input string by using a set to store unique permutations.

  • Answered by AI
Round 4 - Face to Face 

(1 Question)

Round duration - 60 Minutes
Round difficulty - Medium

  • Q1. Design an e-commerce website similar to Flipkart or Amazon.
  • Ans. 

    Design an e-commerce website similar to Flipkart or Amazon.

    • Implement user-friendly interface for easy navigation

    • Include search functionality with filters for products

    • Incorporate secure payment gateway for transactions

    • Provide personalized recommendations based on user behavior

    • Include customer reviews and ratings for products

    • Implement order tracking and delivery status updates

    • Offer various payment options like credit/deb

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute of Technology, Kurukshetra. I applied for the job as SDE - 1 in BangaloreEligibility criteriaAbove 7.5 CGPASAP Labs interview preparation:Topics to prepare for the interview - DSA(Data Structures and Algorithms),Object-Oriented Programming Principles,Operating Systems,Database Management Systems,Web Development,Machine Learning,Projects(Internship/Full-time)Time required to prepare for the interview - 3 monthsInterview preparation tips for other job seekers

Tip 1 : Prepare DSA well. Standard Leetcode-type questions will be asked.
Tip 2 : You should be crystal clear about your project/s as any question would be asked and you should be able to answer it.
Tip 3 : Prepare CS fundaments like OS, OOPs, DBMS, etc.

Application resume tips for other job seekers

Tip 1 : Clearly mention the tech. stack you have worked on in the project/s
Tip 2 : As a fresher, you should add your coding profiles on CodeChef, Codeforces, etc. so as to make the resume shortlisting easy

Final outcome of the interviewSelected

Skills evaluated in this interview

I applied via Campus Placement and was interviewed in Nov 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. About myself Things mostly related to my cv eg; java project, about robotics workshop, DBMS, OS
  • Q2. If I want to relocate , about time constraints in the company and all .

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be yourself don't be so frank and mostly concentrate on what u can say if u don't know the answer don't hesitate to deny the interviewer. Cheers!

Interview Questionnaire 

1 Question

  • Q1. Basic questions on c like sorting,string libraries

Interview Questionnaire 

2 Questions

  • Q1. Basic questions
  • Q2. Be prepared on C

Incrivel Software Solutions Interview FAQs

How many rounds are there in Incrivel Software Solutions interview?
Incrivel Software Solutions interview process usually has 1 rounds. The most common rounds in the Incrivel Software Solutions interview process are HR.
What are the top questions asked in Incrivel Software Solutions interview?

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

  1. What is s...read more
  2. What is Javascri...read more
  3. Basic related to web desi...read more

Tell us how to improve this page.

Incrivel Software Solutions Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

Oracle Interview Questions
3.7
 • 865 Interviews
Google Interview Questions
4.4
 • 843 Interviews
Amdocs Interview Questions
3.7
 • 518 Interviews
Zoho Interview Questions
4.3
 • 512 Interviews
KPIT Technologies Interview Questions
3.4
 • 291 Interviews
SAP Interview Questions
4.2
 • 285 Interviews
Adobe Interview Questions
3.9
 • 235 Interviews
View all

Incrivel Software Solutions Reviews and Ratings

based on 5 reviews

3.2/5

Rating in categories

3.2

Skill development

2.7

Work-life balance

2.9

Salary

3.2

Job security

3.0

Company culture

2.4

Promotions

3.0

Work satisfaction

Explore 5 Reviews and Ratings
UI Developer
4 salaries
unlock blur

₹1.5 L/yr - ₹2 L/yr

Angular Developer
4 salaries
unlock blur

₹2.2 L/yr - ₹2.2 L/yr

Softwaretest Engineer
3 salaries
unlock blur

₹1.2 L/yr - ₹3 L/yr

Explore more salaries
Compare Incrivel Software Solutions with

Oracle

3.7
Compare

Amdocs

3.7
Compare

Carelon Global Solutions

3.9
Compare

Automatic Data Processing (ADP)

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