Upload Button Icon Add office photos

Filter interviews by

JLL Technologies Application Developer Interview Questions and Answers

Updated 10 Apr 2023

JLL Technologies Application Developer Interview Experiences

1 interview found

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

(1 Question)

  • Q1. Where are you from and what is your educational background?
Round 2 - Technical 

(1 Question)

  • Q1. Asked Java basics and SQL basics

Interview Preparation Tips

Interview preparation tips for other job seekers - Do preparation for Java and database. Study OOPs concepts. also, do SQL joints and solve questions on queries

Interview questions from similar companies

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

I applied via Company Website and was interviewed in Nov 2024. There were 2 interview rounds.

Round 1 - Technical 

(3 Questions)

  • Q1. Basics of Core Python concepts like Loops, Lambda functions.
  • Q2. Check if a string is Palindrome or not.
  • Ans. 

    Check if a string is Palindrome or not.

    • Create a function to compare the original string with its reverse

    • Ignore spaces and punctuation when checking for palindrome

    • Examples: 'racecar' is a palindrome, 'hello' is not

  • Answered by AI
  • Q3. Questions of Sql.
Round 2 - One-on-one 

(2 Questions)

  • Q1. What questions were asked regarding the projects you worked on, and what specific technicalities were included?
  • Q2. Questions on Django, Flask and REST API services.

Interview Preparation Tips

Topics to prepare for Accenture Application Developer interview:
  • Python
  • Django
  • Flask
  • SQL
Interview preparation tips for other job seekers - Easy going interview. Brush up-on your basics and then be prepared with your resume.
Interview experience
1
Bad
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
No response

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

Round 1 - Technical 

(2 Questions)

  • Q1. What is @SpringbootAnnotation and what is difference between @Controller and @RestController.
  • Ans. 

    SpringBootAnnotation is used to enable Spring Boot features in a Java application. @Controller is used for MVC pattern, @RestController is used for RESTful web services.

    • SpringBootAnnotation is used to enable Spring Boot features like auto-configuration, component scanning, etc.

    • @Controller is used for MVC pattern to handle web requests and return a view, while @RestController is used for RESTful web services to return d...

  • Answered by AI
  • Q2. What is Stream API write the Stream API Code any code and lambda expression.
  • Ans. 

    Stream API in Java provides a way to process collections of objects in a functional style.

    • Stream API allows for easy manipulation of collections using functional programming concepts like map, filter, and reduce.

    • Example: List names = Arrays.asList("Alice", "Bob", "Charlie"); names.stream().filter(name -> name.startsWith("A")).forEach(System.out::println);

    • Lambda expressions can be used with Stream API to define behavio...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - I interviewed at Accenture on 28Sep2024, technical interview was good, interviewer said you will be having another round I am passing my remarks to the team, after 5 min I got a call that update your details on the portal, after click on the link I received a mail that My candidature has been rejected on the portal.

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(4 Questions)

  • Q1. Explain role and responsibilities in your profile
  • Q2. Explain Ansible architecture
  • Ans. 

    Ansible architecture is based on a client-server model where the control machine communicates with managed nodes using SSH.

    • Ansible control machine: where playbooks are written and executed

    • Managed nodes: machines that are being managed by Ansible

    • Inventory: list of managed nodes

    • Playbooks: automation scripts written in YAML format

    • Modules: reusable units of code that perform specific tasks on managed nodes

  • Answered by AI
  • Q3. Difference between cmd and entry point
  • Ans. 

    Cmd is used to specify the default command to run when a container is started, while entry point is used to specify the executable that will run when the container starts.

    • Cmd is optional and can be overridden at runtime, while entry point is required and cannot be overridden.

    • Cmd is used to provide default arguments for the entry point command.

    • Example: CMD ["python", "app.py"] - specifies the default command to run the ...

  • Answered by AI
  • Q4. How to stop container
  • Ans. 

    To stop a container, use the 'docker stop' command followed by the container ID or name.

    • Use 'docker ps' command to list all running containers

    • Identify the container ID or name of the container you want to stop

    • Run 'docker stop ' to stop the container

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Explain what are the tool you have been working. mostly open-source software
  • Q2. Azure monitor tools and Azure Network issue question

Interview Preparation Tips

Interview preparation tips for other job seekers - First round will be more technical and second round is more like technical and managerial

Skills evaluated in this interview

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

I applied via Naukri.com and was interviewed in Jul 2024. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. Basic Questions related to Oops, SQL, MVC, C#
  • Q2. Basic Coding on Stored Procedure

Interview Preparation Tips

Interview preparation tips for other job seekers - Questions were related to skills mentioned on Resume. Prepare more on the project and skills mentioned on resume
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. What is bussniess rule ?
  • Ans. 

    A business rule is a specific guideline or constraint that dictates how a business operates or makes decisions.

    • Business rules are typically defined by stakeholders or subject matter experts.

    • They help ensure consistency, compliance, and efficiency in business processes.

    • Examples include age restrictions for purchasing alcohol, pricing strategies, and approval processes for expenses.

  • Answered by AI
  • Q2. What is update set?
  • Ans. 

    An update set is a group of changes that can be moved from one instance to another in ServiceNow.

    • Update sets are used to transport customizations, such as new fields, tables, or scripts, between instances.

    • They help in organizing changes and tracking what customizations are being moved.

    • Update sets can be previewed, committed, and rolled back if needed.

    • Example: Creating a new field in a development instance and moving it

  • Answered by AI

Skills evaluated in this interview

Interview experience
3
Average
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. COBOL, DB2 - Restart logic, Cursor life cycle
Interview experience
4
Good
Difficulty level
Easy
Process Duration
Less than 2 weeks
Result
Not Selected

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

Round 1 - Technical 

(2 Questions)

  • Q1. About primary keys (how columns can be accommodated in a single primary key)
  • Q2. Types of Constructors
  • Ans. 

    Constructors are special methods used to initialize objects in a class.

    • Constructors have the same name as the class.

    • Types of constructors include default, parameterized, copy, and static constructors.

    • Example: public class Person { public Person() { } }

  • Answered by AI

Skills evaluated in this interview

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

I applied via Recruitment Consulltant and was interviewed in Dec 2024. There was 1 interview round.

Round 1 - Technical 

(4 Questions)

  • Q1. What are the differences between a procedure and a function?
  • Q2. Write a query to find 3rd highest salary from each department
  • Q3. What is synonym.
  • Q4. What are the indexes you used ? Diff between bitmap and btree index
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Boxing Unboxing
  • Q2. Abstract class and interface

JLL Technologies Interview FAQs

How many rounds are there in JLL Technologies Application Developer interview?
JLL Technologies interview process usually has 3 rounds. The most common rounds in the JLL Technologies interview process are Resume Shortlist, HR and Technical.

Tell us how to improve this page.

Software Engineer2
18 salaries
unlock blur

₹20 L/yr - ₹23 L/yr

Senior Data Engineer
12 salaries
unlock blur

₹23 L/yr - ₹46 L/yr

Senior Software Engineer
12 salaries
unlock blur

₹15.6 L/yr - ₹44.8 L/yr

Data Quality Analyst
11 salaries
unlock blur

₹7.1 L/yr - ₹9 L/yr

Business Analyst
10 salaries
unlock blur

₹4.8 L/yr - ₹8 L/yr

Explore more salaries
Compare JLL Technologies with

CBRE

4.2
Compare

Colliers India

3.9
Compare

Cushman & Wakefield

4.2
Compare

Knight Frank

4.1
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