Upload Button Icon Add office photos

Filter interviews by

Vide Technologies PHP Developer Interview Questions and Answers

Updated 14 Mar 2024

Vide Technologies PHP Developer Interview Experiences

1 interview found

PHP Developer Interview Questions & Answers

user image Anonymous

posted on 14 Mar 2024

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

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

Round 1 - Technical 

(4 Questions)

  • Q1. What are arrays and objects
  • Ans. 

    Arrays and objects are data structures used in programming to store multiple values or properties.

    • Arrays are ordered collections of values accessed by index.

    • Objects are collections of key-value pairs where values are accessed by keys.

    • Example of array: $colors = ['red', 'blue', 'green'];

    • Example of object: $person = ['name' => 'John', 'age' => 30];

  • Answered by AI
  • Q2. Types of arrays with examples
  • Ans. 

    Types of arrays include indexed arrays, associative arrays, and multidimensional arrays.

    • Indexed arrays: numerically indexed arrays where each element is assigned a number starting from 0. Example: ['apple', 'banana', 'orange']

    • Associative arrays: arrays where each element is assigned a specific key. Example: ['fruit1' => 'apple', 'fruit2' => 'banana']

    • Multidimensional arrays: arrays within arrays. Example: [['apple', 'ba...

  • Answered by AI
  • Q3. MySQL query for selecting data with employee name, code and it's manager having manager_id as foreign key
  • Ans. 

    Use a MySQL query to select data with employee name, code, and their manager using manager_id as foreign key.

    • Use JOIN to connect the employee and manager tables based on the manager_id foreign key

    • Select the employee name, code, and manager's name using appropriate aliases

    • Make sure to specify the table names and columns correctly in the query

  • Answered by AI
  • Q4. Not using array function print [3,4,5,1,2] if my number of loops to iterate is 3. Given array is [1,2,3,4,5]. 1. It should be dynamic if I change number of loops to 1 then it should print [5,1,2,3,4] 2. If...
  • Ans. 

    Rotate array elements based on number of loops specified.

    • Create a new array by slicing the original array based on the number of loops specified.

    • Concatenate the sliced array with the remaining elements of the original array.

    • Handle edge cases where the number of loops is greater than the array length by using modulo operator.

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Vide Technologies PHP Developer interview:
  • Arrays
  • MySQL
  • PHP

Skills evaluated in this interview

Top trending discussions

View All
Interview Tips & Stories
1w (edited)
a team lead
Why are women still asked such personal questions in interview?
I recently went for an interview… and honestly, m still trying to process what just happened. Instead of being asked about my skills, experience, or how I could add value to the company… the questions took a totally unexpected turn. The interviewer started asking things like When are you getting married? Are you engaged? And m sure, if I had said I was married, the next question would’ve been How long have you been married? What does my personal life have to do with the job m applying for? This is where I felt the gender discrimination hit hard. These types of questions are so casually thrown at women during interviews but are they ever asked to men? No one asks male candidates if they’re planning a wedding or how old their kids are. So why is it okay to ask women? Can we please stop normalising this kind of behaviour in interviews? Our careers shouldn’t be judged by our relationship status. Period.
Got a question about Vide Technologies?
Ask anonymously on communities.

Interview questions from similar companies

Interview Questionnaire 

1 Question

  • Q1. Tell me about software system

PHP Developer Interview Questions Asked at Other Companies

asked in Infotech
Q1. What is PHP? PHP (Hypertext Preprocessor) is a server-side script ... read more
Q2. How can we report errors in the log file while working on a core ... read more
asked in Impelsys
Q3. What are the different types of errors in PHP?
Q4. Given an array [1,2,3,4,5], without using array functions, print ... read more
Q5. Write a query to get the 4th highest salary from the employees ta ... read more

I applied via Recruitment Consultant and was interviewed before Oct 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. What is Abstraction
  • Q2. Concept of hiding implementation

Interview Preparation Tips

Interview preparation tips for other job seekers - Not bad, good atmosphere, positive response from staff

I applied via Walk-in and was interviewed before Nov 2021. 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 tips
Round 2 - Typing Test 

(1 Question)

  • Q1. Typing test 30words per minute. 90% accuracy.
Round 3 - HR 

(1 Question)

  • Q1. Personal information, Previous company work, Salary discussion.
Round 4 - Aptitude Test 

General knowledge, Maths questions.

Interview Preparation Tips

Interview preparation tips for other job seekers - English communication is must important, Interviews are easy.

I applied via Recruitment Consultant and was interviewed before Aug 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Oracle advanced level questions

Interview Preparation Tips

Interview preparation tips for other job seekers - One technical round and HR round

I applied via Recruitment Consultant and was interviewed before Sep 2020. There were 3 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Competely on Ibm api connect development

Interview Preparation Tips

Interview preparation tips for other job seekers - It's was very nice and the interview was smooth and the hr process

I applied via Job Portal and was interviewed before May 2020. There was 1 interview round.

Interview Questionnaire 

1 Question

  • Q1. Core Java - String, collections, thread, interface, Spring boot - Annotations, dependency injection, initializer,JPA, Angular - Basic installation, NgModule, AppModule, component, service, selector, init

Interview Preparation Tips

Interview preparation tips for other job seekers - It was good. They took approximately 1.5 hours to complete the interview. Since I am a full stack developer, worked in angular they asked questions from there. In java, they mostly gave some programming check fro. synchronization, multithreading, hibernate configuration, one to one, one to many many to many mapping examples. In database, thry asked to right some queries by giving some table example. Overall it was very good.
Are these interview questions helpful?

I appeared for an interview before Feb 2021.

Round 1 - HR 

(1 Question)

  • Q1. Tell me about yourself.

Interview Preparation Tips

Interview preparation tips for other job seekers - I have 1 years experience in wipro

Interview Questionnaire 

1 Question

  • Q1. Based on programming

I applied via Recruitment Consultant and was interviewed in May 2020. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Just Basic OOP's question, What is Interface, why use them?
  • Ans. 

    An interface defines a contract for classes, specifying methods without implementation, promoting abstraction and flexibility in OOP.

    • Interfaces allow multiple classes to implement the same set of methods, ensuring a consistent API.

    • Example: An interface 'Animal' with methods 'eat()' and 'sleep()' can be implemented by 'Dog' and 'Cat' classes.

    • They enable polymorphism, allowing objects to be treated as instances of their ...

  • Answered by AI
  • Q2. What is Abstract Class?

Interview Preparation Tips

Interview preparation tips for other job seekers - A recruiter found me on Naukari Site the name of the person is Kartik (*****), and then, set up an initial L1 interview with the peers. The initial contact was a phone screen regarding the job location, title, salary, etc. in Banglore after that, he set up the meetings with peers for the interview.

The interview was too good, but one thing which I feel bad Interviewer asked me salary while this is the part of the HR department, so why Interviewer asked me salary during an interview, this is totally not good for any candidate because if the candidate expectation is greater than the interviewer salary then definitely he will not hire that candidate that means.  



After Interview:-

 Then, Kartik HR contact me again to tell that they are willing to offer less salary 14LPA than that was decided
- I said yes, and they asked me joining date
- I provided the next week date itself
- But I never heard back from them afterward.
- I tried to contact Kartik, but he is not willing to reply

Very unprofessional behavior and bad experience. I don't know were they just wasting my time.

Skills evaluated in this interview

Vide Technologies Interview FAQs

How many rounds are there in Vide Technologies PHP Developer interview?
Vide Technologies interview process usually has 1 rounds. The most common rounds in the Vide Technologies interview process are Technical.
How to prepare for Vide Technologies PHP 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 Vide Technologies. The most common topics and skills that interviewers at Vide Technologies expect are CSS, HTML, JQuery, Javascript and PHP.
What are the top questions asked in Vide Technologies PHP Developer interview?

Some of the top questions asked at the Vide Technologies PHP Developer interview -

  1. Not using array function print [3,4,5,1,2] if my number of loops to iterate is ...read more
  2. MySQL query for selecting data with employee name, code and it's manager having...read more
  3. What are arrays and obje...read more

Tell us how to improve this page.

Overall Interview Experience Rating

5/5

based on 1 interview experience

Difficulty level

Moderate 100%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.6
 • 11.1k Interviews
Accenture Interview Questions
3.7
 • 8.7k Interviews
Infosys Interview Questions
3.6
 • 7.9k Interviews
Wipro Interview Questions
3.7
 • 6.1k Interviews
Cognizant Interview Questions
3.7
 • 5.9k Interviews
Amazon Interview Questions
4.0
 • 5.4k Interviews
Capgemini Interview Questions
3.7
 • 5.1k Interviews
Tech Mahindra Interview Questions
3.5
 • 4.2k Interviews
HCLTech Interview Questions
3.5
 • 4.2k Interviews
Genpact Interview Questions
3.7
 • 3.4k Interviews
View all

Vide Technologies PHP Developer Reviews and Ratings

based on 1 review

3.0/5

Rating in categories

4.0

Skill development

2.0

Work-life balance

3.0

Salary

2.0

Job security

4.0

Company culture

1.0

Promotions

3.0

Work satisfaction

Explore 1 Review and Rating
Compare Vide Technologies with

TCS

3.6
Compare

Accenture

3.7
Compare

Wipro

3.7
Compare

Cognizant

3.7
Compare
write
Share an Interview