Upload Button Icon Add office photos

Filter interviews by

TechGig Senior PHP Developer Interview Questions and Answers

Updated 4 Dec 2024

TechGig Senior PHP Developer Interview Experiences

1 interview found

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

I applied via Company Website and was interviewed in Nov 2024. There was 1 interview round.

Round 1 - Technical 

(3 Questions)

  • Q1. OOPS concepts in PHP
  • Q2. Laravel Framework related questions
  • Q3. In php session life cycle?

Interview Preparation Tips

Interview preparation tips for other job seekers - First of all you've to clear PHP core concepts and Laravel framework related questions.

Interview questions from similar companies

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

I was interviewed in Dec 2024.

Round 1 - Technical 

(6 Questions)

  • Q1. Implement a custom stack that allows fetching the minimum element in constant time, O(1).
  • Q2. How can one create an immutable class named Employee with fields for name and hobbies defined as List?
  • Q3. What changes are required in the Employee class to use it as a key for a HashMap?
  • Q4. What is the implementation of the singleton design pattern?
  • Q5. Different ways to create a thread
  • Q6. What are the SOLID principles in software design, and can you provide examples for each?
Round 2 - Technical 

(5 Questions)

  • Q1. What is the concept of Object-Oriented Programming (OOP) and can you provide an example?
  • Q2. How do threads communicate with each other in Java?
  • Q3. Write a program to reverse a linked list.
  • Q4. What is the difference between string literals and the string pool?
  • Q5. What is the program to print the 90-degree rotated view of a 2D array?

Interview Preparation Tips

Interview preparation tips for other job seekers - Concentrate on the fundamental aspects of Java and Spring Boot.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

Hackathon on chatbot development website

Round 2 - Technical 

(2 Questions)

  • Q1. OOPS basics like shallow copy deep copy
  • Q2. Sorting techniques and psuedo code
Round 3 - HR 

(2 Questions)

  • Q1. Questions on projects
  • Q2. Introduction and insights of comapny
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(3 Questions)

  • Q1. What is JWT Authentication
  • Q2. Design Patterns
  • Q3. Different Types of Routing in MVC
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Group Discussion 

Technology advantage or not

Round 2 - Aptitude Test 

All aptitude topics,logical reasoning

Round 3 - Technical 

(2 Questions)

  • Q1. Oops,2 coding questions
  • Q2. Palindrome,even number
Round 4 - HR 

(2 Questions)

  • Q1. What do you know
  • Q2. Do you have any questions

Interview Preparation Tips

Interview preparation tips for other job seekers - Similar to tcs,infosys pattern
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Coding Test 

There were 3 coding questions of moderate difficulty.

Round 2 - One-on-one 

(2 Questions)

  • Q1. Code transpose of matrix
  • Ans. 

    Transpose a matrix by swapping rows with columns

    • Iterate through each row and column and swap the elements

    • Create a new matrix with swapped rows and columns

    • Ensure the new matrix has the correct dimensions

  • Answered by AI
  • Q2. Implement swap method.
  • Ans. 

    Implement a swap method for two variables.

    • Create a temporary variable to store the value of one variable.

    • Assign the value of the second variable to the first variable.

    • Assign the value of the temporary variable to the second variable.

  • Answered by AI
Round 3 - Technical 

(3 Questions)

  • Q1. Depth of a binary tree
  • Ans. 

    The depth of a binary tree is the number of edges on the longest path from the root node to a leaf node.

    • Depth of a binary tree can be calculated recursively by finding the maximum depth of the left and right subtrees and adding 1.

    • The depth of a binary tree with only one node (the root) is 0.

    • Example: For a binary tree with root node A, left child B, and right child C, the depth would be 1.

  • Answered by AI
  • Q2. Middle of linked list.
  • Ans. 

    To find the middle element of a linked list, use two pointers - one moving at double the speed of the other.

    • Use two pointers - slow and fast, with fast moving at double the speed of slow.

    • When fast reaches the end of the list, slow will be at the middle element.

  • Answered by AI
  • Q3. Design book my show
Round 4 - HR 

