Upload Button Icon Add office photos
Engaged Employer

i

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

Pattem Digital Technologies Verified Tick

Compare button icon Compare button icon Compare
3.1

based on 9 Reviews

Filter interviews by

Pattem Digital Technologies Javascript Developer Interview Questions and Answers

Updated 15 Mar 2024

Pattem Digital Technologies Javascript Developer Interview Experiences

2 interviews found

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

I applied via Walk-in and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Mostly about comprashensive topics, situation handling questions and apptiture based on %,time,match pattern

Round 2 - Coding Test 

Coding based on string manupulation

Interview Preparation Tips

Interview preparation tips for other job seekers - yet to attend training
Interview experience
4
Good
Difficulty level
Easy
Process Duration
-
Result
Not Selected

I applied via Job Portal and was interviewed in Feb 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic string array questions along with personality analyses

Round 2 - Coding Test 

Basic of Javascript, async await , hoisting

Interview questions from similar companies

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement

Round 1 - Aptitude Test 

It was good 20 mcqs 3 coding questions

Round 2 - Technical 

(2 Questions)

  • Q1. Dsa and core subjects like cn os
  • Q2. Dsa questions and core subjects
Round 3 - HR 

(1 Question)

  • Q1. Basic family discussion and salary details

Interview Preparation Tips

Interview preparation tips for other job seekers - it was overall a good experience
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

2 Leetcode Medium questions on hackerrank

Round 2 - One-on-one 

(3 Questions)

  • Q1. Kadane algorithm based question
  • Q2. Leetcode medium
  • Q3. Resume based questions
Round 3 - One-on-one 

(4 Questions)

  • Q1. Probability question math problem
  • Q2. Puzzle to solve
  • Q3. AI based question
  • Q4. 1 question to solve Leetcode medium

Interview Preparation Tips

Interview preparation tips for other job seekers - Be strong with DSA and communication skill
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Campus Placement

Round 1 - Aptitude Test 

Aptitude was including both MCQs and Input

Round 2 - Technical 

(4 Questions)

  • Q1. Technical interview 1 It revolved around core subjects Like OS, Oops, CNS, dbms etc,. And few basic questions on arrays
  • Q2. Difference between python and C
  • Ans. 

    Python is a high-level, interpreted language known for its simplicity and readability, while C is a low-level, compiled language known for its speed and efficiency.

    • Python is dynamically typed, while C is statically typed.

    • Python has automatic memory management, while C requires manual memory management.

    • Python is platform-independent, while C is platform-dependent.

    • Python is commonly used for web development and data anal...

  • Answered by AI
  • Q3. Why C is faster than python
  • Ans. 

    C is faster than Python due to its lower-level nature and direct hardware access.

    • C is a compiled language, while Python is an interpreted language.

    • C code is directly translated into machine code, while Python code is executed line by line.

    • C has direct access to hardware, while Python relies on external libraries for such access.

  • Answered by AI
  • Q4. Write a program to count vowels in your name
  • Ans. 

    A program to count vowels in a given name

    • Create a function that takes a string as input

    • Loop through each character in the string and check if it is a vowel (a, e, i, o, u)

    • Increment a counter for each vowel found

    • Return the total count of vowels

  • Answered by AI
Round 3 - Technical 

(5 Questions)

  • Q1. Technical interview 2 Focuses on DSA
  • Q2. Write quick sort
  • Ans. 

    Quick sort is a divide-and-conquer algorithm that sorts an array by partitioning it into smaller sub-arrays.

    • Choose a pivot element from the array

    • Partition the array into two sub-arrays based on the pivot element

    • Recursively apply quick sort to the sub-arrays

    • Combine the sorted sub-arrays to get the final sorted array

  • Answered by AI
  • Q3. Implement Linked list
  • Ans. 

    Implement a linked list data structure in a programming language.

    • Create a Node class with data and a reference to the next node

    • Implement methods to add, remove, and search for elements in the linked list

    • Handle edge cases like adding to an empty list or removing the last element

  • Answered by AI
  • Q4. All operations on Linked list
  • Ans. 

    Operations on Linked list include insertion, deletion, traversal, and searching.

    • Insertion: Add a new node at the beginning, end, or middle of the linked list.

    • Deletion: Remove a node from the linked list based on a given key or position.

    • Traversal: Visit each node in the linked list to perform operations or display data.

    • Searching: Find a specific node in the linked list based on a given key or value.

  • Answered by AI
  • Q5. Basic machine learning algorithms
Round 4 - HR 

(2 Questions)

  • Q1. Basic fitment questions
  • Q2. Introduction and flexibility

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident and brush up all CS core subjects

Skills evaluated in this interview

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

(1 Question)

  • Q1. Pointless basic questions is what they asked
