Upload Button Icon Add office photos

Filter interviews by

Bureau of Justice Statistics Android Developer Interview Questions, Process, and Tips

Updated 26 Jan 2021

Bureau of Justice Statistics Android Developer Interview Experiences

1 interview found

Interview Questionnaire 

5 Questions

  • Q1. Difference between int and Int and Integer ?
  • Ans. 

    int is a primitive data type, Int is a class in Kotlin, and Integer is a class in Java.

    • int is a primitive data type in Java and Kotlin

    • Int is a class in Kotlin that represents a nullable integer

    • Integer is a class in Java that wraps an int value and provides utility methods

  • Answered by AI
  • Q2. Difference between heap memory and stack memory?
  • Ans. 

    Heap memory is dynamic memory allocation while stack memory is static memory allocation.

    • Heap memory is allocated at runtime while stack memory is allocated at compile time.

    • Heap memory is accessed through pointers while stack memory is accessed through variables.

    • Heap memory is used for dynamic data structures like linked lists while stack memory is used for function calls and local variables.

    • Heap memory is slower than s...

  • Answered by AI
  • Q3. What is kotlin ? Why to use it ?
  • Ans. 

    Kotlin is a statically typed programming language for modern multiplatform applications.

    • Kotlin is interoperable with Java and can be used for Android app development.

    • It is concise, expressive, and reduces boilerplate code.

    • Kotlin has null safety features that prevent null pointer exceptions.

    • It supports functional programming and has coroutines for asynchronous programming.

    • Kotlin is officially supported by Google for And

  • Answered by AI
  • Q4. What is diamond problem?
  • Ans. 

    Diamond problem is a multiple inheritance issue where a class inherits from two classes with a common parent.

    • Occurs in languages that support multiple inheritance

    • Results in ambiguity in method calls

    • Can be resolved using virtual inheritance

    • Example: Class A -> Class B and Class C -> Class B, Class D inherits from both B and C

  • Answered by AI
  • Q5. Why Java not fully object oriented language?
  • Ans. 

    Java is not fully object-oriented because it supports primitive data types and has static methods.

    • Java has primitive data types like int, float, etc. which are not objects.

    • Java allows the use of static methods which do not belong to any object.

    • Java does not support multiple inheritance, which is a characteristic of fully object-oriented languages.

    • However, Java supports encapsulation, inheritance, and polymorphism, whic...

  • Answered by AI

Skills evaluated in this interview

Interview questions from similar companies

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

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

Round 1 - Technical 

(1 Question)

  • Q1. SOLID principles, jetpack compose, scope functions
Interview experience
4
Good
Difficulty level
Moderate
Process Duration
More than 8 weeks
Result
Not Selected

I applied via Recruitment Consulltant and was interviewed in Jun 2024. There were 2 interview rounds.

Round 1 - Technical 

(2 Questions)

  • Q1. What is MVVM design how it's work
  • Ans. 

    MVVM is a design pattern that separates the UI, business logic, and data layers in an Android app.

    • MVVM stands for Model-View-ViewModel.

    • Model represents the data and business logic.

    • View is the UI component that displays the data.

    • ViewModel acts as a mediator between the Model and View, handling user interactions and updating the UI.

    • Data binding is often used to connect the ViewModel with the View in MVVM.

    • Example: In an A...

  • Answered by AI
  • Q2. What is a Content Provider
  • Ans. 

    A Content Provider is a component in Android that manages access to a structured set of data.

    • Content Providers are used to share data between different applications.

    • They provide a standard interface for connecting data in one process with code running in another process.

    • Content Providers can be used to store and retrieve data from a SQLite database, a file, or even the web.

    • Examples of Content Providers include Contacts

  • Answered by AI
Round 2 - Technical 

(2 Questions)

  • Q1. Internally how work retrofit and which patter is follow
  • Q2. Solid Priciple

Skills evaluated in this interview

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

(2 Questions)

  • Q1. All technical Jetpack concept no DSA questions and asked all theoretical questions
  • Q2. What are coroutine, how to secure ur app data, network call in android , ssl pinning, notification's implementation through FCM, android basic questions
  • Ans. 

    Coroutines are a way to perform asynchronous operations in Android, securing app data involves encryption, SSL pinning enhances security, FCM for notifications.

    • Coroutines are used for managing asynchronous operations in Android, allowing for efficient and non-blocking code execution.

    • Securing app data involves using encryption techniques such as AES to protect sensitive information from unauthorized access.

    • SSL pinning i...

  • Answered by AI

