Upload Button Icon Add office photos

Filter interviews by

Robosoft Technologies Senior Software Engineer Interview Questions and Answers

Updated 13 May 2024

Robosoft Technologies Senior Software Engineer Interview Experiences

2 interviews found

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

I was interviewed in Jan 2023.

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. Pass one data from parent to child component
  • Ans. 

    Passing data from parent to child component in React

    • Use props to pass data from parent to child component

    • Define a prop in the parent component and pass it to the child component

    • Access the prop in the child component using this.props

    • Example:

  • Answered by AI
  • Q2. Basic of Angular
Round 3 - Technical 

(3 Questions)

  • Q1. How do you code optimization
  • Ans. 

    Code optimization involves improving the efficiency and performance of software by reducing resource usage and execution time.

    • Identify and eliminate bottlenecks in the code

    • Use efficient algorithms and data structures

    • Minimize unnecessary computations and memory usage

    • Optimize database queries and network communication

    • Profile and analyze code to identify areas for improvement

  • Answered by AI
  • Q2. Ionic build step to release android and ios
  • Ans. 

    Ionic build step to release Android and iOS

    • To release an Ionic app for Android, use the command 'ionic cordova build android --release'

    • To release an Ionic app for iOS, use the command 'ionic cordova build ios --release'

    • For Android, you will need a keystore file and signing configuration

    • For iOS, you will need a valid provisioning profile and certificate

  • Answered by AI
  • Q3. Ionic Lifecycle
Round 4 - HR 

(2 Questions)

  • Q1. Reasons for lefting last company
  • Q2. How do you manage work with work from home

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Java coding questions

Senior Software Engineer Interview Questions Asked at Other Companies

asked in UST
Q1. Find Nth PrimeYou are given a number 'N'. Your task is to find Nt ... read more
asked in Capgemini
Q2. Pascal's TriangleYou are given an integer N. Your task is to retu ... read more
Q3. K Largest Elements You are given with an integer k and an array o ... read more
asked in GlobalLogic
Q4. System Design QuestionCreate a simple shopping application. They ... read more
asked in Info Edge
Q5. Buy and Sell StockYou are Harshad Mehta’s friend. He told you the ... read more

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
Moderate
Process Duration
Less than 2 weeks
Result
-

I applied via Naukri.com and was interviewed in Dec 2024. There were 3 interview rounds.

Round 1 - Technical 

(1 Question)

  • Q1. Questions on java , spring boot , containarisation tools, coding, SOLID principles
Round 2 - Assignment 

5 coading questions were asked in it

Round 3 - HR 

(1 Question)

  • Q1. Manegerial round

Senior Software Engineer Interview Questions & Answers

Incedo user image Meenakshi Somasundaram

posted on 28 Nov 2024

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

Choose the Options in Javascript, HTML, CSS

Round 2 - Technical 

(2 Questions)

  • Q1. ES6 concepts of javascript
  • Q2. Core concepts of Reactjs
  • Ans. 

    Reactjs is a JavaScript library for building user interfaces.

    • Component-based architecture

    • Virtual DOM for efficient updates

    • JSX for writing HTML in JavaScript

    • State management with setState()

    • Lifecycle methods like componentDidMount()

  • Answered by AI
Round 3 - HR 

(2 Questions)

  • Q1. Role discussion with Manager
  • Q2. Salary discussion with HR

Interview Preparation Tips

Interview preparation tips for other job seekers - All the best

Skills evaluated in this interview

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

(2 Questions)

  • Q1. Explain technical challenges you have come across and how did you overcome it?
  • Ans. 

    I faced a technical challenge while implementing a complex algorithm for real-time data processing.

    • Identified the bottleneck in the algorithm by profiling the code

    • Optimized the algorithm by implementing data structures and algorithms with lower time complexity

    • Tested the optimized solution thoroughly to ensure correctness and performance

    • Collaborated with team members to brainstorm alternative approaches

  • Answered by AI
  • Q2. Explain the main feature of JavaScript frameworks
  • Ans. 

    JavaScript frameworks provide pre-written code to simplify and speed up web development.

    • Helps in organizing code and improving code quality

    • Provides reusable components for faster development

    • Offers built-in features like routing, state management, and data binding

    • Examples: React, Angular, Vue

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

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

