Upload Button Icon Add office photos

Filter interviews by

Rolta India Interview Questions and Answers for Freshers

Updated 9 May 2024

Rolta India Interview Experiences for Freshers

Popular Designations

1 interview found

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

(1 Question)

  • Q1. GPS stand form
  • Ans. 

    GPS stands for Global Positioning System.

    • GPS is a satellite-based navigation system that allows users to determine their exact location anywhere on Earth.

    • It provides real-time positioning, navigation, and timing services to users.

    • GPS works by using a network of satellites that transmit signals to GPS receivers on the ground.

    • The receivers then calculate the user's position based on the time it takes for the signals to r...

  • Answered by AI

Production & Quality Engineer Interview Questions asked at other Companies

Q1. 1)What is kaizen , 2)what is 8 D methodology, 3) what are the types of measuring instruments used in manufacturing industries.
View answer (2)

Interview questions from similar companies

I applied via Company Website and was interviewed before May 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 - Technical 

(2 Questions)

  • Q1. How many years do you have the experience in ____ (programming language you have applied for)
  • Ans. 

    I have X years of experience in ____.

    • Worked with ____ for X years on various projects

    • Proficient in ____ with experience in developing complex applications

    • Have completed multiple courses and certifications in ____

    • Contributed to open-source projects in ____

  • Answered by AI
  • Q2. What type of projects do you have the experience to do
Round 3 - HR 

(4 Questions)

  • Q1. What are you like to do
  • Q2. What are the hobbies you have
  • Q3. What's your weak point you feel that you have
  • Q4. How you are trying to overcome your week points

Interview Preparation Tips

Interview preparation tips for other job seekers - It's better to try to give interviews with proper knowledge. Don't show overconfidence in what you don't have good knowledge to get a job.

I applied via Campus Placement and was interviewed before Apr 2020. There were 5 interview rounds.

Interview Questionnaire 

2 Questions

  • Q1. 1.OOP questions
  • Q2. 2.Java basic programs

Interview Preparation Tips

Interview preparation tips for other job seekers - Be confident
Try to answer questions logically

I applied via Referral and was interviewed before Sep 2021. There were 5 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 - Technical 

(1 Question)

  • Q1. All about angular basic and deep questioning
Round 3 - Technical 

(1 Question)

  • Q1. Basic routing and SPA
Round 4 - Behavioral 

(1 Question)

  • Q1. Detail qbout angular and node js
  • Ans. 

    Angular is a front-end framework while Node.js is a back-end runtime environment.

    • Angular is used for building dynamic web applications with a focus on the client-side.

    • Node.js is used for building server-side applications with JavaScript.

    • Angular uses TypeScript for building applications while Node.js uses JavaScript.

    • Angular has a large community and a lot of pre-built components while Node.js has a vast library of modul...

  • Answered by AI
Round 5 - HR 

(1 Question)

  • Q1. Salary discussion as per interview

Interview Preparation Tips

Topics to prepare for Winjit Technologies Senior Software Engineer interview:
  • OOPS
  • Angular
  • HTML
  • CSS
  • Javascript
Interview preparation tips for other job seekers - Be calmly to take the interview. Preapare at least basic things to attend the interview.

Skills evaluated in this interview

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 - Technical 

(2 Questions)

  • Q1. OOPS cocept,mvc,core,api
  • Q2. Oops concept,mvc,core,api
Round 3 - Technical 

(1 Question)

  • Q1. Oops concept,mvc,web api,project description

Interview Preparation Tips

Interview preparation tips for other job seekers - Prepare well in oops concept,mvc,core,web api and project description
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in May 2023. There were 2 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - Technical 

(2 Questions)

  • Q1. Node js, blockchain
  • Q2. Basics of js language and 2 3 basic coding questions
Interview experience
3
Average
Difficulty level
Easy
Process Duration
-
Result
-

I applied via Campus Placement and was interviewed in Jul 2023. There were 3 interview rounds.

Round 1 - Resume Shortlist 
Pro Tip by AmbitionBox:
Don’t add your photo or details such as gender, age, and address in your resume. These details do not add any value.
View all tips
Round 2 - HR 

(1 Question)

  • Q1. 1.Tell me about your self 2.Where do you se yourself after 5 years 3.About projects and intership 4.one coding question in python
Round 3 - Technical 

(2 Questions)

  • Q1. Binary search implementation
  • Ans. 

    Binary search is a fast search algorithm that finds the position of a target value within a sorted array.

    • Binary search works by repeatedly dividing the search interval in half.

    • It compares the target value with the middle element of the array.

    • If the target value is equal to the middle element, the position is found.

    • If the target value is less than the middle element, the search continues on the lower half of the array.

    • I...

  • Answered by AI
  • Q2. Quick sort code implementation
  • Ans. 

    Quick sort is a popular sorting algorithm that uses divide and conquer strategy.

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

    • Recursively sort the sub-arrays

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

  • Answered by AI

Skills evaluated in this interview

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

