Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by WebDataGuru Team. If you also belong to the team, you can get access from here

WebDataGuru Verified Tick

Compare button icon Compare button icon Compare
3.2

based on 5 Reviews

Filter interviews by

WebDataGuru Interview Questions and Answers for Experienced

Updated 17 Oct 2023

WebDataGuru Interview Experiences for Experienced

1 interview found

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

I applied via Recruitment Consulltant and was interviewed before Oct 2022. There was 1 interview round.

Round 1 - Technical 

(5 Questions)

  • Q1. Basics of MySQL and laravel
  • Q2. Basics of GIT and server handling
  • Q3. Basics of object oriented coding
  • Q4. Basics of php coding language
  • Q5. Basics of web developement

Interview Preparation Tips

Topics to prepare for WebDataGuru Software Engineer interview:
  • Basics of python
  • Basics of mysql
  • Basics of laravel
  • Basics git
  • Basics of server knowledge

Software Engineer Interview Questions asked at other Companies

Q1. Bridge and torch problem : Four people come to a river in the night. There is a narrow bridge, but it can only hold two people at a time. They have one torch and, because it's night, the torch has to be used when crossing the bridge. Person... read more
View answer (170)

Interview questions from similar companies

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Explain a complex .net core project you have worked on
Round 2 - One-on-one 

(1 Question)

  • Q1. How have you evolved as a technical lead over the course of your career
Round 3 - HR 

(1 Question)

  • Q1. What are your long term career goals
Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. They don't respect people's time
  • Q2. They think they are the GOD.

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join this company.
Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Explain the inter relation between a sales and marketing funnel
  • Ans. 

    Sales and marketing funnels are interconnected processes that guide potential customers from awareness to purchase.

    • Sales funnel focuses on converting leads into customers through direct sales tactics.

    • Marketing funnel focuses on generating awareness and interest in a product or service.

    • Marketing activities feed into the top of the sales funnel by attracting potential customers.

    • Sales activities further qualify and nurtur...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - DONOT JOIN THIS COMPANY NO MATTER HOW MUCH MONEY THEY PAY OR EVEN IF YOU ARE IN DESPERATE NEEDS. The only word I have for the CEO is a psycho. He would randonmly arrange meetings for later hours and night without prior notice and bash the team left right centre without any reason. Once in a meeting, he asked my teammate a question. He said, I want to see the report. R E P O R T. Do you know how to read and write? This was happening at 12:30 am with two of the female teammates still at office and nobody cared about how they will reach hoke so late. They have no vision, no work culture, the CEO will wake up one day ajd hire 50 people and the other day fire 80 people. Why? Just because he can. I was still fortunate enough to work with a good team of lesser people but I never slept peacefully knowing that they can fire me anyday. Tye gujju owner favors his zero skills gujju close knit team members and nobody gives any credit for your hardwork or anything at all. It is just an utter waste of time. Just don’t join!
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Work experience related questions
Round 2 - Technical 

(1 Question)

  • Q1. Excel skills test over worksheet

Dot Interview Questions & Answers

Pratiti Technologies user image Anonymous

posted on 4 Nov 2024

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

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

Round 1 - Coding Test 

Palindrome for set of int array

Interview experience
1
Bad
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. Based on resume
Round 2 - One-on-one 

(1 Question)

  • Q1. Based on resume
Round 3 - HR 

(1 Question)

  • Q1. Basic information
Round 4 - Technical 

(1 Question)

  • Q1. Based on resume
Round 5 - Coding Test 

Scenario questions logical solving

Round 6 - Case Study 

Need to explain about problems solved in previous round

Round 7 - One-on-one 

(1 Question)

  • Q1. Project discussion and basics information

Interview Preparation Tips

Interview preparation tips for other job seekers - One of the worst company no job guarantee. Dont waste your time on attending interview. They will conduct 10 around and reject the candidate easily in last round.
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Dec 2023. There were 3 interview rounds.

Round 1 - HR 

(3 Questions)

  • Q1. Tell me about yourself?
  • Q2. Which technical skill you have?
  • Q3. How many year of Work experience?
Round 2 - Technical 

