Upload Button Icon Add office photos

Filter interviews by

Web Digital Mantra Interview Questions and Answers

Updated 16 Mar 2025
Popular Designations

6 Interview questions

A Laravel Developer was asked 3mo ago
Q. What is the difference between an abstract class and an interface?
Ans. 

Abstract classes can have both abstract and concrete methods, while interfaces can only have abstract methods.

  • Abstract classes can have properties and methods with implementations, while interfaces cannot have any method implementations.

  • A class can extend only one abstract class but can implement multiple interfaces.

  • Abstract classes can have access modifiers (public, protected, private), whereas all methods in an ...

View all Laravel Developer interview questions
A Laravel Developer was asked 3mo ago
Q. What is the difference between a unique key and an index in SQL?
Ans. 

Unique keys ensure data integrity by preventing duplicate values, while indexes improve query performance.

  • A unique key constraint ensures that all values in a column are different. Example: A user email column should be unique.

  • An index is a database structure that improves the speed of data retrieval operations on a database table.

  • You can have multiple indexes on a table, but only one unique key constraint per col...

View all Laravel Developer interview questions
A Laravel Developer was asked 3mo ago
Q. What are Artisan commands and jobs in Laravel?
Ans. 

Artisan commands are built-in command-line tools in Laravel, while jobs are tasks queued for background processing.

  • Artisan commands can be created using 'php artisan make:command CommandName'.

  • Common Artisan commands include 'php artisan migrate' for database migrations.

  • Jobs in Laravel are created using 'php artisan make:job JobName' for handling queued tasks.

  • Jobs can be dispatched using 'dispatch(new JobName())' t...

View all Laravel Developer interview questions
A Laravel Developer was asked 3mo ago
Q. What are traits?
Ans. 

Traits in Laravel are a mechanism for code reuse, allowing developers to include methods in multiple classes without inheritance.

  • Traits allow you to group functionality in a reusable way.

  • They can be used to include methods in multiple classes, avoiding code duplication.

  • Example: A trait 'Loggable' can be used in multiple classes to add logging functionality.

  • Traits can also contain properties, but they cannot be ins...

View all Laravel Developer interview questions
A Laravel Developer was asked 3mo ago
Q. What is the method for executing an Artisan command from a controller in Laravel?
Ans. 

In Laravel, you can execute Artisan commands from a controller using the Artisan facade or the command bus.

  • Using Artisan Facade: You can call Artisan commands directly using the Artisan facade. Example: `Artisan::call('command:name');`

  • Passing Parameters: You can pass parameters to the command. Example: `Artisan::call('command:name', ['param' => 'value']);`

  • Getting Output: To get the output of the command, use `A...

View all Laravel Developer interview questions
A Laravel Web Developer was asked
Q. What is the seeder. What is the purpose of this one.
Ans. 

Seeder is a Laravel feature that allows populating database tables with dummy data.

  • Seeder is used to fill the database with test data.

  • It is helpful for testing and development purposes.

  • Seeder can be used to generate random data for tables.

  • It can also be used to create relationships between tables.

  • Seeder files are stored in the database/seeds directory.

View all Laravel Web Developer interview questions

Web Digital Mantra Interview Experiences

2 interviews found

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

I appeared for an interview in Sep 2024, where I was asked the following questions.

  • Q1. What are Artisan commands and jobs in Laravel?
  • Ans. 

    Artisan commands are built-in command-line tools in Laravel, while jobs are tasks queued for background processing.

    • Artisan commands can be created using 'php artisan make:command CommandName'.

    • Common Artisan commands include 'php artisan migrate' for database migrations.

    • Jobs in Laravel are created using 'php artisan make:job JobName' for handling queued tasks.

    • Jobs can be dispatched using 'dispatch(new JobName())' to run...

  • Answered by AI
  • Q2. What is the method for executing an Artisan command from a controller in Laravel?
  • Ans. 

    In Laravel, you can execute Artisan commands from a controller using the Artisan facade or the command bus.

    • Using Artisan Facade: You can call Artisan commands directly using the Artisan facade. Example: `Artisan::call('command:name');`

    • Passing Parameters: You can pass parameters to the command. Example: `Artisan::call('command:name', ['param' => 'value']);`

    • Getting Output: To get the output of the command, use `Artisa...

  • Answered by AI
  • Q3. What is the difference between unique key and index in SQL?
  • Ans. 

    Unique keys ensure data integrity by preventing duplicate values, while indexes improve query performance.

    • A unique key constraint ensures that all values in a column are different. Example: A user email column should be unique.

    • An index is a database structure that improves the speed of data retrieval operations on a database table.

    • You can have multiple indexes on a table, but only one unique key constraint per column.

    • U...

  • Answered by AI
  • Q4. What are traits?
  • Ans. 

    Traits in Laravel are a mechanism for code reuse, allowing developers to include methods in multiple classes without inheritance.

    • Traits allow you to group functionality in a reusable way.

    • They can be used to include methods in multiple classes, avoiding code duplication.

    • Example: A trait 'Loggable' can be used in multiple classes to add logging functionality.

    • Traits can also contain properties, but they cannot be instanti...

  • Answered by AI
  • Q5. What is the difference between abstract class and interface?
  • Ans. 

    Abstract classes can have both abstract and concrete methods, while interfaces can only have abstract methods.

    • Abstract classes can have properties and methods with implementations, while interfaces cannot have any method implementations.

    • A class can extend only one abstract class but can implement multiple interfaces.

    • Abstract classes can have access modifiers (public, protected, private), whereas all methods in an inter...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Maintain your confidence, continue your learning journey, and select an organization that values your contributions.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed in Sep 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 tips