(2 Questions)

  • Q1. Why do you want to join hashedin.
  • Ans. 

    I want to join Hashedin because of its reputation for innovative projects and collaborative work environment.

    • Reputation for innovative projects

    • Collaborative work environment

    • Opportunities for growth and learning

  • Answered by AI
  • Q2. Challenges faced in my previous internship.
  • Ans. 

    Managing tight deadlines and learning new technologies were the main challenges faced in my previous internship.

    • Meeting tight project deadlines

    • Adapting to new technologies quickly

    • Working in a fast-paced environment

    • Collaborating with team members effectively

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Not hard. Be calm and prepare. Prepare cse fundamentals as well.

Skills evaluated in this interview

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

(3 Questions)

  • Q1. Explain exceptional handling
  • Ans. 

    Exception handling is a mechanism to handle runtime errors in a program.

    • Exception handling helps in gracefully handling unexpected errors in a program.

    • It prevents the program from crashing and allows for proper error logging and recovery.

    • Commonly used keywords in exception handling are try, catch, finally, and throw.

    • Example: try { // code that may throw an exception } catch(Exception ex) { // handle the exception }

  • Answered by AI
  • Q2. Explain difference between abstract and interfaces
  • Ans. 

    Abstract classes can have implementation details while interfaces cannot.

    • Abstract classes can have both abstract and non-abstract methods, while interfaces can only have abstract methods.

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

    • Abstract classes can have constructors, fields, and properties, while interfaces cannot.

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

  • Answered by AI
  • Q3. One coding question on arrays
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are the BluePrism best practices
  • Ans. 

    BluePrism best practices include following naming conventions, modular design, exception handling, and version control.

    • Follow consistent naming conventions for objects and processes

    • Design processes in a modular way for reusability and maintainability

    • Implement robust exception handling to manage errors effectively

    • Use version control to track changes and collaborate with team members

  • Answered by AI
  • Q2. How to spy the elements in Surface Automation
  • Ans. 

    To spy elements in Surface Automation, use the UI Explorer tool to identify and select the elements on the screen.

    • Use UI Explorer tool to spy elements

    • Identify and select elements on the screen

    • Verify properties and attributes of elements

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(3 Questions)

  • Q1. Opps concept in php
  • Q2. Orm in laravel and explain
  • Q3. Write SQL query for thirst highest salary from employees table

Interview Preparation Tips

Interview preparation tips for other job seekers - Please prepare basic concepts very well
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Past project related questions
  • Q2. Python and sql queries
Round 2 - Coding Test 

Waiting for l2 round

TechGig Interview FAQs

How many rounds are there in TechGig Senior PHP Developer interview?
TechGig interview process usually has 1 rounds. The most common rounds in the TechGig interview process are Technical.
What are the top questions asked in TechGig Senior PHP Developer interview?

Some of the top questions asked at the TechGig Senior PHP Developer interview -

  1. Laravel Framework related questi...read more
  2. In php session life cyc...read more
  3. OOPS concepts in ...read more

Tell us how to improve this page.

TechGig Senior PHP Developer Interview Process

based on 1 interview

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

NeoSOFT Interview Questions
4.0
 • 260 Interviews
Episource Interview Questions
3.9
 • 221 Interviews
FactSet Interview Questions
3.9
 • 207 Interviews
Xoriant Interview Questions
4.1
 • 180 Interviews
FirstCry Interview Questions
3.7
 • 163 Interviews
Indium Software Interview Questions
4.1
 • 161 Interviews
Razorpay Interview Questions
3.6
 • 149 Interviews
Wissen Technology Interview Questions
3.9
 • 147 Interviews
ThoughtWorks Interview Questions
3.9
 • 145 Interviews
View all
Product Specialist
4 salaries
unlock blur

₹4 L/yr - ₹5.6 L/yr

Zonal Sales Manager
4 salaries
unlock blur

₹24 L/yr - ₹28 L/yr

Zonal Manager
4 salaries
unlock blur

₹24 L/yr - ₹28 L/yr

Explore more salaries
Compare TechGig with

HackerEarth

4.3
Compare

HackerRank

4.4
Compare

CodeChef

3.2
Compare

GeeksForGeeks

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