(5 Questions)

  • Q1. How to call api in angular write the code for this
  • Ans. 

    To call an API in Angular, use HttpClient module to make HTTP requests.

    • Import HttpClientModule in app.module.ts

    • Inject HttpClient in the component/service where API call needs to be made

    • Use HttpClient methods like get(), post(), put(), delete() to make API calls

    • Subscribe to the Observable returned by HttpClient methods to handle the response

  • Answered by AI
  • Q2. Difference between reactive form and template driven form
  • Ans. 

    Reactive forms are more flexible and allow for complex form validation and handling, while template driven forms are simpler and rely on directives in the template.

    • Reactive forms are defined programmatically in the component class using form controls, form groups, and form arrays.

    • Template driven forms are defined in the HTML template using ngModel directive and template variables.

    • Reactive forms offer more control over ...

  • Answered by AI
  • Q3. Write the code for reactive form
  • Ans. 

    Reactive forms in Angular allow for creating and managing forms in a reactive way.

    • Import ReactiveFormsModule in app.module.ts

    • Create form controls using FormBuilder in component

    • Bind form controls to HTML elements using formGroup and formControlName directives

    • Handle form submission and validation using formGroup and formControl directives

  • Answered by AI
  • Q4. How to id or data pass by routing and go to the another page?
  • Ans. 

    You can pass data through routing by using route parameters or query parameters.

    • Use route parameters to pass data directly in the URL, like '/page/:id'

    • Access the passed data in the target component using ActivatedRoute

    • Use query parameters for passing data in the URL, like '/page?id=123'

    • Retrieve query parameters in the target component using ActivatedRoute

  • Answered by AI
  • Q5. New features in angular 17?
  • Ans. 

    Angular 17 introduces new features such as improved performance, enhanced tooling, and updated APIs.

    • Improved performance with faster rendering and reduced bundle sizes

    • Enhanced tooling with better support for debugging and testing

    • Updated APIs for more efficient development and easier integration with other libraries

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. Salary discussion and relocate

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Aptitude Test 

Speed test involving basic aptitude questions

Round 2 - Assignment 

To rearrange 10 sprint items based on priority with explanation

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

I applied via Referral and was interviewed in Jan 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Angle between needle of clock hour hand and minute hand at a particular time . they will definitely ask this question .
  • Ans. 

    The angle between the hour hand and minute hand of a clock at a particular time.

    • The angle between the hour hand and minute hand can be calculated using the formula: angle = 30 * (hour % 12) + 0.5 * minutes

    • If the angle is greater than 180 degrees, subtract it from 360 to get the smaller angle

    • For example, at 3:15, the hour hand is at 97.5 degrees and the minute hand is at 90 degrees, so the angle between them is 7.5 degr

  • Answered by AI
  • Q2. Asked everything from resume

WebDataGuru Interview FAQs

How many rounds are there in WebDataGuru interview for experienced candidates?
WebDataGuru interview process for experienced candidates usually has 2 rounds. The most common rounds in the WebDataGuru interview process for experienced candidates are Resume Shortlist and Technical.
What are the top questions asked in WebDataGuru interview for experienced candidates?

Some of the top questions asked at the WebDataGuru interview for experienced candidates -

  1. Basics of GIT and server handl...read more
  2. Basics of object oriented cod...read more
  3. Basics of MySQL and lara...read more

Tell us how to improve this page.

Interview Questions from Similar Companies

ResMed Interview Questions
3.8
 • 16 Interviews
Paras Cadd Interview Questions
2.4
 • 15 Interviews
View all

WebDataGuru Reviews and Ratings

based on 5 reviews

3.2/5

Rating in categories

2.6

Skill development

2.8

Work-Life balance

2.9

Salary & Benefits

2.6

Job Security

3.2

Company culture

2.7

Promotions/Appraisal

3.0

Work Satisfaction

Explore 5 Reviews and Ratings
Software Engineer
5 salaries
unlock blur

₹1.8 L/yr - ₹4.7 L/yr

PHP Developer
3 salaries
unlock blur

₹1.9 L/yr - ₹3 L/yr

QA Engineer
3 salaries
unlock blur

₹3.5 L/yr - ₹4.2 L/yr

Explore more salaries
Compare WebDataGuru with

Yalamanchili Software Exports

3.4
Compare

ScoreMe Solutions

4.4
Compare

Global Edge Software

3.5
Compare

Logelite

4.7
Compare

Calculate your in-hand salary

Confused about how your in-hand salary is calculated? Enter your annual salary (CTC) and get your in-hand salary
Did you find this page helpful?
Yes No
write
Share an Interview