Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Questions | Answers | Discussions | Knowledge sharing | Communities & more.
What is a tsunami, and how is it typically triggered?
A tsunami is a series of extremely long waves caused by a large and sudden displacement of the ocean, usually the result of an earthquake below or near the ocean floor.
A tsunami is a series of extremely long waves caused by a large and sudden displacement of the ocean, usually the result of an earthquake below or near the ocean floor.
See lessWho was the first woman chief minister of India?
Sucheta Kriplani was first CM in India
Sucheta Kriplani was first CM in India
See lessWho was the first woman chief minister of India?
Sucheta Kriplani was first CM in India
Sucheta Kriplani was first CM in India
See lessWhat is the difference between the “==” operator and the “.equals()” method in Java?
reference equality: In Java, "==" is used for reference equality, which means that it checks whether two objects refer to the same memory location. example of code: String s1 = "hello"; String s2 = new String("hello"); if (s1 == s2) { System.out.println("s1 and s2 are the same object"); } else { Read more
reference equality:
In Java, “==” is used for reference equality, which means that it checks whether two objects refer to the same memory location.
example of code:
String s1 = “hello”;
String s2 = new String(“hello”);
if (s1 == s2) {
System.out.println(“s1 and s2 are the same object”);
} else {
System.out.println(“s1 and s2 are different objects”);
}
output: s1 and s2 ar different objects.
value equality,equals() method:
Value equality takes place when two separate objects happen to have the same values or state.This compares values and is closely related to the Object’s equals() method.
example-
String s1 = “hello”;
String s2 = new String(“hello”);
if (s1.equals(s2)){
See lessSystem.out.println(“s1 and s2 have the same value”);
} else {
System.out.println(“s1 and s2 have different values”);
}
output – s1 and s2 have same value.
Who was the first woman chief minister of India?
Sucheta Kriplani, India's first woman chief minister, was a fearless fighter for the country's independence. Born on 25 June 1908 in Ambala,Haryana., Sucheta's keen interest in politics took root at a young age, when British rule was at its peak
Sucheta Kriplani, India’s first woman chief minister, was a fearless fighter for the country’s independence. Born on 25 June 1908 in Ambala,Haryana., Sucheta’s keen interest in politics took root at a young age, when British rule was at its peak
See lessCan I make an Android app with Python?
yes, you can but you will need a framework to convert the code into Android's operating system.
yes, you can but you will need a framework to convert the code into Android’s operating system.
See lessWhat is a drought, and what impact does it have on the environment?
Drought is an extended period of unusually dry weather when there is not enough rain. The lack of precipitation can cause a variety of problems for local communities, including damage to crops and a shortage of drinking water.
Drought is an extended period of unusually dry weather when there is not enough rain. The lack of precipitation can cause a variety of problems for local communities, including damage to crops and a shortage of drinking water.
See lessWhat is a drought, and what impact does it have on the environment?
Drought is an extended period of unusually dry weather when there is not enough rain. The lack of precipitation can cause a variety of problems for local communities, including damage to crops and a shortage of drinking water.
Drought is an extended period of unusually dry weather when there is not enough rain. The lack of precipitation can cause a variety of problems for local communities, including damage to crops and a shortage of drinking water.
See lessDoes SQL support programming language features?
SQL or Structured Query Language is the language we use to work with relational database management systems like MySQL, ORACLE, SQL Server, etc
SQL or Structured Query Language is the language we use to work with relational database management systems like MySQL, ORACLE, SQL Server, etc
See lessWhat is a tsunami, and how is it typically triggered?
Tsunamis are caused by violent seafloor movement associated with earthquakes, landslides, lava entering the sea, seamount collapse, or meteorite impact. The most common cause is earthquakes.
Tsunamis are caused by violent seafloor movement associated with earthquakes, landslides, lava entering the sea, seamount collapse, or meteorite impact. The most common cause is earthquakes.
See less