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

Filter interviews by

Pattem Digital Technologies Interview Questions, Process, and Tips

Updated 27 Jun 2024

Top Pattem Digital Technologies Interview Questions and Answers

Pattem Digital Technologies Interview Experiences

Popular Designations

4 interviews found

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Basic Typescript questions, Diiference between Interface & Type?
  • Q2. What is Abstract class?
  • Ans. 

    Abstract class is a class that cannot be instantiated and is meant to be inherited by other classes.

    • Cannot be instantiated directly

    • Can have abstract methods that must be implemented by child classes

    • Used to define a common structure for multiple related classes

  • Answered by AI
  • Q3. What is void in typescript?
  • Ans. 

    Void in TypeScript is a data type that represents the absence of a value.

    • Void is used as the return type of functions that do not return a value.

    • Variables of type void can only be assigned undefined or null.

    • Void is often used in callback functions where the return value is not needed.

  • Answered by AI
  • Q4. Different features of typescript?
  • Ans. 

    TypeScript is a superset of JavaScript that adds static typing and other features to improve code quality and developer productivity.

    • Static typing for variables and function parameters

    • Interfaces for defining object shapes

    • Classes and inheritance for object-oriented programming

    • Enums for defining named constants

    • Generics for writing flexible and reusable code

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare for typescript questions

Skills evaluated in this interview

Typescript Developer Interview Questions asked at other Companies

Q1. What is Abstract class?
View answer (1)
Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Coding Test 

C# Production issue analysis

Round 2 - One-on-one 

(2 Questions)

  • Q1. About self introduction and experience
  • Q2. Goals for short term
  • Ans. 

    My short term goals include completing a specific project, improving team collaboration, and enhancing my technical skills.

    • Complete project X by deadline

    • Improve communication and collaboration with team members

    • Attend training or workshops to enhance technical skills

  • Answered by AI

Lead Software Engineer Interview Questions asked at other Companies

Q1. Square Root with Decimal Precision Problem Statement You are provided with two integers, 'N' and 'D'. Your objective is to determine the square root of the number 'N' with a precision up to 'D' decimal places. This implies that the discrepa... read more
Add answer
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

Javascript Developer Interview Questions asked at other Companies

Q1. Can you tell me about promise, async in javascript
View answer (1)
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

Javascript Developer Interview Questions asked at other Companies

Q1. Can you tell me about promise, async in javascript
View answer (1)

Pattem Digital Technologies interview questions for popular designations

 Javascript Developer

 (2)

 Lead Software Engineer

 (1)

 Typescript Developer

 (1)

Jobs at Pattem Digital Technologies

View all

Interview questions from similar companies

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
No response

I applied via LinkedIn and was interviewed in Nov 2024. There were 3 interview rounds.

Round 1 - HR 

(2 Questions)

  • Q1. Basic Questions about KPIs, CTC,ECTC,NP,LOCATION
  • Q2. Reason for job change?
  • Ans. 

    Seeking new challenges and opportunities for professional growth.

    • Desire for new challenges and opportunities

    • Looking to expand skill set and experience

    • Seeking career advancement

    • Company restructuring or downsizing

    • Relocation for personal reasons

  • Answered by AI
Round 2 - Assignment 

Sales cycle and Process. Lead Generation Process and Tools. Email and LinkedIn Templates for Reachout

Round 3 - One-on-one 

(2 Questions)

  • Q1. Tell me about Yourself?
  • Ans. 

    Experienced business development executive with a proven track record of driving revenue growth and building strong client relationships.

    • Over 10 years of experience in business development and sales

    • Successfully led a team that increased sales by 30% in the past year

    • Strong communication and negotiation skills

    • Expertise in identifying new business opportunities and developing strategic partnerships

  • Answered by AI
  • Q2. Brief me about your current organization and role?
  • Ans. 

    I am currently working at XYZ Company as a Senior Business Development Executive.

    • Responsible for identifying new business opportunities and partnerships

    • Developing and implementing strategies to drive business growth

    • Managing key client relationships and negotiating contracts

    • Analyzing market trends and competitor activities

    • Leading a team of business development professionals

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I was Interviewed at LambdaTest for senior SDR and found the experience concerning due to inappropriate and insensitive comments made by the Hiring Manager. During the Interview, I was asked Personal questions about my marriage plans and work-life balance, followed by people being dishonest in relationships, which felt intrusive and irrelevant to the role. Additionally, He made derogatory comments about the religious group I am part of as he was also from the same group, stating we have "backward mindsets" which I found Offensive and Discriminatory. While I received positive feedback on my assignments and skills, these personal remarks made the interview uncomfortable and unprofessional. As an experienced professional, I expected more respect and focus on my skills and qualifications, not on my personal life, Religion or Cultural Background. I would advise LambdaTest to review its Hiring practices and ensure all the candidates are treated with respect and professionalism.
Interview experience
3
Average
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via LinkedIn and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Aptitude Test 

Basic Hacker Rank SQL Questions 2 . and 10 MCQ based

Round 2 - Technical 

