Upload Button Icon Add office photos

Filter interviews by

Clear (1)

Greyb Cakephp Developer Interview Questions and Answers

Updated 2 May 2024

Greyb Cakephp Developer Interview Experiences

1 interview found

Cakephp Developer Interview Questions & Answers

user image Ishpreet Kaur

posted on 2 May 2024

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

I applied via Job Portal and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. Introduce Yourself
  • Q2. Current/Last CTC and Expected CTC
  • Q3. When available for Interview?
Round 2 - Technical 

(4 Questions)

  • Q1. Questions related to some coding samples like "Write a code for finding a number of vowels in a string", "Factorial of a number"
  • Q2. Mysql questions like some mysql queries have been asked.
  • Q3. Types of indexes in mysql, storage engines, what are different query optimization techniques, what is "EXPLAIN" keyword in mysql
  • Ans. 

    Types of indexes in MySQL, storage engines, query optimization techniques, and EXPLAIN keyword

    • Types of indexes in MySQL include primary, unique, and full-text indexes

    • Storage engines in MySQL include InnoDB, MyISAM, and MEMORY

    • Query optimization techniques include using indexes, optimizing joins, and avoiding unnecessary columns in SELECT queries

    • The 'EXPLAIN' keyword in MySQL is used to analyze and optimize queries by sh

  • Answered by AI
  • Q4. Some OOPS concepts like what are abstract classes, interfaces, static methods, traits
Round 3 - Behavioral 

(3 Questions)

  • Q1. Tell me about yourself which is not mentioned in CV
  • Q2. Hobbies are not mentioned on CV. Why and what are hobbies, favourite pastime?
  • Q3. Why left previous company?

Interview Preparation Tips

Topics to prepare for Greyb Cakephp Developer interview:
  • MySQL
  • OOPS
  • PHP

Skills evaluated in this interview

Interview questions from similar companies

Interview Preparation Tips

Round: Test
Experience: Quantitative, verbal, reasoning and basic technical questions.
Duration: 1 hour
Total Questions: 50

Round: Technical + HR Interview
Experience: Questions based on data structures, algorithms, and object oriented programming concepts.
Tested basic knowledge in Finance sector especially related to the company.

College Name: Delhi Technological University, Delhi

Interview Preparation Tips

Round: Pre-placement offer
Experience: Each intern was assigned a individual project and mentor.
In the last week of internship there was project presentation and interview.
interview was easy .For me 50% of the questions were about project and some questions about algorithms and DBMS.
More emphasis was given to the quality of work on project.

General Tips: Working in company is complete different from working on course project. learning many new frameworks required for the project was really challenging.
Programming : Tree, Btree, Tries ..
Operating System: Memory Management
Networks: OSI model
DBMS : basics. they dint ask me any. Show case your interest in big data, servers and passion for technology
Skill Tips: Be confident, even if you don't know the exact answer don't give up tell your approaches to interviewer. some times they will also help you. Software Developer some question s you can ask are: what technologies do your company works on. how are freshers will be selected to different teams in the company.
Skills:
College Name: NIT Surathkal
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
-

I applied via Walk-in and was interviewed before Mar 2022. 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 Resume tips
Round 2 - Coding Test 

Mid level programming and mcq questions

Round 3 - One-on-one 

(2 Questions)

  • Q1. Architecture round and coding Peer programming C# questions React questions Recurssive programming String manipulation
  • Q2. String manuplation Array questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Be prepared for the interview by various online source.
Interview experience
4
Good
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 Resume tips
Round 2 - Aptitude Test 

Qunatative, Reasoning, Blood Relation

Round 3 - Technical 

(1 Question)

  • Q1. CS fundamentals, DSA
Round 4 - HR 

(1 Question)

  • Q1. Behavioural Questions only
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in Sep 2023. There were 3 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 Resume tips
Round 2 - Aptitude Test 

Aptitude Test + Technical Questions + One Coding Question

Round 3 - Technical 