Round 1 - One-on-one 

(4 Questions)

  • Q1. Different trigger pattern
  • Ans. 

    Different trigger patterns are used in software development to initiate actions based on specific events.

    • Triggers can be based on time, user input, system events, etc.

    • Examples include event-driven programming, polling triggers, and scheduled triggers.

  • Answered by AI
  • Q2. Scenario based: trigger make one callout per record and 1000 record are updated how will you handle it?
  • Q3. Update account with count of contact.
  • Ans. 

    Update account with count of contact involves updating the account with the number of contacts associated with it.

    • Create a function to update the account with the count of contacts

    • Retrieve the contacts associated with the account

    • Calculate the count of contacts

    • Update the account with the count of contacts

  • Answered by AI
  • Q4. How do you share record using owd
  • Ans. 

    Sharing records using Organization Wide Defaults (OWD) in Salesforce

    • Set OWD to Public Read Only to allow all users to view records but only the owner can edit

    • Set OWD to Private to restrict access to only the record owner and users above in the role hierarchy

    • Use Sharing Rules to extend access to specific groups of users

    • Use Manual Sharing to grant access to individual users or groups on a case-by-case basis

  • Answered by AI
Round 2 - One-on-one 

(2 Questions)

  • Q1. Difference between with sharing, without sharing and inherited sharing.
  • Ans. 

    with sharing enforces sharing rules, without sharing doesn't enforce sharing rules, inherited sharing uses the sharing rules of the parent class

    • with sharing keyword enforces sharing rules specified in the organization-wide defaults

    • without sharing keyword doesn't enforce sharing rules, allowing access to all records

    • inherited sharing keyword uses the sharing rules of the parent class

  • Answered by AI
  • Q2. Explain async process in Salesforce
  • Ans. 

    Async process in Salesforce allows for executing tasks in the background without blocking the main thread.

    • Async processes in Salesforce are used to perform time-consuming operations without affecting the user experience.

    • Apex provides @future annotation for asynchronous processing.

    • Batch Apex is used for processing large data sets asynchronously.

    • Queueable Apex allows chaining of asynchronous jobs.

    • Platform Events can be u

  • Answered by AI
Round 3 - One-on-one 

(2 Questions)

  • Q1. Create table view for different profile and can have more then 60 column. How to implement dynamically
  • Ans. 

    Use dynamic SQL to create table view with more than 60 columns for different profiles

    • Use dynamic SQL to generate the CREATE VIEW statement based on the profile requirements

    • Iterate through the profile columns and add them to the CREATE VIEW statement dynamically

    • Consider using a loop or a mapping function to handle the large number of columns efficiently

  • Answered by AI
  • Q2. How to handle recursion
  • Ans. 

    Recursion is a programming technique where a function calls itself in order to solve a problem.

    • Identify the base case to stop the recursion

    • Ensure the recursive call moves towards the base case

    • Optimize recursion by using memoization or tail recursion

    • Examples: factorial calculation, Fibonacci sequence

  • Answered by AI

Interview Preparation Tips

Topics to prepare for Brillio Senior Software Engineer interview:
  • Salesforce CRM
  • Lwc
  • Sharing
  • Apex
  • Triggers

Skills evaluated in this interview

Interview experience
1
Bad
Difficulty level
Moderate
Process Duration
6-8 weeks
Result
No response
Round 1 - Technical 

(1 Question)

  • Q1. Java Coding questions
Round 2 - Technical 

(1 Question)

  • Q1. Coding plus java spring boot Microservices questions
Round 3 - Coding Test 

Develop java spring boot application from scratch

Round 4 - One-on-one 

(1 Question)

  • Q1. Coding questions. Real time questions on application
Round 5 - HR 

(1 Question)

  • Q1. Salary expectations

Interview Preparation Tips

