You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+49Lines changed: 49 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -987,4 +987,53 @@ Concurrent accumulator classes that enable you to very efficiently increase / de
987
987
988
988
---
989
989
990
+
### 66. Difference between hot storage vs cold storage?
991
+
992
+
**Hot storage:** represents frequently used and critical files stored at the edge for fast local access.
993
+
994
+
**Warm storage:** is often illustrated as files stored on a cloud storage gateway or file server/NAS for fast retrieval, most often at a corporate headquarters or remote office/branch office (ROBO).
995
+
996
+
**Cold storage:** doesn’t require fast access. It mostly represents archived materials and infrequently accessed projects and documents. These are increasingly stored in low-cost object and cloud storage tiers
997
+
998
+
**[Back to Top](https://github.com/aatul/Java-Interview-Questions-Answers/blob/master/README.md#java-interview-questions-answers)**
999
+
1000
+
---
1001
+
1002
+
### 67. What is an abstract class in java?
1003
+
1004
+
A class which is declared with the abstract keyword is known as an abstract class in Java. It can have abstract and non-abstract methods (method with the body). Abstraction is a process of hiding the implementation details and showing only functionality to the user.
1005
+
1006
+
**[Back to Top](https://github.com/aatul/Java-Interview-Questions-Answers/blob/master/README.md#java-interview-questions-answers)**
1007
+
1008
+
---
1009
+
1010
+
### 68. What is the interface?
1011
+
1012
+
An interface in Java is a blueprint of a class. It has static constants and abstract methods. The interface in Java is a mechanism to achieve abstraction. There can be only abstract methods in the Java interface, not method bodies. It is used to achieve abstraction and multiple inheritance in Java. In other words, you can say that interfaces can have abstract methods and variables. It cannot have a method body. Java Interface also represents the IS-A relationship.
1013
+
1014
+
**[Back to Top](https://github.com/aatul/Java-Interview-Questions-Answers/blob/master/README.md#java-interview-questions-answers)**
1015
+
1016
+
---
1017
+
1018
+
### 69. Use of equals in JAVA?
1019
+
1020
+
The equals() method compares two strings, and returns true if the strings are equal, and false if not.
1021
+
1022
+
**[Back to Top](https://github.com/aatul/Java-Interview-Questions-Answers/blob/master/README.md#java-interview-questions-answers)**
1023
+
1024
+
---
1025
+
1026
+
### 70. What is EKS?
1027
+
1028
+
Amazon Elastic Kubernetes Service (Amazon EKS) is a managed service that you can use to run Kubernetes on AWS without needing to install, operate, and maintain your own Kubernetes control plane or nodes.
1029
+
1030
+
Amazon Elastic Container Service for Kubernetes (EKS) is a cloud-based container management service that natively integrates with Kubernetes to deploy applications.
1031
+
1032
+
The EKS service automatically manages and scales clusters of infrastructure resources on AWS with Kubernetes, an open source tool for container orchestration that can be difficult for an enterprise to administer on its own.
1033
+
With Amazon EKS, an enterprise can use Kubernetes without having to install, operate or manage the container orchestration software.
1034
+
1035
+
**[Back to Top](https://github.com/aatul/Java-Interview-Questions-Answers/blob/master/README.md#java-interview-questions-answers)**
0 commit comments