logo

CuriousTab

CuriousTab

Discussion


Home Interview Technology Comments

  • Question
  • Difference between Arraylist and Linked list?


  • Correct Answer
  • ArrayList and LinkedList both implements List interface and maintains insertion order Both are non synchronized classes But there are many differences between ArrayList and LinkedList classes that are given below ArrayList V/s LinkedList :: 1) ArrayList internally uses dynamic array to store the elements Whereas LinkedList internally uses doubly linked list to store the elements 2) Manipulation with ArrayList is slow because it internally uses array If any element is removed from the array, all the bits are shifted in memory Whereas Manipulation with LinkedList is faster than ArrayList because it uses doubly linked list so no bit shifting is required in memory 3) ArrayList class can act as a list only because it implements List only Whereas LinkedList class can act as a list and queue both because it implements List and Deque interfaces 4) ArrayList is better for storing and accessing data Whereas LinkedList is better for manipulating data 

  • Tags: Project Manager, IT Trainer, Database Administrator, Analyst

    Technology problems


    Search Results


    • 1. How to identify a given positive decimal number as even/odd without using % or / operator ?
    • Discuss
    • 2. Which containers use a FlowLayout as their default layout ?
    • Discuss
    • 3. What is WATER MARK in oracle? Explain the significance of High water mark.
    • Discuss
    • 4. What?s the difference between htmlentities() and htmlspecialchars()?
    • Discuss
    • 5. Record set types and Number available in VB?
    • Discuss
    • 6. What is Spring IoC container ?
    • Discuss
    • 7. How can you avoid callback hells ?
    • Discuss
    • 8. What is the difference between ViewState and SessionState?
    • Discuss
    • 9. What is immutable object? Can you write immutable object ?
    • Discuss
    • 10. Which of the following are incorrect form of StringBuffer class constructor ?

    • Options
    • A. StringBuffer(int size , String str)
    • B. StringBuffer(int size)
    • C. StringBuffer(String str)
    • D. StringBuffer()
    • Discuss


    Comments

    There are no comments.

Enter a new Comment