Upload Button Icon Add office photos
Engaged Employer

i

This company page is being actively managed by Trawex Technologies Team. If you also belong to the team, you can get access from here

Trawex Technologies Verified Tick

Compare button icon Compare button icon Compare

Filter interviews by

Trawex Technologies Senior IOS Developer Interview Questions and Answers

Updated 23 Dec 2024

Trawex Technologies Senior IOS Developer Interview Experiences

1 interview found

Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(1 Question)

  • Q1. About yourself only

Interview questions from similar companies

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
Not Selected
Round 1 - Coding Test 

Discussion on experience and current role and responsibilities

Round 2 - Technical 

(2 Questions)

  • Q1. 1. Discuss one past project
  • Q2. 2. Design a job scheduler
  • Ans. 

    A job scheduler is a software application that manages the scheduling of tasks or jobs to be executed by a computer system.

    • Define the job scheduling requirements such as priority, deadline, resource constraints, etc.

    • Implement a scheduling algorithm like First Come First Serve, Shortest Job First, Round Robin, etc.

    • Maintain a queue of jobs to be executed and allocate resources accordingly.

    • Monitor job execution and handle...

  • Answered by AI

Skills evaluated in this interview

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

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

Round 1 - Technical 

(1 Question)

  • Q1. Promises in javascript
  • Ans. 

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

    • Promises are used to handle asynchronous operations in JavaScript.

    • 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.

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - One-on-one 

(3 Questions)

  • Q1. Resume based questions
  • Q2. Event loop in nodejs
  • Ans. 

    Event loop in Node.js manages asynchronous operations by executing callback functions when certain events occur.

    • Event loop is responsible for handling I/O operations, timers, and callbacks in Node.js

    • It allows Node.js to perform non-blocking operations efficiently

    • Event loop continuously checks the event queue for new events to execute

  • Answered by AI
  • Q3. Javascript es6 questions