Round 2 - Technical 

(1 Question)

  • Q1. They had this round for hours together

Interview Preparation Tips

Interview preparation tips for other job seekers - Kindly do not attend interview at Pando. They make the interview process long and tedious. They had less budget despite knowing that they wasted my time and efforts on the whole the company is not well structured and their HR team is very poor. They are a typical unstructured startup company with poor work ethics and culture.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. Mimic Dataframe Merge
  • Q2. Improve above case by case
Round 2 - Coding Test 

1 hour - Find longest palindromic substring

Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Referral and was interviewed in Sep 2023. 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 - Coding Test 

60 Minutes coding test was there

Round 3 - Technical 

(5 Questions)

  • Q1. Worst experience ever, never apply for company in this, highly unstable company
  • Q2. Add two numbers in a linked list, don't apply
  • Ans. 

    Traverse the linked list and add the values of each node without using additional data structures.

    • Traverse the linked list while keeping track of the sum in a variable

    • Update the sum by adding the value of each node as you traverse the list

    • Handle carry over if the sum of two nodes is greater than 9

  • Answered by AI
  • Q3. Sort the array by using all sorting algorithms, don't join
  • Q4. Subset problem find all the subsets
  • Ans. 

    To find all subsets of a given set, use recursion to generate all possible combinations.

    • Use recursion to generate all possible combinations of including or excluding each element in the set.

    • Start with an empty subset and recursively add each element to create new subsets.

    • Each subset can be represented as an array of strings.

  • Answered by AI
  • Q5. LRU Cache problem, explain it and implement it
  • Ans. 

    LRU Cache is a data structure that stores a fixed number of items and removes the least recently used item when the cache is full.

    • LRU Cache uses a combination of a doubly linked list and a hashmap to efficiently store and retrieve items.

    • When an item is accessed, it is moved to the front of the linked list to indicate it is the most recently used item.

    • If the cache is full, the least recently used item at the end of the ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Don't join, Worst Experience every

Skills evaluated in this interview

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

(1 Question)

  • Q1. 2 rounds, 2 coding questions in each round. Managerial round.
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

It was 30min tests including 15 multiple choice and 5 coding questions on Java and Automation

Round 2 - Technical 

(1 Question)

  • Q1. What is Sanity Testing what is robot class how to switch between windows assertion and types what is iframe how to handle popups keyboard actions
  • Ans. 

    Sanity testing is a subset of regression testing that focuses on testing the most crucial functionalities of a software application.

    • Sanity testing is a quick and shallow testing of the main functionalities of an application to ensure it is stable enough for further testing.

    • It is usually performed after major changes in the codebase to check if the core features are working as expected.

    • Sanity testing is not exhaustive a...

  • Answered by AI

Skills evaluated in this interview

Pattem Digital Technologies Interview FAQs

How many rounds are there in Pattem Digital Technologies Javascript Developer interview?
Pattem Digital Technologies interview process usually has 2 rounds. The most common rounds in the Pattem Digital Technologies interview process are Aptitude Test and Coding Test.
How to prepare for Pattem Digital Technologies Javascript 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 Pattem Digital Technologies. The most common topics and skills that interviewers at Pattem Digital Technologies expect are Data Structures, JSON, Javascript, React Native and React.Js.

Tell us how to improve this page.

People are getting interviews through

based on 2 Pattem Digital Technologies interviews
WalkIn
Job Portal
50%
50%
Moderate Confidence
?
Moderate Confidence means the data is based on a sufficient number of responses received from the candidates

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.1k Interviews
Infosys Interview Questions
3.7
 • 7.4k Interviews
Wipro Interview Questions
3.7
 • 5.5k Interviews
Tech Mahindra Interview Questions
3.6
 • 3.7k Interviews
HCLTech Interview Questions
3.6
 • 3.6k Interviews
LTIMindtree Interview Questions
3.9
 • 2.7k Interviews
Mphasis Interview Questions
3.4
 • 773 Interviews
Vyapar Interview Questions
3.6
 • 46 Interviews
View all
Senior Software Engineer
4 salaries
unlock blur

₹14.5 L/yr - ₹25 L/yr

Lead Engineer
3 salaries
unlock blur

₹22 L/yr - ₹28 L/yr

Content Writer
3 salaries
unlock blur

₹2.2 L/yr - ₹3.4 L/yr

Lead Software Engineer
3 salaries
unlock blur

₹29 L/yr - ₹31 L/yr

SEO Executive
3 salaries
unlock blur

₹3.2 L/yr - ₹3.2 L/yr

Explore more salaries
Compare Pattem Digital Technologies with

TCS

3.7
Compare

Infosys

3.7
Compare

Wipro

3.7
Compare

HCLTech

3.6
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