Upload Button Icon Add office photos

Filter interviews by

Kreeti Technologies Interview Questions and Answers

Updated 29 Nov 2024

Kreeti Technologies Interview Experiences

Popular Designations

4 interviews found

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

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

Round 1 - Aptitude Test 

Online Aptitude Test. Quants, GK, Logical Reasoning and English.

Round 2 - Coding Test 

Pen and Paper coding round in college. Easy Questions.

Round 3 - Coding Test 

Coding Round in their office. Questions on: Tree Traversal, Subset Sum, Stairs Steps Problem (Leetcode 70)

Interview Preparation Tips

Topics to prepare for Kreeti Technologies Software Engineer Trainee interview:
  • DBMS
  • OOPS

Software Engineer Trainee Interview Questions asked at other Companies

Q1. Palindromic Linked List Problem Statement Given a singly linked list of integers, determine if it is a palindrome. Return true if it is a palindrome, otherwise return false. Example: Input: 1 -> 2 -> 3 -> 2 -> 1 -> NULL Outpu... read more
Add answer

QA Engineer Interview Questions & Answers

user image Anonymous

posted on 25 Feb 2023

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

I applied via Company Website and was interviewed in Jan 2023. There were 3 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 - Aptitude Test 

It was a medium level test, they give you 45 mins and have 60 questions with 1/4 of negative marks, Also there is specific time duration for each question and you cannot get back and answer skipped questions.

Round 3 - Coding Test 

Coding was easy, basic programmes were based on arrays. the package is comparatively low compared to the difficulty of exam.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well for the aptitude round, especially for the logical section as there is 30s per questions

QA Engineer Interview Questions asked at other Companies

Q1. 80 pairs of socks in a dark room, 40 black, 40 white, how many minimum number of socks need to be taken out to get 15 pairs of socks
View answer (7)
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
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 - Aptitude Test 

Aptitude consists of mathematics, profit and loss, etc

Round 3 - Coding Test 

It is one hour exam consisting of basic coding questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be chill and be thorough with the concepts. Never lose your confidence and never be over confident during the interview.

System Engineer Interview Questions asked at other Companies

Q1. Election Winner Determination In an ongoing election between two candidates A and B, there is a queue of voters that includes supporters of A, supporters of B, and neutral voters. Neutral voters have the power to swing the election results ... read more
View answer (8)

Intern Interview Questions & Answers

user image Anonymous

posted on 2 Feb 2023

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

I applied via Recruitment Consulltant and was interviewed before Feb 2022. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Properly align and format text in your resume. A recruiter will have to spend more time reading poorly aligned text, leading to high chances of rejection.
View all tips
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is your goal after completing your Masters ?
  • Q2. Where you see yourself after 5 years ?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident about your inputs, Don’t always try to give just an answer try to elaborate it as a solution.

Intern Interview Questions asked at other Companies

Q1. Case. There is a housing society “The wasteful society”, you collect all the household garbage and sell it to 5 different businesses. Determine what price you will pay to the society members in Rs/kg, given you want to make a profit of 20% ... read more
View answer (8)

Kreeti Technologies interview questions for popular designations

 Intern

 (1)

 QA Engineer

 (1)

 Software Engineer Trainee

 (1)

 System Engineer

 (1)

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Easy
Process Duration
2-4 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

General basic assessment.

Round 2 - MCQ 

(1 Question)

  • Q1. They will give you few PDFs to read and then MCQ from that.

Interview Preparation Tips

