Upload Button Icon Add office photos

Filter interviews by

Nat IT Solved Interview Questions, Process, and Tips

Updated 28 Feb 2024

Nat IT Solved Interview Experiences

1 interview found

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

I applied via Naukri.com and was interviewed in Jan 2024. There were 2 interview rounds.

Round 1 - Technical 

(4 Questions)

  • Q1. What is Android?
  • Ans. 

    Android is an open-source mobile operating system developed by Google for smartphones, tablets, and other devices.

    • Developed by Google

    • Based on the Linux kernel

    • Supports a wide range of applications and games

    • Customizable user interface

    • Example: Samsung Galaxy S21 runs on Android

  • Answered by AI
  • Q2. Why we are using service?
  • Ans. 

    Services are used in Android to perform long-running operations in the background without affecting the user interface.

    • Services help in running tasks in the background even when the app is not in the foreground.

    • They can be used for tasks like playing music, downloading files, or fetching data from a server.

    • Services can be started or bound to activities based on the requirements of the app.

  • Answered by AI
  • Q3. What is Job scheduler?
  • Ans. 

    Job scheduler is a component in Android that allows you to schedule tasks to be run at specified times or intervals.

    • Job scheduler is used to schedule background tasks that need to be run periodically or under certain conditions.

    • It helps in optimizing battery life by grouping tasks and running them when the device is idle.

    • You can set constraints like network availability, charging status, and device idle state for the s...

  • Answered by AI
  • Q4. How to play music in background?
  • Ans. 

    To play music in background on Android, use a Service class to handle playback and manage audio focus.

    • Create a Service class to handle music playback in the background.

    • Request audio focus to ensure your app can play music even when other apps are using audio.

    • Use MediaPlayer or ExoPlayer to play audio files.

    • Handle media controls and notifications to allow users to control playback from the notification shade.

  • Answered by AI
Round 2 - HR 

(1 Question)

  • Q1. Only salary discussion

Interview Preparation Tips

Interview preparation tips for other job seekers - For fresher it will be better opportunity to learn.

Skills evaluated in this interview

Android Developer Interview Questions asked at other Companies

Q1. BST Iterator Problem Statement You are tasked with creating a class named BSTIterator that acts as an iterator for the inorder traversal of a binary search tree. Implement the following functions: BSTIterator(Node root): A constructor that... read more
View answer (1)

Interview questions from similar companies

I applied via Referral and was interviewed before Mar 2021. 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 - HR 

(3 Questions)

  • Q1. What are your salary expectations?
  • Q2. Share details of your previous job.
  • Q3. Why are you looking for a change?
Round 3 - Technical 

(1 Question)

  • Q1. About process and total experience

Interview Preparation Tips

Interview preparation tips for other job seekers - Be attentive. Always provide answer to the point. Explain your full experience in good and accurate manner. You need to provide full and constrictive information about your process/operation knowledge

Interview Questionnaire 

1 Question

  • Q1. A-Z in MySQL, programming languages(only concepts)

I applied via Campus Placement and was interviewed before Mar 2020. There was 1 interview round.

Interview Questionnaire 

2 Questions

  • Q1. Basics about .Net and SQl server
  • Q2. What are triggers
  • Ans. 

    Triggers are database objects that automatically execute in response to certain events or changes in data.

    • Triggers are used to enforce business rules or data integrity.

    • They can be used to audit changes to data.

    • Triggers can be set to execute before or after an event, such as an insert, update, or delete operation.

    • They can be defined on tables, views, or schemas.

    • Examples of triggers include sending an email notification ...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Just be honest. They prefer learnability over current knowledge

Skills evaluated in this interview

I applied via Campus Placement and was interviewed before Aug 2021. There were 3 interview rounds.

Round 1 - Aptitude Test 

The first round was an aptitude test with questions ranging from basic mathematical concepts to logical/analytical questions. English was also included in the test. The difficulty was medium and I was able to solve 70-80% of the questions.

Round 2 - Coding Test 

Two coding questions were the part of the test. I was supposed to solve and pass all the test cases for both the questions. The coding questions tested my knowledge in the field of arrays, loops and pointers. I was able to solve one and partially solve another.

Round 3 - Technical 

(1 Question)

  • Q1. The interview was a mixture of both HR as well as Technical. I was asked decent questions and tested my knowledge in the fundamentals of programming.

