Upload Button Icon Add office photos

Filter interviews by

Newfold Digital Technical Trainee Interview Questions and Answers

Updated 9 Sep 2020

Newfold Digital Technical Trainee Interview Experiences

1 interview found

I applied via Campus Placement and was interviewed in Aug 2020. There were 4 interview rounds.

Interview Questionnaire 

5 Questions

  • Q1. What is dns how it will use?
  • Ans. 

    DNS stands for Domain Name System. It is a decentralized system that translates domain names into IP addresses.

    • DNS is used to resolve domain names to their corresponding IP addresses.

    • It helps in the efficient routing of internet traffic.

    • DNS also provides other services like email routing and load balancing.

    • Example: When you type a website URL in your browser, DNS translates it to the IP address of the server hosting th

  • Answered by AI
  • Q2. How to protect the network and data?
  • Ans. 

    Protecting network and data involves implementing security measures to prevent unauthorized access and data breaches.

    • Implement strong passwords and two-factor authentication

    • Use firewalls and antivirus software

    • Regularly update software and security patches

    • Encrypt sensitive data

    • Train employees on safe browsing and email practices

    • Limit access to sensitive data on a need-to-know basis

    • Regularly backup data

  • Answered by AI
  • Q3. Using firewalls
  • Ans. 

    Firewalls are network security systems that monitor and control incoming and outgoing network traffic.

    • Firewalls can be hardware or software-based

    • They can be configured to block or allow specific traffic based on rules

    • Firewalls can prevent unauthorized access to a network

    • They can also be used to block malicious traffic and prevent attacks

    • Examples of firewalls include Cisco ASA, Fortinet FortiGate, and pfSense

  • Answered by AI
  • Q4. How will do your work at home if your system will not work during working hours?
  • Q5. I will ask customer some time go to the browsing center and if it was late then I will give a chance to my colics.

Interview Preparation Tips

Interview preparation tips for other job seekers - It's a First time to me, because I'm a fresher. It was good experience to talked with hr

Skills evaluated in this interview

Interview questions from similar companies

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

I applied via Approached by Company and was interviewed in Feb 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 - Aptitude Test 

Maximum questions should be related quantitive aptitude.

Round 3 - Assignment 

What was a major obstacle you have overcome in the past year and what did you learn from it?

Interview Preparation Tips

Interview preparation tips for other job seekers - Based on Employ's survey of more than 1,200 HR decision makers and recruiters in this year, the top motivation for employees leaving a job is pursuing more money or seeking a more flexible work arrangement

I was interviewed in Jan 2021.

Round 1 - Coding Test 

(1 Question)

Round duration - 150 minutes
Round difficulty - Medium

It was an Aptitude test and Technical objective test of 60 minutes followed by a Coding test of 90 minutes. The round started at 2:00 PM. Candidates who cleared this round were shortlisted for the next round.

  • Q1. Maximum Sum path of a binary tree.

    You are given a binary tree having 'N' nodes. Each node of the tree has an integer value. Your task is to find the maximum possible sum of a simple path between a...

  • Ans. Recursive Solution

    First of all, we need to observe that for any simple path in a Binary tree, there is one and only one node at the maximum height. So, the idea is to fix each node as the highest node in a path and then find the maximum sum path having the current node as the highest node. The final answer will be the maximum value among all the path sum values for each node. To find the maximum sum path for a particul...

  • Answered by CodingNinjas
Round 2 - Video Call 

(1 Question)

Round duration - 30 minutes
Round difficulty - Medium

This was the technical interview round it started at 12:00 pm, here we were asked to explain the codes we wrote in the coding test and after that, we were given a coding problem for which we needed to write a pseudocode solution and explain it to the interviewer. The interviewer was quite polite and understanding even if we got stuck while writing the code he didn't rush the interview. Candidates who cleared this round were shortlisted for the HR round.

  • Q1. Properties of MST in a Undirected Graph

    G = (V,E) is an undirected simple graph in which each edge has a distinct weight, and e is a particular edge of G. Which of the following statements about the minimu...

Round 3 - HR 

(1 Question)

Round duration - 20 minutes
Round difficulty - Medium

This round started at 4:00 pm, it was also conducted on Microsoft Teams. In this round, we were asked the basic HR questions.
Basically, the interviewer just wanted to test our confidence and communication skills.

  • Q1. Jumping Game

    You are given ‘n’ carrots numbered from 1 to ‘n’. There are k rabbits. Rabbits can jump to carrots only with the multiples of Aj(Aj,2Aj,3Aj…) for all rabbits from 1 to k.

    Whenever Rabbit rea...

  • Ans. 

    Tip 1: Your answer should be professional
    Tip 2 : Mention all your good points in the answer
     

  • Answered by CodingNinjas

Interview Preparation Tips

Professional and academic backgroundI completed Computer Science Engineering from National Institute of Technology, Manipur. I applied for the job as Trainee Technology in GurgaonEligibility criteriaAbove 6 CGPANagarro interview preparation:Topics to prepare for the interview - Aptitude, Data Structures, Algorithm, OOPS, CodingTime required to prepare for the interview - 2 monthsInterview preparation tips for other job seekers

