Upload Button Icon Add office photos

Filter interviews by

KreativSARG Technology Solutions Senior Software Developer Interview Questions, Process, and Tips

Updated 16 Nov 2019

KreativSARG Technology Solutions Senior Software Developer Interview Experiences

1 interview found

Interview Questionnaire 

8 Questions

  • Q1. What is CAA? Tell me everything you about CAA.
  • Q2. Object Modeler?
  • Q3. Types of Tie class?
  • Ans. 

    Tie class can be of different types such as bow tie, necktie, ascot tie, bolo tie, cravat, etc.

    • Bow tie is a type of tie that consists of a ribbon tied around the collar in a symmetrical manner.

    • Necktie is a long piece of cloth worn around the neck and tied in a knot at the front.

    • Ascot tie is a wide, formal tie that is usually patterned and worn with a morning coat.

    • Bolo tie is a type of necktie consisting of a piece of c...

  • Answered by AI
  • Q4. What is component?
  • Ans. 

    A component is a modular and reusable piece of software that performs a specific function.

    • Components can be combined to create larger software systems.

    • They are often designed to be independent and interchangeable.

    • Examples include UI components, database components, and networking components.

  • Answered by AI
  • Q5. Factory and its use?
  • Ans. 

    A factory is a design pattern used to create objects without specifying the exact class of object that will be created.

    • A factory method is used to create objects of a specific type.

    • Factories can be used to create objects with different implementations of the same interface.

    • Factories can be used to encapsulate object creation logic.

    • Examples include Abstract Factory, Factory Method, and Simple Factory patterns.

  • Answered by AI
  • Q6. What is BOA?
  • Ans. 

    BOA stands for Bank of America, a multinational banking and financial services corporation.

    • BOA is one of the largest banks in the United States.

    • It offers a wide range of financial products and services, including checking and savings accounts, credit cards, mortgages, and loans.

    • BOA has a large network of branches and ATMs across the country.

    • It also has a strong online and mobile banking presence.

    • BOA is headquartered in

  • Answered by AI
  • Q7. Why we should not use multiple inheritance?
  • Ans. 

    Multiple inheritance can lead to ambiguity and complexity in code.

    • Diamond problem can occur where two base classes have a common method.

    • It can lead to tight coupling and increase in code complexity.

    • Interfaces can be used instead to achieve similar functionality.

    • Composition over inheritance can be a better approach in some cases.

  • Answered by AI
  • Q8. Types of command?
  • Ans. 

    Commands can be classified into three types: Executable, Non-executable, and Conditional.

    • Executable commands perform a specific task or operation.

    • Non-executable commands provide information about the system or environment.

    • Conditional commands execute a task based on a certain condition or criteria.

    • Examples: ls, mkdir, rm (executable), pwd, date, echo (non-executable), if, while, for (conditional)

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

I was interviewed 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 was interviewed before Jun 2016.

Interview Questionnaire 

1 Question

  • Q1. Java related questions on Oops concept and Multithreading

Interview Preparation Tips

Round: Test
Experience: Simple aptitude and reasoning questions little java based programming
Tips: Basic programming knowledge and good aptitude
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: Normal questions on Java, basic programming questions like reverse no. , String related and logical coding
Tips: What u mentioned on your resume go through that only, they will not ask apart from your resume

Skills: How Well You Are Able To Communicate What You Wanted To Tell, Programming
College Name: SRCEM

I was interviewed before Aug 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments

Round: Test
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments
Total Questions: 15

Round: Test
Experience: See my mentality
Tips: No comments
Duration: 45 minutes

Round: Group Discussion
Experience: Communication
Tips: No comments

Skills: Communication And Confidence

I applied via Walk-in and was interviewed before May 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. For fresher 1 aptitude - percentage,date and time,number system,intrest,work done problems 2 Group discussion 3 HR interview

Interview Preparation Tips

Interview preparation tips for other job seekers - First is usual aptitude after finishing it takes 30 min for result . Next g it is more of generall topic, atlast hr
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

45 questions were asked

Round 2 - Coding Test 

3 questions were asked one from SQL and 2 from java

Round 3 - One-on-one 

(1 Question)

  • Q1. Oops concepts and java basics
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(2 Questions)

  • Q1. Four Pillars of OOPS in Java?
  • Ans. 

    Encapsulation, Inheritance, Polymorphism, Abstraction are the four pillars of OOPS in Java.

    • Encapsulation: Bundling data and methods that operate on the data into a single unit.

    • Inheritance: Allows a class to inherit properties and behavior from another class.

    • Polymorphism: Ability to present the same interface for different data types.

    • Abstraction: Hiding the implementation details and showing only the necessary features.

  • Answered by AI
  • Q2. What is a constructor in Java?
  • Ans. 

    A constructor in Java is a special type of method that is used to initialize objects.

    • Constructors have the same name as the class they are in.

    • They do not have a return type, not even void.

    • Constructors are called when an object of a class is created.

    • Example: public class Car { public Car() { // constructor code } }

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

The aptitude test was relatively straightforward, consisting of both aptitude and technical questions, with a difficulty level ranging from easy to medium.

Round 2 - Technical 

(2 Questions)

  • Q1. Was asked to write a code on basic DSA concept
  • Q2. Then was asked basic questions on DSA and SQL

Interview Preparation Tips

Interview preparation tips for other job seekers - Make sure you have good understanding of everything you mentioned on your resume
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

I applied via Referral and was interviewed before Jan 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Which technology are you using, is this latest?
  • Ans. 

    We are using a variety of technologies, including some of the latest ones.

    • We are using React for our front-end development.

    • We are also using Node.js for our back-end development.

    • We are using Docker for containerization.

    • We are using Kubernetes for orchestration.

    • We are using AWS for cloud hosting.

    • We are constantly evaluating new technologies to see if they can improve our development process.

  • Answered by AI
  • Q2. If not then which technology can we use instead of this?
  • Ans. 

    It depends on the specific requirements and constraints of the project.

    • Consider the project's goals and objectives

    • Evaluate the available technologies and their capabilities

    • Assess the project's budget and timeline

    • Consult with stakeholders and experts in the field

    • Examples: React vs Angular, MySQL vs MongoDB, Java vs Python

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Hi,
Listen carefully and speak fluently.

KreativSARG Technology Solutions Interview FAQs

What are the top questions asked in KreativSARG Technology Solutions Senior Software Developer interview?

Some of the top questions asked at the KreativSARG Technology Solutions Senior Software Developer interview -

  1. Why we should not use multiple inheritan...read more
  2. What is compone...read more
  3. What is B...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

HCL Infosystems Interview Questions
3.9
 • 141 Interviews
Webdew Interview Questions
4.5
 • 106 Interviews
HyScaler Interview Questions
4.5
 • 90 Interviews
View all
KreativSARG Technology Solutions Senior Software Developer Salary
based on 4 salaries
₹9.5 L/yr - ₹14 L/yr
23% less than the average Senior Software Developer Salary in India
View more details

KreativSARG Technology Solutions Senior Software Developer Reviews and Ratings

based on 1 review

4.0/5

Rating in categories

4.0

Skill development

3.0

Work-life balance

3.0

Salary

4.0

Job security

4.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 1 Review and Rating
Software Engineer
13 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Design Engineer
7 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Design Engineer
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Teamcenter Developer
5 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare KreativSARG Technology Solutions with

HCL Infosystems

3.9
Compare

Accel Frontline

4.0
Compare

Northcorp Software

4.3
Compare

Diverse Lynx

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