Interview Preparation Tips

Topics to prepare for LTIMindtree Software Engineer interview:
  • Python
  • Java
  • Full Stack
Interview preparation tips for other job seekers - Make sure that you are good in the fundamentals of Programming(if you are looking for an IT job) or just be good at a particular thing which perfectly suites your current necessities and also helps your career to grow in the future. Do not be disheartened if things do not go your way, there is always hope and a lot of companies would like to hire an intelligent candidate like you.
Cheers :)
Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Mar 2022. 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 - HR 

(1 Question)

  • Q1. Salary expectation current salary notice period
Round 3 - HR 

(1 Question)

  • Q1. Current salary notice period expected salary
  • Ans. 

    The question asks for information about current salary, notice period, and expected salary.

    • Provide the current salary, notice period, and expected salary.

    • If you don't have the information, mention that you don't have the data.

    • Format the response in JSON.

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Better discuss about JD before joining office and about project related

Interview Questionnaire 

3 Questions

  • Q1. Tr1- difference between switch case and if else, write the code for sorting
  • Ans. 

    Switch case is used for multiple conditions while if else is for binary conditions. Sorting can be done using various algorithms.

    • Switch case is faster than if else for multiple conditions

    • If else is more readable for binary conditions

    • Sorting can be done using bubble sort, insertion sort, quick sort, etc.

    • Example code for bubble sort: for(i=0;iarr[j+1]){swap(&arr[j],&arr[j+1]);}}}

  • Answered by AI
  • Q2. Tr2-difference between compiler and interpreter, Solve a challange on their own coding platform with proper output
  • Ans. 

    Difference between compiler and interpreter with a coding challenge

    • Compiler translates the entire code into machine language before execution while interpreter translates line by line during execution

    • Compiler generates an executable file while interpreter does not

    • Compiler is faster but debugging is harder while interpreter is slower but debugging is easier

    • Coding challenge: Write a program to find the sum of two numbers

  • Answered by AI
  • Q3. Oops concept

I applied via Naukri.com and was interviewed before Apr 2021. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Product owner Skills related questions
Round 2 - Technical 

(1 Question)

  • Q1. Product owner questions, domain related questions, regulatory related queries,logical reasoning questions,problem solving ability related questions
Round 3 - HR 

(6 Questions)

  • Q1. What are your salary expectations?
  • Ans. 

    I am open to discussing salary based on the responsibilities and requirements of the role.

    • I am flexible and open to negotiation.

    • I am more interested in the overall compensation package rather than just the salary.

    • I would like to be compensated fairly for my skills and experience.

    • I am confident that we can come to a mutually beneficial agreement.

  • Answered by AI
  • Q2. Why should we hire you?
  • Ans. 

    I have a strong background in consulting and a proven track record of delivering successful projects.

    • I have extensive experience in the consulting industry, having worked with various clients and industries.

    • I have a deep understanding of business processes and can provide valuable insights and recommendations.

    • I am highly analytical and detail-oriented, ensuring thorough analysis and accurate problem-solving.

    • I am an exc...

  • Answered by AI
  • Q3. Why are you looking for a change?
  • Ans. 

    I am looking for a change to expand my skills and experience in a new environment.

    • Seeking new challenges and opportunities

    • Wanting to learn and grow professionally

    • Exploring different industries or sectors

    • Desire for a better work-life balance

    • Relocation or proximity to family

    • Company culture or values misalignment

  • Answered by AI
  • Q4. Where do you see yourself in 5 years?
  • Ans. 

    In 5 years, I see myself as a highly experienced and sought-after consultant, leading successful projects and making a significant impact in the industry.

    • Leading and managing high-profile consulting projects

    • Building strong relationships with clients and delivering exceptional results

    • Continuously expanding my knowledge and expertise in the field

    • Mentoring and developing junior consultants

    • Contributing to thought leadershi

  • Answered by AI
  • Q5. What are your strengths and weaknesses?
  • Ans. 

    My strengths include strong analytical skills, excellent communication, and problem-solving abilities. My weaknesses include being overly critical of my own work and sometimes taking on too much responsibility.

    • Strength: Strong analytical skills

    • Strength: Excellent communication

    • Strength: Problem-solving abilities

    • Weakness: Being overly critical of my own work

    • Weakness: Sometimes taking on too much responsibility

  • Answered by AI
  • Q6. Tell me about yourself.
  • Ans. 

    I am a highly experienced consultant with a strong background in problem-solving and strategic planning.

    • Over 10 years of experience in consulting roles

    • Expertise in developing and implementing effective strategies

    • Proven track record of delivering successful projects

    • Strong analytical and problem-solving skills

    • Excellent communication and interpersonal skills

    • Ability to work well in cross-functional teams

    • Experience in vario...

  • Answered by AI