Round 2 - Assignment 

Orange Seller where I've to create a login system and one crud operations from where seller can add the product and change the price at any time.

Round 3 - Behavioral 

(2 Questions)

  • Q1. He said I hope you will feel happy to work with us.
  • Q2. What is the seeder. What is the purpose of this one.
  • Ans. 

    Seeder is a Laravel feature that allows populating database tables with dummy data.

    • Seeder is used to fill the database with test data.

    • It is helpful for testing and development purposes.

    • Seeder can be used to generate random data for tables.

    • It can also be used to create relationships between tables.

    • Seeder files are stored in the database/seeds directory.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - You should have knowledge of Laravel command like how to migrate, rollback and seed,. Also you should have knowledge of Ajax, jQuery and javascript. And you should have capability to design the database and create api as per requirement.

Top trending discussions

View All
Interview Tips & Stories
1w
toobluntforu
·
works at
Cvent
Can speak English, can’t deliver in interviews
I feel like I can't speak fluently during interviews. I do know english well and use it daily to communicate, but the moment I'm in an interview, I just get stuck. since it's not my first language, I struggle to express what I actually feel. I know the answer in my head, but I just can’t deliver it properly at that moment. Please guide me
Got a question about Web Digital Mantra?
Ask anonymously on communities.

Interview questions from similar companies

I appeared for an interview before Jun 2016.

Interview Questionnaire 

1 Question

  • Q1. Java related questions on Oops concept and Multithreading

Interview Preparation Tips

Round: Test
Experience: Simple aptitude and reasoning questions little java based programming
Tips: Basic programming knowledge and good aptitude
Duration: 1 hour
Total Questions: 60

Round: Technical Interview
Experience: Normal questions on Java, basic programming questions like reverse no. , String related and logical coding
Tips: What u mentioned on your resume go through that only, they will not ask apart from your resume

Skills: How Well You Are Able To Communicate What You Wanted To Tell, Programming
College Name: SRCEM

I appeared for an interview before Aug 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments

Round: Test
Experience: I am vinothkumar from Dindugal, I was studied computer engineering in Madurai institute of engineering and technology at sivagangai, I am quality controller in RR DONNELLY at Chennai, my experience 2 years, my family staying in native, my father palanichami he is a former, my mother tamilselvi she is home maker and my one yelder brother Vijayakumar he is driver, I am interested area software engineer, my hobbies are listening music, reading book and news paper, playing and watching cricket
Tips: No comments
Total Questions: 15

Round: Test
Experience: See my mentality
Tips: No comments
Duration: 45 minutes

Round: Group Discussion
Experience: Communication
Tips: No comments

Skills: Communication And Confidence

I appeared for an interview before May 2016.

Interview Preparation Tips

College Name: GPREC kurnool