(3 Questions)

  • Q1. Select customer, sum(amt ) as total_amt from t1 group by customer how many no. of rows it will return and explain this table t1 column name-> dept customer item amt
  • Q2. Select * , sum(amt) over (partition by customer) as total_amt from t2
  • Ans. 

    The query selects all columns and calculates the total amount for each customer in table t2.

    • The query uses a window function to calculate the sum of 'amt' for each customer in the 't2' table.

    • The 'partition by customer' clause divides the result set into partitions based on the 'customer' column.

    • The 'select *' statement selects all columns from the table along with the calculated total amount.

    • The 'sum(amt) over (partiti...

  • Answered by AI
  • Q3. How many Customers has purchased same item on the Same day more than onnce
  • Ans. 

    To find customers who purchased the same item multiple times on the same day.

    • Identify unique customers who purchased the same item multiple times on the same day

    • Check for duplicate transactions by customer and item on the same day

    • Aggregate the data to count the number of customers who made multiple purchases of the same item on the same day

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare basic sql and solve questiosn without seeing answers

Node Js Backend Developer Intern Interview Questions & Answers

Pando user image Anonymous

posted on 16 Jan 2025

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

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

Round 1 - Coding Test 

Two questions that I solved in JavaScript: one on arrays and the other on binary search.

Round 2 - Technical 

(2 Questions)

  • Q1. In the DSA round, I was asked to write code to determine whether two rectangles intersect, given the top left corner, length, and breadth of both rectangles.
  • Q2. Next was to check whether two circles intersect, given their radii and centers?

Interview Preparation Tips

Interview preparation tips for other job seekers - After the second round, I was supposed to have a technical round; however, the HR and the company did not respond. I even wrote to her multiple times. This disappointing behavior is concerning; they should at least adhere to some ethical standards and provide me with a formal rejection.
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Not Selected

I applied via campus placement at Indian Institute of Information Technology (IIIT), Kota and was interviewed in Dec 2024. There were 2 interview rounds.

Round 1 - Coding Test 

A 90-minute coding test on HackerRank, which includes one medium, one easy, and one hard question.

Round 2 - Technical 

(2 Questions)

  • Q1. What is the index of the first occurrence where a pattern string matches with a text string?
  • Q2. Given a string, how can we find the minimum length substring whose sum is greater than or equal to a specified target?
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Job Fair and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - One-on-one 

(3 Questions)

  • Q1. All explain allowance
  • Ans. 

    Allowance is a sum of money paid regularly to cover expenses or losses.

    • Allowance is a fixed amount of money given regularly to cover expenses or losses.

    • It can be provided as part of a salary package or as a separate payment.

    • Examples include travel allowance, housing allowance, and meal allowance.

  • Answered by AI
  • Q2. 1) TA allowance 2) travel allowance 3) hotels🏨 allowance
  • Q3. Interview update me

Interview Preparation Tips

Interview preparation tips for other job seekers - 2 day interview final round
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

Pattem Digital Technologies Interview FAQs

How many rounds are there in Pattem Digital Technologies interview?
Pattem Digital Technologies interview process usually has 1-2 rounds. The most common rounds in the Pattem Digital Technologies interview process are Coding Test, Aptitude Test and Technical.
How to prepare for Pattem Digital Technologies 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 Javascript, React.Js, Java, CSS and HTML.
What are the top questions asked in Pattem Digital Technologies interview?

Some of the top questions asked at the Pattem Digital Technologies interview -

  1. What is Abstract cla...read more
  2. What is void in typescri...read more
  3. Different features of typescri...read more

Tell us how to improve this page.

Pattem Digital Technologies Interview Process

based on 5 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.4k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.6k Interviews
Tech Mahindra Interview Questions
3.5
 • 3.8k Interviews
HCLTech Interview Questions
3.5
 • 3.8k Interviews
LTIMindtree Interview Questions
3.8
 • 3k Interviews
Mphasis Interview Questions
3.4
 • 806 Interviews
Vyapar Interview Questions
3.5
 • 50 Interviews
View all

Pattem Digital Technologies Reviews and Ratings

based on 11 reviews

3.6/5

Rating in categories

3.5

Skill development

3.9

Work-life balance

3.4

Salary

3.2

Job security

3.6

Company culture

3.1

Promotions

3.4

Work satisfaction

Explore 11 Reviews and Ratings
System Administrator

Noida

7-12 Yrs

Not Disclosed

Digital Marketing Analyst

Bangalore / Bengaluru

3-7 Yrs

Not Disclosed

Explore more jobs
Senior Software Engineer
4 salaries
unlock blur

₹14.5 L/yr - ₹25 L/yr

Talent Acquisition Specialist
4 salaries
unlock blur

₹3 L/yr - ₹3.8 L/yr

Senior Software Engineer and Lead
4 salaries
unlock blur

₹19 L/yr - ₹43 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

Explore more salaries
Compare Pattem Digital Technologies with

TCS

3.7
Compare

Infosys

3.6
Compare

Wipro

3.7
Compare

HCLTech

3.5
Compare
Did you find this page helpful?
Yes No
write
Share an Interview