Interview Preparation Tips

Topics to prepare for LTIMindtree Consultant interview:
  • Product Management
  • Product Development
  • Data engineering
  • Data Analytics
  • Problem Solving
  • Logical reasoning
  • Architecture
  • Advanced Java
  • SQL
Interview preparation tips for other job seekers - Please prepare more on Domain skills and product owner Skills and also architecture level understanding of a project is alway good .
It's good if you have done any domain specific certification or specialization to stand out .

I applied via Campus Placement and was interviewed before Jun 2021. There were 3 interview rounds.

Round 1 - Coding Test 

There was one problem solving question based on binary tree concept.
And rest were aptitude test

Round 2 - Technical 

(2 Questions)

  • Q1. What is a binary tree?
  • Ans. 

    A binary tree is a data structure consisting of nodes, each having at most two children.

    • Each node has a left and/or right child node

    • The left child node is smaller than the parent node, while the right child node is larger

    • Used for efficient searching and sorting algorithms

    • Examples include binary search trees and Huffman trees

  • Answered by AI
  • Q2. Was given a scenario and was asked to solve that with optimized approach
Round 3 - HR 

(1 Question)

  • Q1. Why do you want to join this company?

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident. If you don't know something, tell that directly rather than giving wrong answer.

Skills evaluated in this interview

I applied via Naukri.com and was interviewed in Nov 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. Questions based on the CV we kept
  • Q2. Questions related to powershell, storages, networking in azure IaaS, NSG

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare whatever u kept in CV and the basics

Nat IT Solved Interview FAQs

How many rounds are there in Nat IT Solved interview?
Nat IT Solved interview process usually has 2 rounds. The most common rounds in the Nat IT Solved interview process are Technical and HR.
How to prepare for Nat IT Solved 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 Nat IT Solved. The most common topics and skills that interviewers at Nat IT Solved expect are Java, AWS, Javascript, React.Js and Python.
What are the top questions asked in Nat IT Solved interview?

Some of the top questions asked at the Nat IT Solved interview -

  1. How to play music in backgrou...read more
  2. Why we are using servi...read more
  3. What is Job schedul...read more

Tell us how to improve this page.

Nat IT Solved Interview Process

based on 2 interviews

Interview experience

4
  
Good
View more

Interview Questions from Similar Companies

TCS Interview Questions
3.7
 • 10.6k Interviews
Infosys Interview Questions
3.6
 • 7.6k Interviews
Wipro Interview Questions
3.7
 • 5.7k Interviews
LTIMindtree Interview Questions
3.7
 • 2.9k Interviews
Mphasis Interview Questions
3.4
 • 802 Interviews
eClerx Interview Questions
3.3
 • 529 Interviews
Coforge Interview Questions
3.3
 • 526 Interviews
Tata Group Interview Questions
4.2
 • 362 Interviews
View all

Nat IT Solved Reviews and Ratings

based on 12 reviews

2.7/5

Rating in categories

3.1

Skill development

2.2

Work-life balance

2.9

Salary

2.7

Job security

3.1

Company culture

3.0

Promotions

2.8

Work satisfaction

Explore 12 Reviews and Ratings
Software Developer
10 salaries
unlock blur

₹1.1 L/yr - ₹4 L/yr

Web Developer
9 salaries
unlock blur

₹2 L/yr - ₹4.2 L/yr

Full Stack Developer
5 salaries
unlock blur

₹2.8 L/yr - ₹4.1 L/yr

Programmer Analyst
5 salaries
unlock blur

₹2.4 L/yr - ₹4 L/yr

Senior UI UX Designer
4 salaries
unlock blur

₹4.2 L/yr - ₹6 L/yr

Explore more salaries
Compare Nat IT Solved with

TCS

3.7
Compare

Wipro

3.7
Compare

Infosys

3.6
Compare

LTIMindtree

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