I appeared for an interview before Mar 2024, where I was asked the following questions.

  • Q1. Explain the Lifecycle of MVC and the deployment process.
  • Ans. 

    MVC lifecycle involves Model, View, and Controller interactions, while deployment ensures the application is live and accessible.

    • 1. Model: Represents data and business logic. Example: A User model that interacts with a database.

    • 2. View: Displays data to the user. Example: HTML templates rendering user information.

    • 3. Controller: Handles user input and updates the model. Example: A login controller processing user creden...

  • Answered by AI
  • Q2. What is CTE and syntax of same ?
  • Ans. 

    CTE stands for Common Table Expression, a temporary result set in SQL used for complex queries.

    • CTE is defined using the WITH clause.

    • It can be recursive or non-recursive.

    • Example syntax: WITH CTE_Name AS (SELECT column1 FROM table) SELECT * FROM CTE_Name;

    • CTEs improve readability and organization of SQL queries.

    • They can be referenced multiple times within a query.

  • Answered by AI
  • Q3. What is CORS (Cross Origin Resource Sharing) ?
  • Ans. 

    CORS is a security feature that allows restricted resources on a web page to be requested from another domain outside the domain from which the resource originated.

    • CORS is implemented via HTTP headers that allow servers to specify who can access their resources.

    • For example, a web application on 'example.com' can request resources from 'api.example.com' if CORS is enabled.

    • The 'Access-Control-Allow-Origin' header is cruc...

  • Answered by AI
  • Q4. What is Bundling and Minification ?
  • Ans. 

    Bundling and minification optimize web assets by reducing file size and number of requests, improving load times and performance.

    • Bundling combines multiple files (e.g., JavaScript, CSS) into a single file to reduce HTTP requests.

    • Minification removes unnecessary characters (like whitespace and comments) from code to decrease file size.

    • Example of bundling: Combining 'script1.js', 'script2.js', and 'script3.js' into 'bund...

  • Answered by AI
  • Q5. What is HTML helper ?
  • Ans. 

    HTML helpers are functions that simplify the generation of HTML markup in web applications, enhancing code readability and maintainability.

    • HTML helpers are often used in MVC frameworks to generate HTML elements easily.

    • Common HTML helpers include methods for creating forms, links, and other UI components.

    • Example: In ASP.NET MVC, Html.TextBoxFor() generates an input element for a model property.

    • HTML helpers promote DRY (...

  • Answered by AI
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
Selected Selected

I applied via Hirest and was interviewed before Oct 2023. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Angular lifecycle hooks, directives, modules
  • Q2. Angular forms module, application bootstrap process
Round 2 - Aptitude Test 

Given JavaScript's complex logic on array and list

Interview Preparation Tips

Interview preparation tips for other job seekers - Fundamental for face to face interview. Strong Technical for coding round
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What are Promises
  • Ans. 

    Promises are objects representing the eventual completion or failure of an asynchronous operation.

    • Promises are used in JavaScript to handle asynchronous operations.

    • They can be in one of three states: pending, fulfilled, or rejected.

    • Promises can be chained using .then() to handle success and .catch() to handle errors.

    • Example: Fetching data from an API returns a Promise that resolves with the data or rejects with an erro

  • Answered by AI
  • Q2. Is Node.js Single Threaded or Multiple Threaded
  • Ans. 

    Node.js is single threaded, but uses multiple threads for I/O operations.

    • Node.js uses a single thread to handle all JavaScript code execution.

    • It uses multiple threads from a thread pool to handle I/O operations asynchronously.

    • This allows Node.js to handle high concurrency without blocking the main thread.

    • Example: When reading a file, Node.js will use a separate thread from the pool to perform the I/O operation.

  • Answered by AI
Round 2 - Coding Test 

Reverse the Array of Strings

Interview Preparation Tips

Interview preparation tips for other job seekers - Good Place to work

Skills evaluated in this interview

Rolta India Interview FAQs

How many rounds are there in Rolta India interview for freshers?
Rolta India interview process for freshers usually has 1 rounds. The most common rounds in the Rolta India interview process for freshers are HR.
How to prepare for Rolta India 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 Rolta India. The most common topics and skills that interviewers at Rolta India expect are TDS Return, Bank Reconciliation, Company Law, Legal and Secretarial Activities.

Tell us how to improve this page.

Rolta India Interview Process for Freshers

based on 1 interview

Interview experience

5
  
Excellent
View more

Rolta India Reviews and Ratings

based on 220 reviews

2.7/5

Rating in categories

2.9

Skill development

2.8

Work-life balance

2.5

Salary

2.4

Job security

2.7

Company culture

2.5

Promotions

2.8

Work satisfaction

Explore 220 Reviews and Ratings
Software Engineer
53 salaries
unlock blur

₹3 L/yr - ₹7.1 L/yr

Senior Software Engineer
43 salaries
unlock blur

₹3.6 L/yr - ₹13.2 L/yr

Lead Software Engineer
36 salaries
unlock blur

₹6.5 L/yr - ₹18 L/yr

Senior Engineer
36 salaries
unlock blur

₹3.6 L/yr - ₹8.4 L/yr

Software Developer
26 salaries
unlock blur

₹3 L/yr - ₹6.1 L/yr

Explore more salaries
Compare Rolta India with

Softenger

4.1
Compare

Capital Numbers Infotech

4.5
Compare

DesignTech Systems

3.3
Compare

Espire Infolabs

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