Interview preparation tips for other job seekers - So the job application process will start from emailing them to the MCQ. Then if selected you'll receive email with next steps which involves Skype chat(no involvement of voice call or video, only chat). Then after the technical setup you need to email them again that you're done with that, after that you'll get another mail with a link to choose a starting date.
On the starting date you'll again message one person(Yashima Kamra) on Skype, they'll give you 'Zulip'(it's an open source chat system, interface is kind of like Discord but too basic) access. Now you need to message in an assigned group in Zulip. The Zulip part is 'Training' in real but good luck getting any support from the other person. He/she will just give you commands, and if you ask any questions or ask for assistance to understand the new process they'll simply ignore that.
Then if you're lucky like me one day they'll report that you're ate fault, you haven't reported so they've revoked your Zulip access.

I have joined there or you can say hoped to work atleast(as it was 4 hours/day job) but that's not possible it seems.

If you're looking for jobs here I'd suggest to give it a try ofcourse so that people can actually know about this company's rubbish people.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(3 Questions)

  • Q1. What is a synchronous machine?
  • Q2. What is a synchronous motor?
  • Q3. What is a synchronous speed
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

I applied via campus placement at BRACT's Vishwakarma Institute of Information Technology, Pune and was interviewed in Oct 2024. There was 1 interview round.

Round 1 - One-on-one 

(4 Questions)

  • Q1. What is polymorphism
  • Ans. 

    Polymorphism is the ability of a function or method to behave differently based on the object it is acting upon.

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

    • It enables a single interface to be used for different data types or classes.

    • Examples include method overloading and method overriding in object-oriented programming.

  • Answered by AI
  • Q2. Find missing number from nth number array.
  • Ans. 

    Find missing number from nth number array.

    • Iterate through the array and calculate the sum of all numbers

    • Calculate the sum of numbers from 1 to n using the formula n*(n+1)/2

    • Subtract the sum of array from the sum of numbers from 1 to n to find the missing number

  • Answered by AI
  • Q3. Explain inheritance and it types
  • Ans. 

    Inheritance is a concept in object-oriented programming where a class inherits properties and behaviors from another class.

    • Inheritance allows a class to reuse code from another class.

    • Types of inheritance include single inheritance, where a class inherits from only one parent class, and multiple inheritance, where a class inherits from multiple parent classes.

    • Example: Class B inherits from Class A, so Class B can access

  • Answered by AI
  • Q4. Find 2nd max elements from aaray
  • Ans. 

    Find 2nd max element from array of strings

    • Sort the array in descending order

    • Skip the first element (max element)

    • Return the second element

  • Answered by AI

Skills evaluated in this interview

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

I applied via Company Website and was interviewed in Jun 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Coding Test consists of 3 Problem Question (2 Logical questions and 1 SQL Query ) and Around 20 MCQS
Platform - CoderByte

Round 2 - Aptitude Test 

30 Aptitude Question
3 Mail Writing Question

Round 3 - Technical 

(5 Questions)

  • Q1. Explain 1st Problem Solved in Coding Test. Optimize it.
  • Q2. Explain 2nd Problem Solved in Coding Test. I failed 1 test case in 1st round which was told to solve again.
  • Q3. Explain 3rd Question based on SQL Query.
  • Q4. Write a code to Reverse Digits.
  • Q5. A problem question for solving a SQL Query.

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well,
Stay continuously in contact, call the HR for updates as they don't call you, We need to call them else you will wait entire life.
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Tell me about yourself?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via LinkedIn and was interviewed in Aug 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. Tell me about your self.
  • Ans. 

    I am a passionate software engineering student with experience in web development and a strong desire to learn and grow.

    • Currently pursuing a degree in Computer Science

    • Proficient in programming languages such as Java, Python, and JavaScript

    • Experience with front-end technologies like HTML, CSS, and React

    • Completed internships at tech companies like XYZ Inc.

    • Interested in exploring machine learning and artificial intelligen

  • Answered by AI
  • Q2. What's your skill and experience.
  • Ans. 

    I have strong skills in programming languages such as Java, Python, and C++, as well as experience with web development and database management.

    • Proficient in Java, Python, and C++ programming languages

    • Experience with web development using HTML, CSS, and JavaScript

    • Familiarity with database management systems like MySQL and MongoDB

  • Answered by AI

Interview Preparation Tips

Topics to prepare for GrapplTech Software Engineer Intern interview:
  • Java
  • Javascript
  • React.Js
  • Node.Js
  • MySQL
  • OOPS
  • DSA
Interview preparation tips for other job seekers - It's a Great Platform for job seekers.

Kreeti Technologies Interview FAQs

How many rounds are there in Kreeti Technologies interview?
Kreeti Technologies interview process usually has 2-3 rounds. The most common rounds in the Kreeti Technologies interview process are Coding Test, Resume Shortlist and Aptitude Test.
How to prepare for Kreeti Technologies 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 Kreeti Technologies. The most common topics and skills that interviewers at Kreeti Technologies expect are Javascript, JIRA, SQL, Agile and CSS.

Tell us how to improve this page.

Kreeti Technologies Interview Process

based on 5 interviews

Interview experience

4.4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
Busibud Interview Questions
4.0
 • 42 Interviews
View all

Kreeti Technologies Reviews and Ratings

based on 33 reviews

3.0/5

Rating in categories

3.6

Skill development

3.1

Work-life balance

2.9

Salary

3.0

Job security

2.9

Company culture

2.9

Promotions

3.2

Work satisfaction

Explore 33 Reviews and Ratings
Web Engineer
22 salaries
unlock blur

₹5 L/yr - ₹10 L/yr

Web Developer
17 salaries
unlock blur

₹6 L/yr - ₹8.4 L/yr

Software Engineer
13 salaries
unlock blur

₹7.2 L/yr - ₹19.2 L/yr

Web Designer
9 salaries
unlock blur

₹4.2 L/yr - ₹6.3 L/yr

Junior Software Engineer
8 salaries
unlock blur

₹6 L/yr - ₹7.2 L/yr

Explore more salaries
Compare Kreeti 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