Upload Button Icon Add office photos

Filter interviews by

Weblink In Interview Questions and Answers for Freshers

Updated 3 Dec 2024

Weblink In Interview Experiences for Freshers

Popular Designations

2 interviews found

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

A machine coding round is a technical assessment conducted during the hiring process for software engineering roles. In this round, candidates are typically given a real-world problem statement or a set of requirements and are asked to write code to implement a solution. The term "machine coding" implies that candidates are expected to write code that could potentially run on a machine, focusing on low-level design rather than high-level design.

Round 2 - Coding Test 

A machine coding round is a technical assessment conducted during the hiring process for software engineering The term "machine coding" implies that candidates are expected to write code that could potentially run on a machine, focusing on low-level design rather than high-level design.

Data Scientist Intern Interview Questions asked at other Companies

Q1. In case deadline is approaching, whether you will compromise with project quality?
View answer (1)
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 - One-on-one 

(2 Questions)

  • Q1. How are you doing and what you will do
  • Q2. Are you okay with leaves
Round 3 - Assignment 

Write 100 words on new social media

Interview Preparation Tips

Interview preparation tips for other job seekers - be yourself, be true be sincere study, and stay never alone

Senior Executive Interview Questions asked at other Companies

Q1. If oneday the men power is very less due to some problem and lode is more that day as a senior Exucative, how will u handle your team ?
View answer (55)

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Aug 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is vlookup?
  • Ans. 

    VLOOKUP is a function in Excel used to search for a value in a table and return a corresponding value from another column.

    • VLOOKUP stands for 'vertical lookup'

    • It is commonly used in Excel to search for a value in the leftmost column of a table and return a value in the same row from a specified column

    • Syntax: =VLOOKUP(lookup_value, table_array, col_index_num, [range_lookup])

    • Example: =VLOOKUP(A2, B2:D10, 3, FALSE) - searc...

  • Answered by AI
  • Q2. What do you know about us health care?
Round 2 - One-on-one 

(2 Questions)

  • Q1. What is the difference between vlookup and index match?
  • Ans. 

    VLOOKUP searches for a value in the first column of a range and returns a value in the same row. INDEX MATCH is more flexible and can search in any column.

    • VLOOKUP searches vertically in a table and returns a value from the same row.

    • INDEX MATCH can search horizontally or vertically and is more versatile.

    • VLOOKUP requires the lookup value to be in the first column of the table.

    • INDEX MATCH can search for the lookup value i...

  • Answered by AI
  • Q2. Us health care domain specific questions?
Round 3 - HR 

(2 Questions)

  • Q1. Questions on commitment towards the company, general team behaviour and typical scenario based questions to test your emotional intelligence?
  • Q2. Sallery discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident while speaking and have some basic technical understanding of the domain you are applying for,
As a fresher you are good to go with this advice

Skills evaluated in this interview

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

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

Round 1 - Javacript MCQ 

(1 Question)

  • Q1. 21 MCQ's on javascript concepts
Round 2 - Technical 

(2 Questions)

  • Q1. What is apply , call ,bind method?
  • Ans. 

    apply, call, and bind are methods used to manipulate the context of a function in JavaScript.

    • apply() - calls a function with a given 'this' value and arguments provided as an array

    • call() - calls a function with a given 'this' value and arguments provided individually

    • bind() - creates a new function that, when called, has its 'this' keyword set to the provided value

  • Answered by AI
  • Q2. What is closure , event loop , promise , setTimeout , inheritance in javascript (prototyping), design principles, call by value , call by reference , mixin?(Write examples in code editor)
Round 3 - Behavioral 

(2 Questions)

  • Q1. About your past projects?
  • Q2. Role and Responsibility, Why you want t join Talentica , Future goals etc?

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-

I applied via Walk-in

Round 1 - Technical 

(2 Questions)

  • Q1. How make a queue using a stack
  • Ans. 

    To implement a queue using a stack, use two stacks and simulate the queue operations.

    • Use two stacks, one for enqueue operation and one for dequeue operation.

    • For enqueue operation, simply push elements onto the stack used for enqueueing.

    • For dequeue operation, if the dequeue stack is empty, pop all elements from enqueue stack and push onto dequeue stack.

    • Then pop from the dequeue stack to simulate dequeue operation.

  • Answered by AI
  • Q2. Create a linked list
  • Ans. 

    A linked list is a data structure consisting of nodes where each node points to the next node in the sequence.

    • Create a Node class with data and next pointer

    • Initialize a head pointer to null

    • Add nodes by updating next pointers

    • Traverse the list by following next pointers

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Selected Selected
Round 1 - Technical 

(3 Questions)

  • Q1. Finance questions - related to option pricing, derivatives, securities such as ABS, CLOs
  • Q2. Questions on hedge fund structure, ecosystem, hedge fund strategies
  • Q3. Why do you want to join IVP? Why not sell side core finance roles?
Round 2 - One-on-one 

(4 Questions)

  • Q1. Math puzzles, Statistics, Probability problems
  • Q2. Do you have any technical experience? Data visualization and SQL based
  • Q3. Why do you want to join us?
  • Q4. What do you know about IVP and the exact nature of work we do?
Round 3 - HR 