Tip 1 : Practice at least 100 aptitude questions a week 
Tip 2 : Practice coding questions on coding platforms like coding ninjas codestudio, Geeksforgeeks, HackerEarth, etc.
Tip 3 : Prepare for the interview questions

Application resume tips for other job seekers

Tip 1 : The format of your resume should look professional
Tip 2 : Only put those skills in your resume on which you are confident
Tip 3 : Do mention all the projects or internships you have done
Tip 4: Do not put false things on your resume.

Final outcome of the interviewSelected

Skills evaluated in this interview

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

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

Round 1 - Aptitude Test 

Topics - mcq of algorithms, networking, dbms

Round 2 - Technical 

(2 Questions)

  • Q1. Based on resume
  • Q2. Questions on linked list, tree,
Round 3 - Behavioral 

(2 Questions)

  • Q1. About how you approach a problem
  • Q2. Managerial questions on situations
Round 4 - HR 

(1 Question)

  • Q1. Basic hr questions
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
Selected Selected
Round 1 - Technical 

(2 Questions)

  • Q1. What is multithreading
  • Ans. 

    Multithreading is the ability of a CPU to execute multiple threads concurrently, allowing for better performance and resource utilization.

    • Multithreading allows multiple threads to run concurrently within the same process.

    • Each thread has its own stack and program counter, but shares the same memory space.

    • Multithreading can improve performance by utilizing multiple CPU cores efficiently.

    • Examples of multithreading include...

  • Answered by AI
  • Q2. What is hash map
  • Ans. 

    A hash map is a data structure that stores key-value pairs and allows for efficient retrieval of values based on keys.

    • Hash maps use a hash function to map keys to indexes in an array, allowing for constant time retrieval of values.

    • Collisions can occur when multiple keys hash to the same index, which can be resolved using techniques like chaining or open addressing.

    • Example: HashMap map = new HashMap<>()

  • Answered by AI

Skills evaluated in this interview

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

(1 Question)

  • Q1. Oops concepts and related questions
Round 2 - HR 

(1 Question)

  • Q1. Asked Technical questions along with some hr questions
Interview experience
5
Excellent
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. Self introduction
  • Q2. As per experience questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is polymorphism and method overriding
  • Ans. 

    Polymorphism is the ability of a single function or method to operate on different types of data. Method overriding is when a subclass provides a specific implementation of a method that is already provided by its parent class.

    • Polymorphism allows different classes to be treated as instances of a common superclass.

    • Method overriding is a feature that allows a subclass to provide a specific implementation of a method that...

  • Answered by AI
  • Q2. What is encaplusulation and explain it with an example
  • Ans. 

    Encapsulation is the concept of bundling data and methods that operate on the data into a single unit.

    • Encapsulation helps in hiding the internal state of an object and only exposing the necessary functionalities.

    • It allows for better control over the data by preventing direct access from outside the class.

    • An example of encapsulation is a class in object-oriented programming that has private variables and public methods

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - One-on-one 

(2 Questions)

  • Q1. About project related
  • Q2. Focuses on Java skills
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

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

Round 1 - Aptitude Test 

The question are very normal

Round 2 - HR 

(2 Questions)

  • Q1. Why should we hire your
  • Q2. Where you seen your after 5 year

Newfold Digital Interview FAQs

What are the top questions asked in Newfold Digital Technical Trainee interview?

Some of the top questions asked at the Newfold Digital Technical Trainee interview -

  1. How to protect the network and dat...read more
  2. What is dns how it will us...read more
  3. Using firewa...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Newfold Digital interview
Campus Placement
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

Accenture Interview Questions
3.9
 • 8k Interviews
Amazon Interview Questions
4.1
 • 5k Interviews
Capgemini Interview Questions
3.8
 • 4.8k Interviews
Deloitte Interview Questions
3.8
 • 2.8k Interviews
Teleperformance Interview Questions
3.9
 • 1.7k Interviews
Oracle Interview Questions
3.7
 • 887 Interviews
KPMG India Interview Questions
3.5
 • 787 Interviews
Nagarro Interview Questions
4.0
 • 766 Interviews
FIS Interview Questions
3.9
 • 476 Interviews
Optum Interview Questions
4.0
 • 414 Interviews
View all
Web Solutions Specialist
85 salaries
unlock blur

₹3 L/yr - ₹4.5 L/yr

Software Engineer
32 salaries
unlock blur

₹10 L/yr - ₹21.6 L/yr

Software Developer
22 salaries
unlock blur

₹12 L/yr - ₹20.2 L/yr

Operations Engineer
20 salaries
unlock blur

₹8 L/yr - ₹15 L/yr

Senior Hosting Product Specialist
20 salaries
unlock blur

₹4.8 L/yr - ₹7.2 L/yr

Explore more salaries
Compare Newfold Digital with

GoDaddy

3.7
Compare

Web India

4.0
Compare

HostGator.com

4.0
Compare

Bigrock

5.0
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