(2 Questions)

  • Q1. Detect the loop in a Singly linked list
  • Ans. 

    Detect loop in a singly linked list

    • Use two pointers, one moving one step at a time and the other moving two steps at a time

    • If there is a loop, the two pointers will eventually meet

    • If any of the pointers reach the end of the list, there is no loop

  • Answered by AI
  • Q2. 2 Sum (find a pair of numbers that sums up to a target)
  • Ans. 

    The 2 Sum problem involves finding a pair of numbers in an array that adds up to a given target.

    • Use a hash table to store the complement of each number as you iterate through the array.

    • Check if the current number's complement exists in the hash table.

    • If found, return the indices of the two numbers.

    • If no pair is found, return an empty array.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Then there was a GD
Followed by Technical Interview Round 1 and Round 2

Skills evaluated in this interview

I was interviewed in Oct 2020.

Round 1 - Coding Test 

(2 Questions)

Round duration - 70 minutes
Round difficulty - Medium

Timing: Window for 2 days
Environment: Online
Time: 50 Min. for 50 MCQ and 20 min for 2 Coding Questions

  • Q1. 

    Number Pattern Problem Statement

    Design a seating arrangement for a high-security meeting. There are 'N' rows of tables set up where the first row contains one table, the second row contains two tables, a...

  • Ans. 

    Design a seating arrangement for a high-security meeting with specific table assignments for security personnel and guests.

    • Create a loop to iterate through each row from 1 to N.

    • Assign tables on either end of each row to security personnel.

    • For rows with only one table, assign it to security personnel.

    • Display the seating arrangement with the number of people at each table.

    • Example: For 4 rows, the output pattern is 1, 11,

  • Answered by AI
  • Q2. 

    Insert Interval Problem Statement

    You are provided with a list of 'N' non-overlapping intervals, each defined by two integers, 'start' and 'end', sorted in ascending order by 'start' values. Your task is ...

  • Ans. 

    The task is to insert a given interval into a list of non-overlapping intervals while maintaining sorted order.

    • Iterate through the list of intervals to find the correct position to insert the given interval.

    • Merge any overlapping intervals with the given interval.

    • Update the list of intervals accordingly.

    • Handle edge cases such as when the given interval completely overlaps with existing intervals.

  • Answered by AI
Round 2 - Video Call 

(1 Question)

Round duration - 45 minutes
Round difficulty - Medium

Timing: Morning
Environment: On MS-Teams

  • Q1. 

    Quick Sort Problem Statement

    Sort the given array of integers in ascending order using the quick sort algorithm. Quick sort is a divide-and-conquer algorithm where a pivot point is chosen to partition the...

  • Ans. 

    Quick sort is a divide-and-conquer algorithm that sorts an array by choosing a pivot point and partitioning the array into two parts recursively.

    • Choose a pivot element (e.g., rightmost element) to partition the array into two subarrays.

    • Recursively apply quick sort to the subarrays until the entire array is sorted.

    • Time complexity can be optimized to NlogN in the worst case by selecting the pivot strategically.

    • Ensure the...

  • Answered by AI

Interview Preparation Tips

Professional and academic backgroundI completed Information Technology from Bharati Vidyapeeth's College of Engineering. I applied for the job as Software Development in GurgaonEligibility criteria70 % throughout ( in Xth, XIIth, B.Tech so far), up to one pending Backlog in B.Tech, is allowed.IHS Markit interview preparation:Topics to prepare for the interview - Data Structures and Algorithms, OOPS, Operating Systems, DBMS, Computer NetworkTime required to prepare for the interview - 6 monthsInterview preparation tips for other job seekers

Tip 1 : For DS and Algo, keep practicing every day on Leetcode, HackerEarth, and make a habit of participating in contests.
Tip 2 : Projects are vital in interviews, have at least 3 projects on Resume, in the field/profile which you're applying for.
Tip 3 : Give Mock Interviews.

Application resume tips for other job seekers

Tip 1 : Resume should be short and keep it under 1 page.
Tip 2 : Include skills that you're 100% confident in.
Tip 3 : Highlight your internships and projects section appropriately

Final outcome of the interviewRejected

Skills evaluated in this interview

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

I applied via Approached by Company and was interviewed in May 2024. There was 1 interview round.

Round 1 - One-on-one 