Interview Preparation Tips

Interview preparation tips for other job seekers - Learn this topics and also DSA questions get asked in coding round and be consistent

Skills evaluated in this interview

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

(2 Questions)

  • Q1. What is Android Manifest
  • Q2. What are services
Interview experience
5
Excellent
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic technical knowledge question
  • Q2. Android related questions
Round 2 - HR 

(2 Questions)

  • Q1. Communication skill
  • Q2. Salary regarding questions
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(2 Questions)

  • Q1. Basic data structure questions
  • Q2. Explain binary search with example
  • Ans. 

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

    • Divide the array into two halves and compare the target value with the middle element.

    • If the target value is less than the middle element, search the left half. If greater, search the right half.

    • Repeat the process until the target value is found or the subarray is empty.

  • Answered by AI
Round 2 - Technical 

(1 Question)

  • Q1. What is concurrency technique in android
  • Ans. 

    Concurrency technique in Android allows multiple tasks to run simultaneously, improving performance and responsiveness.

    • Concurrency in Android can be achieved using AsyncTask, Handlers, Executors, and RxJava.

    • AsyncTask allows running background tasks on a separate thread and updating UI on the main thread.

    • Handlers are used to post and process Runnable objects on a thread's message queue.

    • Executors provide a high-level API...

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

(1 Question)

  • Q1. Explain about previous project and what was your role in that project

Skills evaluated in this interview

Android Developer Interview Questions & Answers

TCS user image Shashank Singh

posted on 26 Jun 2024

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

(2 Questions)

  • Q1. How to check if a number is palindrome?
  • Ans. 

    To check if a number is palindrome, reverse the number and compare it with the original number.

    • Convert the number to a string to easily reverse it

    • Reverse the string and compare it with the original string

    • If they are the same, the number is a palindrome

  • Answered by AI
  • Q2. How to find smallest number in a list?
  • Ans. 

    To find the smallest number in a list, iterate through the list and keep track of the smallest number found so far.

    • Iterate through the list and compare each number with the current smallest number.

    • If a number is smaller than the current smallest number, update the smallest number.

    • Return the smallest number found after iterating through the entire list.

  • Answered by AI

Skills evaluated in this interview

Interview experience
5
Excellent
Difficulty level
Moderate
Process Duration
2-4 weeks
Result
No response

I applied via Naukri.com and was interviewed in Nov 2023. There was 1 interview round.

Round 1 - Technical 

(2 Questions)

  • Q1. DONT REMEMBER THE QUESTIONS
  • Q2. I FORGOT THE QUESTION ASKED

Interview Preparation Tips

Interview preparation tips for other job seekers - BE PREPARED
Interview experience
4
Good
Difficulty level
-
Process Duration
-
Result
-
Round 1 - Technical 

(1 Question)

  • Q1. Sort array in 0(n) time complexity
  • Ans. 

    Use counting sort algorithm to achieve O(n) time complexity.

    • Count the frequency of each string in the array.

    • Create a new array based on the frequency counts.

    • Iterate through the new array to reconstruct the sorted array.

  • Answered by AI
Round 2 - Coding Test 

Coding test based on array

Skills evaluated in this interview

Bureau of Justice Statistics Interview FAQs

What are the top questions asked in Bureau of Justice Statistics Android Developer interview?

Some of the top questions asked at the Bureau of Justice Statistics Android Developer interview -

  1. Why Java not fully object oriented langua...read more
  2. Difference between int and Int and Intege...read more
  3. Difference between heap memory and stack memo...read more

Tell us how to improve this page.

Software Developer
3 salaries
unlock blur

₹3.2 L/yr - ₹5 L/yr

Program Manager
3 salaries
unlock blur

₹13 L/yr - ₹18 L/yr

Relationship Manager
3 salaries
unlock blur

₹9.4 L/yr - ₹12.4 L/yr

Customer Service Executive
3 salaries
unlock blur

₹2.7 L/yr - ₹3.3 L/yr

Customer Service Advisor
3 salaries
unlock blur

₹3.3 L/yr - ₹3.3 L/yr

Explore more salaries
Compare Bureau of Justice Statistics with

Reliance Industries

4.0
Compare

Tata Group

4.2
Compare

Aditya Birla Group

4.1
Compare

Hindustan Unilever

4.2
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