Interview preparation tips for other job seekers - Please don't belive in HR from Altimetrik. They will conduct multiple rounds and waste your time. Finally they said you are selected and will release offer letter. But nothing positive will happen. There won't be any response after that. They don't even reply to our emails or phone calls. Most disgusting experience.
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Java 8 interview questions
  • Q2. Spring boot questions
Round 2 - Technical 

(1 Question)

  • Q1. Microservices strurcture and implementation
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Not Selected

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

Round 1 - Coding Test 

Two simple coding questions were asked.

Round 2 - Coding Test 

One multithreading questions was asked and few theoretical questions.

Round 3 - Technical 

(3 Questions)

  • Q1. Few code snippets were provided on OOPs and result was asked.
  • Q2. Sql query was asked.
  • Q3. Two more rounds are still left

Interview Preparation Tips

Topics to prepare for Wissen Technology Senior Software Engineer interview:
  • Core Java
  • Spring
  • Multithreading
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
Selected Selected

I applied via Naukri.com and was interviewed before Jan 2019. There were 4 interview rounds.

Interview Questionnaire 

3 Questions

  • Q1. Typical hr questions related to why do you want to join us. Why are you leaving your job.
  • Q2. 1.Db find second highest record. 2.group by query problem. 3.lambda expressions. 4.Hashmap implementations 5.Java tricky questions.
  • Q3. 2 questions asked pen paper round. This round is more about understanding analytics ability.

Interview Preparation Tips

Interview preparation tips for other job seekers - Not good company for seasoned craftsmen.
Office is too far from city centre.
Looks flashy from outside by promotions and GPTW certifications by inside it's too shaky.
No auditing of process by management, mentorship is which is of no use as leads keep telling existing employees not to help new person joined in the team.

Robosoft Technologies Interview FAQs

How many rounds are there in Robosoft Technologies Senior Software Engineer interview?
Robosoft Technologies interview process usually has 2-3 rounds. The most common rounds in the Robosoft Technologies interview process are Technical, Resume Shortlist and HR.
How to prepare for Robosoft Technologies Senior Software Engineer 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 Robosoft Technologies. The most common topics and skills that interviewers at Robosoft Technologies expect are AWS, Distribution System, AWS Lambda, Algorithms and Bash Scripting.
What are the top questions asked in Robosoft Technologies Senior Software Engineer interview?

Some of the top questions asked at the Robosoft Technologies Senior Software Engineer interview -

  1. Pass one data from parent to child compon...read more
  2. Ionic build step to release android and ...read more
  3. How do you code optimizat...read more

Tell us how to improve this page.

People are getting interviews through

based on 1 Robosoft Technologies interview
Referral
100%
Low Confidence
?
Low Confidence means the data is based on a small number of responses received from the candidates.
Robosoft Technologies Senior Software Engineer Salary
based on 282 salaries
₹8.2 L/yr - ₹31 L/yr
24% more than the average Senior Software Engineer Salary in India
View more details

Robosoft Technologies Senior Software Engineer Reviews and Ratings

based on 46 reviews

3.1/5

Rating in categories

3.4

Skill development

3.0

Work-Life balance

3.2

Salary & Benefits

2.6

Job Security

3.0

Company culture

2.9

Promotions/Appraisal

3.2

Work Satisfaction

Explore 46 Reviews and Ratings
Software Engineer
300 salaries
unlock blur

₹4.8 L/yr - ₹16.5 L/yr

Senior Software Engineer
282 salaries
unlock blur

₹8.2 L/yr - ₹31 L/yr

Associate Software Engineer
104 salaries
unlock blur

₹4.5 L/yr - ₹7 L/yr

Technical Lead
74 salaries
unlock blur

₹13.8 L/yr - ₹36 L/yr

Software Developer
44 salaries
unlock blur

₹5.2 L/yr - ₹10 L/yr

Explore more salaries
Compare Robosoft Technologies with

Persistent Systems

3.5
Compare

TCS

3.7
Compare

LTIMindtree

3.9
Compare

Mphasis

3.4
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