Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Kreate Technologies Software Developer Interview Questions, Process, and Tips

Updated 23 Jan 2025

Top Kreate Technologies Software Developer Interview Questions and Answers

View all 16 questions

Kreate Technologies Software Developer Interview Experiences

2 interviews found

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

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

Round 1 - One-on-one 

(15 Questions)

  • Q1. Oops Concept in c#
  • Ans. 

    Oops concept in C# refers to Object-Oriented Programming principles like inheritance, encapsulation, polymorphism, and abstraction.

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

    • Encapsulation hides the internal state of an object and only exposes necessary information.

    • Polymorphism allows objects of different classes to be treated as objects of a common superclass.

    • Abstraction focuses on...

  • Answered by AI
  • Q2. Manage and unmanaged code
  • Q3. Dependency injection
  • Q4. Filter and its type
  • Ans. 

    A filter is a tool used to select specific data from a larger set based on certain criteria.

    • Filters can be used in various programming languages and databases to narrow down results.

    • Types of filters include text filters, numeric filters, date filters, and custom filters.

    • Examples of filters include WHERE clause in SQL, filter() function in Python, and filter() method in JavaScript.

  • Answered by AI
  • Q5. View in sql server
  • Ans. 

    A view in SQL Server is a virtual table that contains the result set of a SELECT statement.

    • Views are used to simplify complex queries by storing them as a virtual table.

    • Views can be used to restrict access to specific columns or rows of a table.

    • Views can be created using the CREATE VIEW statement.

    • Example: CREATE VIEW vwEmployee AS SELECT FirstName, LastName FROM Employees;

  • Answered by AI
  • Q6. Primary key vs unique key
  • Ans. 

    Primary key uniquely identifies a record in a table, while unique key ensures uniqueness but allows null values.

    • Primary key enforces uniqueness and not null constraint on a column

    • Primary key can consist of multiple columns

    • Unique key enforces uniqueness but allows null values

    • Unique key can be applied to multiple columns as well

  • Answered by AI
  • Q7. Procedure vs function
  • Ans. 

    Procedures are a set of instructions that perform a specific task, while functions return a value after performing a task.

    • Procedures do not return a value, while functions do.

    • Functions can be called within expressions, while procedures cannot.

    • Functions are more versatile and reusable compared to procedures.

  • Answered by AI
  • Q8. Trigger in sql server
  • Ans. 

    A trigger in SQL Server is a special type of stored procedure that automatically executes when certain events occur in a database.

    • Triggers can be used to enforce business rules, audit changes, or replicate data.

    • There are two main types of triggers in SQL Server: DML triggers and DDL triggers.

    • DML triggers fire in response to data manipulation language (DML) events like INSERT, UPDATE, and DELETE.

    • DDL triggers fire in res...

  • Answered by AI
  • Q9. Interface in c#
  • Ans. 

    Interface in C# is a reference type that defines a contract for classes to implement certain methods and properties.

    • Interfaces cannot have implementation, only method signatures and properties.

    • Classes can implement multiple interfaces in C#.

    • Interfaces are used to achieve abstraction and multiple inheritance in C#.

    • Example: public interface IShape { void Draw(); }

    • Example: public class Circle : IShape { public void Draw()

  • Answered by AI
  • Q10. Abstract class vs interface
  • Ans. 

    Abstract class is a class that can have both abstract and non-abstract methods, while interface is a contract that defines methods that must be implemented by a class.

    • Abstract class can have constructor, fields, and methods, while interface cannot have any implementation.

    • A class can implement multiple interfaces but can only inherit from one abstract class.

    • Abstract classes are used when some common functionality needs ...

  • Answered by AI
  • Q11. Partial view in.det
  • Ans. 

    Partial view in ASP.NET MVC allows reusing common UI elements across multiple views.

    • Partial views are like reusable components that can be included in multiple views

    • They help in reducing code duplication and improving maintainability

    • Partial views are rendered using Html.Partial or Html.RenderPartial methods

  • Answered by AI
  • Q12. Method overloading vs overriding
  • Ans. 

    Method overloading is having multiple methods in the same class with the same name but different parameters. Method overriding is redefining a method in a subclass with the same name and parameters as in the superclass.

    • Method overloading involves multiple methods with the same name but different parameters.

    • Method overriding involves redefining a method in a subclass with the same name and parameters as in the superclas...

  • Answered by AI
  • Q13. Union vs union all
  • Ans. 

    Union combines and removes duplicates, while union all combines all rows including duplicates.

    • Union removes duplicates, while union all includes duplicates.

    • Union is slower as it has to remove duplicates, while union all is faster.

    • Use union when you want to remove duplicates, use union all when duplicates are acceptable.

  • Answered by AI
  • Q14. Foreign key In sql
  • Ans. 

    Foreign key in SQL is a field in a table that links to a primary key in another table, enforcing referential integrity.

    • Foreign key constraints ensure data consistency between related tables

    • Foreign key values must exist in the referenced table's primary key column

    • Foreign key can be used to establish relationships between tables

  • Answered by AI
  • Q15. Constructor in c#
  • Ans. 

    Constructor in C# is a special type of method that is automatically called when an instance of a class is created.

    • Constructors have the same name as the class and do not have a return type.

    • They can be used to initialize the data members of the class.

    • Constructors can be overloaded to have multiple versions with different parameters.

    • Example: public class Person { public Person(string name) { this.Name = name; } }

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. Tell me about your project
  • Q2. Salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Create a good resume and practice common interview questions and improve your logic using pattern printing and continuous learning.

Skills evaluated in this interview

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

I was interviewed before Jan 2024.

Round 1 - Coding Test 

A few questions were related to the PHP language, JavaScript, and Object-Oriented Programming concepts. Few mathematical problems were also involved.

Round 2 - Technical 

(3 Questions)

  • Q1. Explain OOPS Programming.
  • Ans. 

    OOPS programming is a programming paradigm based on the concept of objects, which can contain data in the form of fields and code in the form of procedures.

    • OOPS stands for Object-Oriented Programming System

    • It focuses on creating objects that interact with each other to solve complex problems

    • Encapsulation, inheritance, polymorphism, and abstraction are key principles of OOPS

    • Example: Inheritance allows a class to inherit

  • Answered by AI
  • Q2. How do you embed PHP code in an HTML file?
  • Ans. 

    PHP code can be embedded in an HTML file using PHP opening and closing tags.

    • Use <?php ?> tags to enclose PHP code within an HTML file

    • Ensure that the file has a .php extension for the server to process PHP code

    • Example: <html><body><?php echo 'Hello World'; ?></body></html>

  • Answered by AI
  • Q3. What is the difference between echo and print in PHP?
  • Ans. 

    Echo and print are both used to output data in PHP, but echo is slightly faster and can take multiple parameters while print can only take one.

    • Echo is a language construct, while print is a function.

    • Echo does not return a value, while print returns 1.

    • Echo can take multiple parameters separated by commas, while print can only take one parameter.

    • Echo is slightly faster than print.

  • Answered by AI
Round 3 - HR 

(3 Questions)

  • Q1. How do you handle feedback from Peers/ Mentors?
  • Ans. 

    I value feedback from peers/mentors and use it to improve my skills and performance.

    • I actively seek feedback from peers/mentors to identify areas for improvement.

    • I listen attentively to feedback and take constructive criticism positively.

    • I use feedback to make necessary adjustments and enhance my work.

    • I appreciate feedback as a valuable tool for personal and professional growth.

  • Answered by AI
  • Q2. How do you keep updated yourself with the latest technologies?
  • Ans. 

    I keep updated by attending tech conferences, online courses, reading tech blogs, and participating in hackathons.

    • Attending tech conferences such as Google I/O or WWDC

    • Taking online courses on platforms like Coursera or Udemy

    • Reading tech blogs like TechCrunch or Hacker Noon

    • Participating in hackathons to learn and collaborate with other developers

  • Answered by AI
  • Q3. Why should we select you for this position?
  • Ans. 

    I have a strong background in software development with a proven track record of delivering high-quality projects on time.

    • Extensive experience in programming languages such as Java, Python, and C++

    • Strong problem-solving skills and ability to work well in a team

    • Previous projects include developing a mobile app for a startup company and implementing new features for a large-scale web application

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - While my overall experience with the process was positive, I believe we should receive feedback as soon as possible rather than waiting for a week.

Software Developer Interview Questions Asked at Other Companies

asked in Amazon
Q1. Maximum Subarray Sum Problem Statement Given an array of integers ... read more
asked in Amazon
Q2. Minimum Number of Platforms Needed Problem Statement You are give ... read more
asked in Rakuten
Q3. Merge Two Sorted Arrays Problem Statement Given two sorted intege ... read more
asked in Cognizant
Q4. Nth Fibonacci Number Problem Statement Calculate the Nth term in ... read more
Q5. Find Duplicate in Array Problem Statement You are provided with a ... read more

Interview questions from similar companies

I applied via Company Website and was interviewed before Dec 2020. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Questions on Java,SQL,some trending technologies(IOT,Big data),pattern questions, programming questions with different approaches.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basics of DSA, have knowledge about the databases, some common dml ,ddl statements, programming knowledge of a particular language like C,Java, python,etc...have good command on oops concepts... little bit of frameworks knowledge will also help

I applied via Newspaper Ad and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 
Round 2 - Technical 

(1 Question)

  • Q1. Basic questions of java.
Round 3 - HR 

(1 Question)

  • Q1. Intro and other hr related questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Cover the basic questions regarding the programming language.

I applied via Referral and was interviewed before Apr 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

Puzzles, Psychometric Test

Round 2 - One-on-one 

(1 Question)

  • Q1. Some water in 3 Jars question, you had to measure out 5L correctly

Interview Preparation Tips

Interview preparation tips for other job seekers - Make the interview interactive, I got this input from another Senior. Before i went into the interview room the volunteers were telling all those who goes into Room No 1 is screwed. I was praying i don't get room no 1. But fortunately for me I got room no 1 because when the interviewer gave me the puzzle and handed over pen and paper he went back to relax his posture and when i explained i will fill the 5L Jar first, he immediately came forward to listen to me, at that moment i knew i got the job because i felt the previous candidates never made their interview interactive and that's why he went back to relax his posture.
Interview experience
5
Excellent
Difficulty level
Hard
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Walk-in and was interviewed before Jan 2022. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Double-check your resume for any spelling mistakes. The recruiter may consider spelling mistakes as careless behavior or poor communication skills.
View all Resume tips
Round 2 - Aptitude Test 

Aptitude test duration 90 min 100 question

Round 3 - Coding Test 

Coding test 50 code 100 marks 60 min

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well. code in c , c++ , java is very important

I applied via Company Website and was interviewed before Jun 2021. There were 2 interview rounds.

Round 1 - Aptitude Test 

First round was coding as well as aptitude done together went well I guess focusing on codes helps a lot.

Round 2 - Technical 

(1 Question)

  • Q1. 2nd round included tr and mr round went quite enegritic

Interview Preparation Tips

Interview preparation tips for other job seekers - Resume skills matters a lot don't fill resume the technologies you don't even aware of

I was interviewed in Sep 2016.

Interview Questionnaire 

3 Questions

  • Q1. Tell me about yourself
  • Ans. 

    I am a passionate software developer with experience in Java, Python, and web development.

    • Experienced in Java, Python, and web development technologies

    • Strong problem-solving skills and ability to work in a team

    • Completed multiple projects including a web-based inventory management system

  • Answered by AI
  • Q2. Simple coding questions..Basically pattern.
  • Q3. And also they will ask about your projects.

Interview Preparation Tips

Round: Test
Experience: 60 multiple choice questions so have to manage time carefully.
Tips: Have to give equal importance to all the sections..So try to do well in all section.
Duration: 1 hour 30 minutes
Total Questions: 60

Round: Technical + HR Interview
Experience: Don't panic...Only write those things that you know in your resume.

Skills: Smart Coding
College Name: Jaypee Institute Of Information Technology, Noida

I was interviewed in May 2017.

Interview Preparation Tips

Round: Test
Total Questions: 20

Round: Group Discussion
Duration: 1 hour

Skills: Coding Skills And Knowledge On Data Structures

I was interviewed in Jun 2017.

Interview Preparation Tips

Round: Test
Duration: 1 hour 30 minutes

Skills: Engineering Basics
Contribute & help others!
anonymous
You can choose to be anonymous

Kreate Technologies Interview FAQs

How many rounds are there in Kreate Technologies Software Developer interview?
Kreate Technologies interview process usually has 2-3 rounds. The most common rounds in the Kreate Technologies interview process are HR, One-on-one Round and Coding Test.
How to prepare for Kreate Technologies Software Developer 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 Kreate Technologies . The most common topics and skills that interviewers at Kreate Technologies expect are JQuery, JSON, Javascript, Ajax and Angularjs.
What are the top questions asked in Kreate Technologies Software Developer interview?

Some of the top questions asked at the Kreate Technologies Software Developer interview -

  1. What is the difference between echo and print in P...read more
  2. How do you embed PHP code in an HTML fi...read more
  3. Method overloading vs overrid...read more

Recently Viewed

INTERVIEWS

LTIMindtree

No Interviews

INTERVIEWS

Sterling & Wilson

No Interviews

INTERVIEWS

Eshopbox Ecommerce

No Interviews

JOBS

Codestore Technologies

No Jobs

INTERVIEWS

HyperVerge

No Interviews

INTERVIEWS

Rudder Analytics

No Interviews

SALARIES

Codestore Technologies

INTERVIEWS

Capgemini

No Interviews

INTERVIEWS

Navayuga Engineering Company

No Interviews

SALARIES

Codestore Technologies

Tell us how to improve this page.

Kreate Technologies Software Developer Interview Process

based on 4 interviews

Interview experience

3.8
  
Good
View more
Kreate Technologies Software Developer Salary
based on 65 salaries
₹3 L/yr - ₹9 L/yr
33% less than the average Software Developer Salary in India
View more details

Kreate Technologies Software Developer Reviews and Ratings

based on 13 reviews

2.9/5

Rating in categories

2.9

Skill development

3.0

Work-life balance

2.9

Salary

3.0

Job security

3.0

Company culture

3.0

Promotions

2.9

Work satisfaction

Explore 13 Reviews and Ratings
Software Developer
65 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Junior Software Developer
35 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Developer
27 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Business Analyst
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Software Engineer
10 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Kreate Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview
Rate your experience using AmbitionBox
Terrible
Terrible
Poor
Poor
Average
Average
Good
Good
Excellent
Excellent