I applied via Internshala and was interviewed in Jun 2019. There were 4 interview rounds.

Interview Questionnaire 

1 Question

  • Q1. Why do you want to work at ambition box?
  • Ans. 

    I want to work at Ambition Box because of its innovative work culture and opportunities for growth.

    • Innovative work culture

    • Opportunities for growth

    • Positive company reputation

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I applied through internshala, and got shortlisted in a few days. Then i had a telephonic interview. After that, there was one F2F interview in the company office. in couple of days, i was selected and received the offer letter.

I applied via Naukri.com and was interviewed in Jun 2019. There were 3 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. 1) Tell About Yourself
  • Ans. 

    I am a motivated and enthusiastic individual with a strong passion for learning and gaining practical experience in the field of [field].

    • I am currently pursuing a degree in [field] at [university].

    • I have completed internships at [company] and [company], where I gained valuable skills in [specific skills].

    • I am proficient in [programming languages/tools] and have experience in [relevant experience].

    • I am a quick learner a...

  • Answered by AI
  • Q2. What are your future plans?
  • Ans. 

    I plan to gain valuable experience and skills through this internship and use it as a stepping stone for my future career.

    • I plan to learn as much as possible during this internship and apply the knowledge in my future endeavors.

    • I aim to develop strong professional relationships and network with industry experts.

    • I intend to explore different areas within the company to gain a well-rounded understanding of the business.

    • I...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - 1)Speak confidently.
2)Give honest answers.
3)Have a full knowledge about the company and your role in it.
Are these interview questions helpful?

I appeared for an interview in Mar 2017.

Interview Questionnaire 

5 Questions

  • Q1. Related to semiconductors, processors etc. were asked.
  • Q2. Strength
  • Q3. Weaknesses
  • Q4. Hobbies
  • Q5. If there are 200 fishes in an aquarium. 99% are red. How many fishes have to be removed to make the red fishes 98 % in the aquarium?
  • Ans. 

    To make the red fishes 98%, 50 fishes have to be removed from the aquarium.

    • Calculate 1% of 200 fishes to find the number of red fishes.

    • Subtract the number of red fishes from 200 to find the number of non-red fishes.

    • Calculate 2% of the total number of fishes to find the desired number of red fishes.

    • Subtract the desired number of red fishes from the current number of red fishes to find the number of fishes to be removed.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 40 aptitude questions of variable difficulty. More questions revolved around topics like time and work, distance, speed, time, profit loss, age etc.
Tips: A regular and prior preparation will go a long way in determining a good test score.
Use tricks to solve the questions and calculations should be fast.
Duration: 30 minutes
Total Questions: 40

Round: Test
Experience: The questions weren't that tough when it came to programming. An example would be conversion of temperature from Celsius to Fahrenheit and vice versa. This was a question in my paper. So I'm hoping the difficulty would be more or less the same.
Tips: Do certified programming courses. They help you a lot in cracking good jobs.
Duration: 45 minutes
Total Questions: 3

Round: Puzzle Interview
Tips: This can be tough if you can't imagine scenarios and situations. So make sure you inculcate critical problem solving thinking in your everyday life. I feel that's the best way to do things in this round.

Round: Technical Interview
Experience: This was a short interview so not much happened.
Tips: Whatever you do just know your stuff properly.

Round: HR Interview
Experience: It was a simple interview. Basic questions and their basic answers helped me get through it.
Tips: The tip would be to stay positive in your approach while answering the questions

Skills: Technical Skill, Interpersonal Communication, Aptitude
College Name: VIT Vellore

I appeared for an interview in Mar 2017.

Interview Questionnaire 

5 Questions

  • Q1. Related to semiconductors, processors etc. were asked.
  • Q2. Weaknesses
  • Q3. Strength
  • Q4. Hobby
  • Q5. If there are 200 fishes in an aquarium. 99% are red. How many fishes have to be removed to make the red fishes 98 % in the aquarium?
  • Ans. 

    To make the red fishes 98%, 50 fishes have to be removed from the aquarium.

    • Calculate 1% of 200 fishes to find out how many fishes represent 1%.

    • Multiply the result by 2 to find out how many fishes represent 2%.

    • Subtract the result from 200 to find out how many fishes represent 98%.

  • Answered by AI