Skills evaluated in this interview

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 Aug 2024. There were 3 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. Let var const difference
  • Ans. 

    var, let, and const are all used to declare variables in JavaScript, but they have different scopes and mutability.

    • var is function-scoped and can be redeclared and reassigned

    • let is block-scoped and can be reassigned but not redeclared

    • const is block-scoped and cannot be reassigned or redeclared

  • Answered by AI
  • Q2. Polyfills of bind method
  • Ans. 

    Polyfills of bind method provide a way to use the bind method in older browsers that do not support it natively.

    • Polyfill code typically checks if the bind method is available and if not, it creates a new function that mimics the behavior of bind.

    • One common polyfill for the bind method is the following: Function.prototype.bind = Function.prototype.bind || function() { // polyfill code here };

    • Polyfills are often used to ...

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Make a search bar in React
  • Ans. 

    Create a search bar component in React for filtering data

    • Create a functional component for the search bar

    • Use state to store the search query

    • Implement a onChange event handler to update the search query

    • Filter the data based on the search query

  • Answered by AI
  • Q2. React js core concepts
Round 3 - HR 

(2 Questions)

  • Q1. How you structure your work
  • Ans. 

    I structure my work by breaking down tasks, setting priorities, creating timelines, and regularly reviewing progress.

    • Break down tasks into smaller, manageable chunks

    • Set priorities based on deadlines and importance

    • Create timelines to track progress and ensure timely completion

    • Regularly review progress and adjust plans as needed

  • Answered by AI
  • Q2. How you make a project from scratch
  • Ans. 

    To make a project from scratch, start by defining requirements, creating a plan, designing the architecture, implementing the code, testing, and deploying.

    • Define project requirements and goals

    • Create a project plan with timelines and milestones

    • Design the architecture of the project, including database schema and system components

    • Implement the code following best practices and coding standards

    • Test the project thoroughly ...

  • Answered by AI

Skills evaluated in this interview

Interview experience
4
Good
Difficulty level
Moderate
Process Duration
4-6 weeks
Result
Not Selected

I appeared for an interview in Feb 2025.

Round 1 - Coding Test 

Coding Test included communication test, apti and reasoning and coding.

Round 2 - Technical 

(2 Questions)

  • Q1. SQL- Based Question
  • Q2. HTML Question
Round 3 - Technical 

(2 Questions)

  • Q1. Javascript Question
  • Q2. Thinking ability question
Interview experience
2
Poor
Difficulty level
-
Process Duration
-
Result
-
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 - One-on-one 

(2 Questions)

  • Q1. How to detect Android location
  • Ans. 

    Android location can be detected using LocationManager and LocationListener classes.

    • Create an instance of LocationManager class

    • Check if location services are enabled

    • Request location updates using LocationListener class

    • Implement onLocationChanged() method to get location updates

    • Use getLastKnownLocation() method to get last known location

    • Add necessary permissions in AndroidManifest.xml file

  • Answered by AI
  • Q2. How to work on maps
  • Ans. 

    Maps can be worked on using Google Maps API or other third-party libraries.

    • Choose a map provider and obtain an API key

    • Integrate the API into your app

    • Add markers, polylines, and polygons to the map

    • Implement location tracking and geocoding

    • Customize the map's appearance and behavior

  • Answered by AI
Round 3 - HR 

(1 Question)

  • Q1. When can you join US

Interview Preparation Tips

Interview preparation tips for other job seekers - Nothing much just share your project , demonstration is required

Skills evaluated in this interview

Interview Questionnaire 

2 Questions

  • Q1. IOS basic question with root knowledge
  • Q2. Multithreading, multitasking

Interview Preparation Tips

Round: Resume Shortlist
Experience: It's first step to introduced with company so please make your resume more attractive.
Describes only what do you know and what is your unique qualities.
Tips: Make it simple and short with precious information.

I applied via Referral and was interviewed before May 2021. There was 1 interview round.

Round 1 - Technical 

(1 Question)

  • Q1. Go through Swift. Ord doc and keep the concept clear and should be sufficient enough to crack the interview. Prepare some string based coding problems. Also can ask you about implementing protocols and sim...

Interview Preparation Tips

Interview preparation tips for other job seekers - Keep your basic clear. And be confident about the answers. If you don't know something ask to skip the question

Interview Questionnaire 

1 Question

  • Q1.  difference between let vs var
  • Ans. 

    let is used to declare a constant while var is used to declare a variable.

    • let is immutable while var is mutable

    • let can only be assigned once while var can be assigned multiple times

    • let is preferred over var for safety and performance reasons

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - basic swift mvvm mvc. sdvfefef

Skills evaluated in this interview

Trawex Technologies Interview FAQs

How many rounds are there in Trawex Technologies Senior IOS Developer interview?
Trawex Technologies interview process usually has 1 rounds. The most common rounds in the Trawex Technologies interview process are One-on-one Round.

Tell us how to improve this page.

Trawex Technologies Senior IOS Developer Interview Process

based on 1 interview

Interview experience

5
  
Excellent
View more

Trawex Technologies Senior IOS Developer Reviews and Ratings

based on 4 reviews

5.0/5

Rating in categories

5.0

Skill development

5.0

Work-life balance

5.0

Salary

5.0

Job security

5.0

Company culture

5.0

Promotions

5.0

Work satisfaction

Explore 4 Reviews and Ratings
Digital Marketing Executive
10 salaries
unlock blur

₹1.8 L/yr - ₹3 L/yr

PHP Developer
8 salaries
unlock blur

₹3 L/yr - ₹5.5 L/yr

Quality Analyst
7 salaries
unlock blur

₹2 L/yr - ₹4 L/yr

Business Development Executive
7 salaries
unlock blur

₹3 L/yr - ₹10 L/yr

Digital Marketing Analyst
5 salaries
unlock blur

₹0.2 L/yr - ₹12.5 L/yr

Explore more salaries
Compare Trawex Technologies with

Global Edge Software

3.5
Compare

Moveinsync Technology Solutions

3.4
Compare

Pagarbook

3.6
Compare

Atidan Technologies

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