Upload Button Icon Add office photos

Filter interviews by

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
  • 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

Interview questions from similar companies

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

I applied via Recruitment Consulltant and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Assignment 

They put test on SQL queries and theory part and this contains some basic apti test and verbal.

Interview Preparation Tips

Topics to prepare for Cotiviti SQL Developer interview:
  • SQL
  • Aptitude
  • Verbal
Interview preparation tips for other job seekers - Just prepare well. Be strong in basic SQL and basic apti. The questions might be easy but confusing as well.
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Html/css based questions.
  • Q2. Write css to make a backdrop.
  • Ans. 

    Use CSS to create a backdrop for a webpage.

    • Use the 'background' property to set the color or image of the backdrop.

    • Set the 'position' property to 'fixed' to ensure the backdrop covers the entire viewport.

    • Adjust the 'z-index' property to ensure the backdrop is behind other elements.

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in May 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. RESTful API Services
  • Q2. Questions on ES6 -> Generator, Weakset
  • Q3. Knowledge on Testing
  • Q4. Basic Angular, CSS questions
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Naukri.com and was interviewed in Mar 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. Find 3rd highest salary
  • Ans. 

    Use SQL query with ORDER BY and LIMIT to find 3rd highest salary

    • Use ORDER BY clause to sort salaries in descending order

    • Use LIMIT 2,1 to skip first two highest salaries and get the third highest salary

  • Answered by AI
  • Q2. Pivoting and unpivoting in SQL
  • Ans. 

    Pivoting and unpivoting are techniques used in SQL to transform data from rows to columns and vice versa.

    • Pivoting involves rotating rows into columns, typically used to summarize data.

    • Unpivoting involves rotating columns into rows, typically used to normalize data.

    • Pivoting can be done using the PIVOT keyword in SQL, while unpivoting can be done using the UNPIVOT keyword.

  • Answered by AI
  • Q3. Difference in rank and dense rank
  • Ans. 

    Rank assigns unique rank to each row, while dense rank allows for ties in ranking.

    • Rank leaves gaps in ranking sequence, while dense rank does not

    • Rank(1, 2, 2, 4) = 1, 2, 3, 4

    • Dense Rank(1, 2, 2, 4) = 1, 2, 2, 3

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Ask clearly on the number of rounds , Initially they said there will be two round but later they did 4 rounds , quite unprofessional way of taking interviews they will just call you 1 goir before interview and ask to join stating that it will managerial round but when you will go there you will see actually it's a technical round again

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Explain K8s Architecture
  • Ans. 

    K8s Architecture refers to the structure and components of Kubernetes, an open-source container orchestration platform.

    • Kubernetes follows a master-slave architecture with a master node and multiple worker nodes.

    • Master node components include API server, scheduler, controller manager, and etcd.

    • Worker nodes run pods which contain containers.

    • Kubernetes uses labels and selectors to manage and organize resources.

    • K8s archite...

  • Answered by AI
  • Q2. Explain Jenkins pipeline
  • Ans. 

    Jenkins pipeline is a set of plugins that allow for the automation of building, testing, and deploying code.

    • Jenkins pipeline is defined as a suite of plugins that support implementing and integrating continuous delivery pipelines.

    • It allows for defining the entire build process as code, which can be version controlled and shared.

    • Pipeline stages can include building, testing, deploying, and other tasks, with each stage b...

  • Answered by AI
Round 2 - HR 

(2 Questions)

  • Q1. What you know about Pharma industry?
  • Q2. Pharma in United States

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Easy questions according to the role.

Round 2 - One-on-one 

(1 Question)

  • Q1. Interview was for 30 min
Round 3 - HR 

(1 Question)

  • Q1. Basic HR Questions like Introduce yourself etc

Interview Preparation Tips

Interview preparation tips for other job seekers - Study according to the job requirements.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - HR 

(2 Questions)

  • Q1. Tell me soothing about yourself
  • Q2. Why do you want to join us
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 - Technical 

(1 Question)

  • Q1. What is php session & how it works?
  • Ans. 

    PHP session is a way to store user data on the server and maintain it across multiple pages.

    • Session data is stored on the server and identified by a unique session ID.

    • Session ID is usually stored in a cookie on the user's browser.

    • Session data can be accessed and modified across multiple pages.

    • Session can be started using the session_start() function.

    • Session can be destroyed using the session_destroy() function.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep basic fundamentals cleared in the language you are going to interview.

Skills evaluated in this interview

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

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

Round 1 - Technical 

(2 Questions)

  • Q1. Js questions and 2 coding questions
  • Q2. Questions on angular, html and css

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

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
 • 724 Interviews
S&P Global Interview Questions
4.2
 • 269 Interviews
Mu Sigma Interview Questions
2.6
 • 226 Interviews
Access Healthcare Interview Questions
3.9
 • 200 Interviews
Crisil Interview Questions
3.7
 • 183 Interviews
Straive Interview Questions
3.4
 • 167 Interviews
AGS Health Interview Questions
4.0
 • 158 Interviews
Indegene Interview Questions
3.4
 • 150 Interviews
CorroHealth Interview Questions
3.3
 • 142 Interviews
View all
Research Analyst
94 salaries
unlock blur

₹5 L/yr - ₹10.8 L/yr

Senior Research Analyst
28 salaries
unlock blur

₹8 L/yr - ₹16 L/yr

Software Developer
11 salaries
unlock blur

₹6 L/yr - ₹10 L/yr

Patent Analyst
7 salaries
unlock blur

₹5 L/yr - ₹6.5 L/yr

Market Analyst
6 salaries
unlock blur

₹4 L/yr - ₹10 L/yr

Explore more salaries
Compare Greyb with

EXL Service

3.7
Compare

S&P Global

4.2
Compare

Mu Sigma

2.6
Compare

Access Healthcare

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