(2 Questions)

  • Q1. What keeps you going everyday?
  • Q2. Why do you want to join IVP and what strengths will make you thrive here?
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in May 2024. There were 4 interview rounds.

Round 1 - Coding Test 

Python and SQL questions were asked

Round 2 - One-on-one 

(1 Question)

  • Q1. I was asked about the project
Round 3 - One-on-one 

(1 Question)

  • Q1. ACID properties of DBMS
  • Ans. 

    ACID properties ensure data integrity in DBMS: Atomicity, Consistency, Isolation, Durability.

    • Atomicity ensures that all operations in a transaction are completed successfully or none at all.

    • Consistency ensures that the database remains in a consistent state before and after the transaction.

    • Isolation ensures that multiple transactions can be executed concurrently without affecting each other.

    • Durability ensures that once...

  • Answered by AI
Round 4 - HR 

(1 Question)

  • Q1. HR question and family background

Interview Preparation Tips

Topics to prepare for Junglee Games Data Engineer interview:
  • SQL
  • Python
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Campus Placement and was interviewed in Apr 2024. There were 2 interview rounds.

Round 1 - Assignment 

It was a written test where theoretical SQL questions were asked like primary key, foreign key, set operators and some queries

Round 2 - Technical 

(1 Question)

  • Q1. All SQL Concepts like Join, normalization, trigger, stored procedure, keys, drop truncate del difference, where having difference, Aggregate scaler window functions, fetch duplicate records query, acid pro...

Interview Preparation Tips

Topics to prepare for Saama Technologies Data Engineer interview:
  • SQL
  • Python
  • Pyspark
Interview preparation tips for other job seekers - Clear your concepts deeply with examples sothat you can able to explain it..
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via Internshala and was interviewed in Apr 2024. There were 3 interview rounds.

Round 1 - Coding Test 

Was 1 hr with a simple question from leetcode

Round 2 - Technical 

(2 Questions)

  • Q1. Implement reverse Linked list
  • Ans. 

    Reverse a linked list

    • Create a new linked list to store the reversed elements

    • Traverse the original linked list and insert each node at the beginning of the new list

    • Update the head of the new list as the last node of the original list

  • Answered by AI
  • Q2. Project Explanation(from resume)
Round 3 - HR 

(2 Questions)

  • Q1. Why we should select you?
  • Ans. 

    I am a dedicated and hardworking individual with relevant skills and experience for the role.

    • I have completed relevant coursework in the field

    • I have previous internship experience in a similar role

    • I possess strong communication and teamwork skills

  • Answered by AI
  • Q2. Are you willing to relocate?
  • Ans. 

    Yes, I am open to relocating for the right opportunity.

    • I am open to relocating for the right opportunity

    • I am flexible and willing to move for the internship

    • I understand the importance of being open to relocation for career growth

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

Its a sectional round. It has 4 sections. Quants, Logical, pseudo code, Reasoning, Gaming

Round 2 - One-on-one 

(2 Questions)

  • Q1. Aptitude question solving
  • Q2. Resume related questions

Weblink In Interview FAQs

How many rounds are there in Weblink In interview for freshers?
Weblink In interview process for freshers usually has 2-3 rounds. The most common rounds in the Weblink In interview process for freshers are Resume Shortlist, One-on-one Round and Assignment.
How to prepare for Weblink In interview for freshers?
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 Weblink In. The most common topics and skills that interviewers at Weblink In expect are station, Content Writing, Journalism, Press Release and sat.
What are the top questions asked in Weblink In interview for freshers?

Some of the top questions asked at the Weblink In interview for freshers -

  1. 6.tell me something like how many apprication certificate get from previous org...read more
  2. Salary discussed because not providing much more said about incentives are hu...read more
  3. About personality test skill and organisation policy discuss...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Weblink In interview
Company Website
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.

Interview Questions from Similar Companies

Info Edge Interview Questions
4.0
 • 314 Interviews
Magic Edtech Interview Questions
3.1
 • 48 Interviews
Quikr Interview Questions
3.8
 • 31 Interviews
DISYS Interview Questions
3.0
 • 27 Interviews
Foundit Interview Questions
3.6
 • 26 Interviews
View all

Weblink In Reviews and Ratings

based on 220 reviews

3.8/5

Rating in categories

3.6

Skill development

3.5

Work-Life balance

3.5

Salary & Benefits

3.6

Job Security

3.7

Company culture

3.2

Promotions/Appraisal

3.6

Work Satisfaction

Explore 220 Reviews and Ratings
Business Consultant
90 salaries
unlock blur

₹1.8 L/yr - ₹4 L/yr

Business Development Executive
43 salaries
unlock blur

₹1.5 L/yr - ₹4 L/yr

Assistant Manager
36 salaries
unlock blur

₹2.7 L/yr - ₹8 L/yr

Operations Executive
25 salaries
unlock blur

₹2 L/yr - ₹4.1 L/yr

Sales Executive
21 salaries
unlock blur

₹2 L/yr - ₹3 L/yr

Explore more salaries
Compare Weblink In with

Info Edge

4.0
Compare

Quikr

3.8
Compare

Foundit

3.6
Compare

Times Business Solutions

3.4
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