Interview Preparation Tips

Round: Test
Experience: There were 40 aptitude questions of variable difficulty. More questions revolved around topics like time and work, distance, speed, time, profit loss, age etc.
Tips: A regular and prior preparation will go a long way in determining a good test score.
Use tricks to solve the questions and calculations should be fast.
Duration: 30 minutes
Total Questions: 40

Round: Test
Experience: The questions weren't that tough when it came to programming. An example would be conversion of temperature from Celsius to Fahrenheit and vice versa. This was a question in my paper. So I'm hoping the difficulty would be more or less the same.
Tips: Do certified programming courses. They help you a lot in cracking good jobs.
Duration: 45 minutes
Total Questions: 3

Round: Puzzle Interview
Tips: This can be tough if you can't imagine scenarios and situations. So make sure you inculcate critical problem solving thinking in your everyday life. I feel that's the best way to do things in this round.

Round: Technical Interview
Experience: This was a short interview so not much happened.
Tips: Whatever you do just know your stuff properly.

Round: HR Interview
Experience: It was a simple interview. Basic questions and their basic answers helped me get through it.
Tips: The tip would be to stay positive in your approach while answering the questions

Skills: Technical Skill, Interpersonal Communication, Aptitude
College Name: VIT Vellore

I appeared for an interview before May 2016.

Interview Preparation Tips

Round: Resume Shortlist
Experience: I applied for an internship in your company through internshala.com . I got an email telling me that I was shortlisted it and now I have to fill this in order to move to the next round

Web Digital Mantra Interview FAQs

How many rounds are there in Web Digital Mantra interview?
Web Digital Mantra interview process usually has 3 rounds. The most common rounds in the Web Digital Mantra interview process are Resume Shortlist, Assignment and Behavioral.
How to prepare for Web Digital Mantra 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 Web Digital Mantra. The most common topics and skills that interviewers at Web Digital Mantra expect are Web Development, IT Services, Digital Marketing, Intellectual Property and Backend.
What are the top questions asked in Web Digital Mantra interview?

Some of the top questions asked at the Web Digital Mantra interview -

  1. What is the seeder. What is the purpose of this o...read more
  2. What is the difference between unique key and index in S...read more
  3. What is the method for executing an Artisan command from a controller in Larave...read more

Tell us how to improve this page.

Overall Interview Experience Rating

3.5/5

based on 2 interview experiences

Difficulty level

Easy 50%
Moderate 50%

Duration

Less than 2 weeks 100%
View more

Interview Questions from Similar Companies

AmbitionBox Interview Questions
4.8
 • 148 Interviews
HCL Infosystems Interview Questions
3.9
 • 144 Interviews
Webdew Interview Questions
4.5
 • 108 Interviews
Data Entry Interview Questions
4.2
 • 107 Interviews
HyScaler Interview Questions
4.5
 • 104 Interviews
View all

Web Digital Mantra Reviews and Ratings

based on 27 reviews

3.0/5

Rating in categories

3.1

Skill development

2.8

Work-life balance

2.6

Salary

2.7

Job security

2.6

Company culture

2.6

Promotions

2.6

Work satisfaction

Explore 27 Reviews and Ratings
Network Engineer

Bangalore / Bengaluru

15-16 Yrs

Not Disclosed

ServiceNow Architect

Bangalore / Bengaluru

9-14 Yrs

Not Disclosed

Project Manager

Mumbai

10-12 Yrs

Not Disclosed

Explore more jobs
SEO Analyst
11 salaries
unlock blur

₹2.4 L/yr - ₹4.3 L/yr

Web Developer
7 salaries
unlock blur

₹2 L/yr - ₹2.4 L/yr

Android Developer
6 salaries
unlock blur

₹2 L/yr - ₹3.6 L/yr

Backend Developer
5 salaries
unlock blur

₹1 L/yr - ₹3 L/yr

SEO Executive
5 salaries
unlock blur

₹1.8 L/yr - ₹3.5 L/yr

Explore more salaries
Compare Web Digital Mantra with

Marpu Foundation

4.8
Compare

Huawei Technologies

4.0
Compare

HCL Infosystems

3.9
Compare

Z X Learning

4.4
Compare
write
Share an Interview