(2 Questions)

  • Q1. How is GIL and how python handle multi threading
  • Ans. 

    GIL stands for Global Interpreter Lock in Python, which limits execution of multiple threads at once.

    • GIL is a mutex that protects access to Python objects, preventing multiple threads from executing Python bytecodes at once.

    • Due to GIL, Python threads are not suitable for CPU-bound tasks but are still useful for I/O-bound tasks.

    • To handle multi-threading in Python, one can use multiprocessing module or asynchronous progr...

  • Answered by AI
  • Q2. Explain How React works under the hood.
  • Ans. 

    React uses a virtual DOM to efficiently update the actual DOM based on changes in state or props.

    • React creates a virtual DOM representation of the actual DOM.

    • When state or props change, React compares the virtual DOM with the actual DOM to determine the minimal set of changes needed.

    • React then updates the actual DOM efficiently to reflect the changes.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Deep understanding of technology you apply for

Skills evaluated in this interview

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

I applied via Campus Placement and was interviewed before Oct 2022. There were 4 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 Resume tips
Round 2 - Aptitude Test 

60 min normal apptitude question

Round 3 - Technical 

(2 Questions)

  • Q1. What is the difference between encapsulation and abstraction, sql query 2nd highest salary, what is inheritance
  • Q2. Tell me about project what is oops
Round 4 - Technical 

(2 Questions)

  • Q1. Normal question related to project
  • Q2. He asked about me stock market

Interview Preparation Tips

Interview preparation tips for other job seekers - cleaar your basics in oops , dbms

I applied via Naukri.com and was interviewed in Aug 2022. There were 2 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 Resume tips
Round 2 - Aptitude Test 

Aptitude question. Included basic english nd coding and topic of group discussion .

Interview Preparation Tips

Topics to prepare for EXL Service Software Developer interview:
  • OOPS
  • HTML
  • CSS
  • Bootstrap
  • Javascript
Interview preparation tips for other job seekers - Please their recuriment discloses fast .
Contribute & help others!
anonymous
You can choose to be anonymous

Greyb Interview FAQs

How many rounds are there in Greyb Cakephp Developer interview?
Greyb interview process usually has 3 rounds. The most common rounds in the Greyb interview process are HR, Technical and Behavioral.
What are the top questions asked in Greyb Cakephp Developer interview?

Some of the top questions asked at the Greyb Cakephp Developer interview -

  1. Types of indexes in mysql, storage engines, what are different query optimizati...read more
  2. Some OOPS concepts like what are abstract classes, interfaces, static methods, ...read more
  3. Questions related to some coding samples like "Write a code for finding a numbe...read more

Recently Viewed

PHOTOS

InsuranceDekho

3 office photos

LIST OF COMPANIES

Credit Bajaar

Overview

INTERVIEWS

Odoo

No Interviews

LIST OF COMPANIES

Discover companies

Find best workplace

INTERVIEWS

ICICI Bank

No Interviews

INTERVIEWS

Buyhatke

5.6k top interview questions

INTERVIEWS

Prodesk

No Interviews

INTERVIEWS

Genpact

No Interviews

INTERVIEWS

Prodesk

No Interviews

INTERVIEWS

CGS

No Interviews

Tell us how to improve this page.

Greyb Cakephp Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

EXL Service Interview Questions
3.7
 • 739 Interviews
S&P Global Interview Questions
4.1
 • 276 Interviews
Mu Sigma Interview Questions
2.6
 • 229 Interviews
Access Healthcare Interview Questions
3.9
 • 207 Interviews
Crisil Interview Questions
3.6
 • 186 Interviews
Straive Interview Questions
3.4
 • 174 Interviews
AGS Health Interview Questions
4.0
 • 158 Interviews
Indegene Interview Questions
3.4
 • 151 Interviews
CorroHealth Interview Questions
3.3
 • 145 Interviews
View all
Research Analyst
95 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Senior Research Analyst
32 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Software Developer
11 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Patent Analyst
8 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Market Analyst
6 salaries
unlock blur

₹0 L/yr - ₹0 L/yr

Explore more salaries
Compare Greyb with

EXL Service

3.7
Compare

Access Healthcare

3.9
Compare

S&P Global

4.1
Compare

AGS Health

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