Add office photos
Employer?
Claim Account for FREE

Checkpoint Systems

3.1
based on 38 Reviews
Filter interviews by

SMARTe Interview Questions and Answers

Updated 16 Sep 2024

Q1. How do you find middle of linkedlist

Ans.

To find the middle of a linked list, use the slow and fast pointer technique.

  • Initialize two pointers, slow and fast, at the head of the linked list.

  • Move the slow pointer by one node and the fast pointer by two nodes until the fast pointer reaches the end of the list.

  • The node pointed to by the slow pointer at this point is the middle of the linked list.

Add your answer

Q2. what is anr how to prevent

Ans.

ANR stands for Application Not Responding, it occurs when the main UI thread is blocked for too long.

  • ANR can be prevented by offloading long-running tasks to background threads or services.

  • Optimizing code and reducing UI thread workload can also help prevent ANR.

  • Using tools like StrictMode can help identify potential ANR issues during development.

Add your answer

Q3. Threading and its method

Ans.

Threading in Android allows multiple tasks to run concurrently, improving performance and responsiveness.

  • Threading can be implemented using classes such as AsyncTask, Handler, and Thread.

  • AsyncTask is used for short background tasks that need to update the UI, while Handler is used for communication between threads.

  • Thread is a low-level way to create a new thread for longer background tasks.

  • Care must be taken to avoid memory leaks and ensure thread safety when working with thr...read more

Add your answer

Q4. arraylist vs linklist

Ans.

ArrayList is faster for accessing elements, while LinkedList is better for frequent insertions and deletions.

  • ArrayList uses an array to store elements, allowing for fast random access but slower insertions and deletions.

  • LinkedList uses nodes with references to the next and previous elements, making insertions and deletions faster but access slower.

  • For example, if you need to frequently add or remove elements in the middle of a list, LinkedList would be more efficient.

Add your answer
Discover SMARTe interview dos and don'ts from real experiences

Q5. Explain tcp flow

Ans.

TCP flow refers to the sequence of packets exchanged between two devices over a TCP connection.

  • TCP flow involves the establishment, data transfer, and termination of a TCP connection.

  • It includes the exchange of TCP segments containing data, acknowledgment, and control information.

  • TCP flow control mechanisms like sliding window and congestion control help regulate the flow of data.

  • TCP flow can be analyzed using tools like Wireshark to troubleshoot network issues.

Add your answer

Q6. Explain dns flow

Ans.

DNS flow refers to the process of how a DNS query is resolved from start to finish.

  • Client sends a DNS query to the recursive resolver.

  • Recursive resolver checks its cache for the answer, if not found, it sends the query to authoritative nameservers.

  • Authoritative nameservers respond with the IP address of the requested domain.

  • Recursive resolver caches the response and sends it back to the client.

  • Client now has the IP address and can connect to the requested domain.

Add your answer
Contribute & help others!
Write a review
Share interview
Contribute salary
Add office photos

Interview Process at SMARTe

based on 6 interviews
Interview experience
3.2
Average
View more
Interview Tips & Stories
Ace your next interview with expert advice and inspiring stories

Top Interview Questions from Similar Companies

4.0
 • 603 Interview Questions
4.4
 • 435 Interview Questions
4.1
 • 407 Interview Questions
3.5
 • 256 Interview Questions
4.0
 • 255 Interview Questions
4.4
 • 202 Interview Questions
View all
Top Checkpoint Systems Interview Questions And Answers
Share an Interview
Stay ahead in your career. Get AmbitionBox app
qr-code
Helping over 1 Crore job seekers every month in choosing their right fit company
75 Lakh+

Reviews

5 Lakh+

Interviews

4 Crore+

Salaries

1 Cr+

Users/Month

Contribute to help millions

Made with ❤️ in India. Trademarks belong to their respective owners. All rights reserved © 2024 Info Edge (India) Ltd.

Follow us
  • Youtube
  • Instagram
  • LinkedIn
  • Facebook
  • Twitter