- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who

Updated on 30-Jul-2019 22:30:24
Religion is a system of belief in a higher, unseen power along with certain rights for worship. It is the metaphysics of the masses. It involves respect for the authority, so, belonging to a religious group means following its beliefs and practices. According to James Livingston:"Religion is that system of activities and beliefs directed toward that which is perceived to be of sacred value and transforming power."Major ConflictData does not speak for themselves. It must always be interpreted either by the standards of the community being observed or by outside criteria brought to the study by an analyst. Similarly, there ... Read More 
Updated on 30-Jul-2019 22:30:24
To know the biggest value from two or more fields, use the function GREATEST() from MySQL.The syntax is as follows −SELECT GREATEST(MAX(yourColumnName1), MAX(yourColumnName2), ...............MAX(yourColumnName2) ) from yourTableName;Let us understand the above concept by creating a table with more than two columns −mysql> create table GreatestOfTwoOrMore -> ( -> Marks1 int, -> Marks2 int, -> Marks3 int -> ); Query OK, 0 rows affected (0.57 sec)Here is the query to insert records in a table −mysql> insert into GreatestOfTwoOrMore values(23, 78, 89); Query OK, 1 row ... Read More 
Updated on 30-Jul-2019 22:30:24
To get records from NOW()-1 Day, you can use the following syntax −select *from yourTableName where yourColumnName >=now()-interval 1 day;To understand the above syntax, let us first create a table. The query to create a table.mysql> create table GetRecordsFromNow −> ( −> YourDateTime datetime −> ); Query OK, 0 rows affected (1.76 sec)Now insert some dates into the fields. The query to insert records are as follows −mysql> insert into GetRecordsFromNow values(date_add(now(), interval 3 day)); Query OK, 1 row affected (0.28 sec) mysql> insert into GetRecordsFromNow values(date_add(now(), interval -1 day)); ... Read More 
Updated on 30-Jul-2019 22:30:24
Use the containsKey() method and check if a given key exists in the HashMap or not.Let us first create HashMap and add some elements −// Create a hash map HashMap hm = new HashMap(); // Put elements to the map hm.put("Bag", new Integer(1100)); hm.put("Sunglasses", new Integer(2000)); hm.put("Frames", new Integer(800)); hm.put("Wallet", new Integer(700)); hm.put("Belt", new Integer(600));Now, let’s say we need to check whether the key “Bag” exists or not, For that, use the containsKey() method like this −hm.containsKey("Bag")The following is an example to check if a given key exists in HashMap −Example Live Demoimport java.util.*; public class Demo { ... Read More 
Updated on 30-Jul-2019 22:30:24
The Skin gets its color due to the pigment called as Melanin present in the body. The skin color depends upon the color-producing cells called as Melanocytes. Pigmentation or Hyperpigmentation is the condition where the patches of the skin get darkened.Reasons for HyperpigmentationTanningSkin damageImproper hair removalHormonal changesAllergiesNatural Remedies for HyperpigmentationLemon/LimePapayaOrangeHoneyRed OnionNatural OilsAvocadosApple Cider VinegarCucumberAlmondsSandalwood oilYogurtTomato, Yoghurt and Oatmeal maskLemon juice and Turmeric powderIn order to avoid Hyperpigmentation, one needs to avoid direct exposure to the sun and should have a healthy diet. Maintenance of personal hygiene is also very important.
Updated on 30-Jul-2019 22:30:24
An Eclipse is formed when a celestial body is obscured by another. We know that eclipses occur when sun, moon and earth align in a straight line. The Solar eclipse occurs when the moon comes in between the sun and the earth. The Lunar eclipse is formed when the earth blocks the way for the sunlight to reach the moon.The umbra is the innermost and darkest part of the shadow, which is the area when an observer can experience the eclipse completely. The Penumbra is the area in which only a portion of the light is obscured by the occluding ... Read More 
Updated on 30-Jul-2019 22:30:24
To fetch LinkedHashSet key-value pair in Java, use the entrySet() method.Let us first create LinkedHashSet and add some elements −LinkedHashMap l = new LinkedHashMap(); l.put("1", "Jack"); l.put("2", "Tom"); l.put("3", "Jimmy"); l.put("4", "Morgan"); l.put("5", "Tim"); l.put("6", "Brad");Now, fetch a key-value pair −l.entrySet()The following is an example to fetch key-value pair from LinkedHashSet −Example Live Demoimport java.util.*; public class Demo { public static void main(String[] args) { LinkedHashMap l = new LinkedHashMap(); l.put("1", "Jack"); l.put("2", "Tom"); l.put("3", "Jimmy"); l.put("4", "Morgan"); l.put("5", "Tim"); ... Read More 
Updated on 30-Jul-2019 22:30:24
Maintaining good social relationship with the families in your vicinity ensures a better social life. But, that does not mean that you will tolerate anything to maintain good relations. Many folks love to watch television at high volume, which causes the people around a huge trouble. Different people read a given situation in very different manner. While you may simply get frustrated sitting at your home, over this trivial matter (which your thoughts have made a big mountain), your neighbor may still enjoy the life.The easiest and most effective way to handle the situation is by communicating your problem to ... Read More 
Updated on 30-Jul-2019 22:30:24
There is an old saying, ”Boss is always right.” I wonder if it is correct! It is certainly not, as no one on this entire planet can be perfect. But then what to do in case of a haughty boss who is unyielding in all respects?Never React, Simply Respond: It may happen in the heat of the moment, the boss may yell at us. But later, when he even comes back to his senses, he realizes his mistake and may feel sorry in his heart. So, be patient.Document Everything: Inappropriate speech, bad reviews, bad behavior all should be noted by ... Read More 
Updated on 30-Jul-2019 22:30:24
Is pizza healthy or not? This question makes the Pizza lovers but health-conscious folks wonder whenever they boar a seat to have a heavenly delicious treat. It's true that the health factor of this dish depends on a number of factors:ToppingsCrust constituentsThe proportion of pizza slice one eatsThe frequency of eating pizzaAny additional flavors addedThe picture is of homemade pizza. If one enjoys pizza on a regular basis, one should try making it at home using healthier ingredients, such as whole wheat crust, skimmed mozzarella cheese, and tomato sauce without added salt and top it with lots of vegetables.Market pizza ... Read More Advertisements