- 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
In India, we have 12 major rivers such as Ganga, Yamuna, Narmada, Saraswathi, Godavari, Krishna, Kaveri, Bhima, Tapati, Tungabhadra, Sindhu, Pranhita for which the Pushkaram festival is celebrated for each river according to the zodiac sign of that river. The 12 days after the Jupiter enters that particular zodiac sign will be the Pushkaram/Pushkaralu which is a 12-day festival for that river. Hence Pushkaralu comes for every 12 years.What is Pushkaralu?According to the Hindu Mythology and Astrology, all the sins committed till now and in the past life will vanish, if a person takes a dip in the holy water ... Read More 
Updated on 30-Jul-2019 22:30:24
There can be many reasons for "why your girlfriend never appreciates you"?You don't deserve a comment.You always criticize her and never appreciate her. You get back in life what you give to others. Law of life 😄😄You are above such trivial things and does not brag for appreciation for petty things.You might have given her the vibes that you don't need any appreciations and you are cool.She knows that you will not leave her even if she does not show any love or interest in you.This reason may break your heart but 99 times out of 100, this will be ... Read More 
Updated on 30-Jul-2019 22:30:24
When a new product developed, the Research and Development department initiate and perform an intensive study and get the details to support the project. Research and Development departments help corporations stay ahead of the competition, utilize new technology, and produce goods more efficiently. This is just the purpose of any research.Research PhaseThe research phase includes determining product specifications, production costs, and a production timeline.It contributes to the development, as a scientist or inventor in the field of Science and Technology. The research plan is a map for one’s career as a research science professional.In the medical field, research enables us ... Read More 
Updated on 30-Jul-2019 22:30:24
The java.io.File class has display constants File.separatorChar and File.pathSeparatorChar mainly. The File.separatorChar is ‘/’ and the File.pathSeparatorChar is ‘:’ for Unix.A program that demonstrates this is given as follows −Example Live Demoimport java.io.File; public class Demo {   public static void main(String[] args) {    try {      System.out.println("File.pathSeparatorChar = " + File.pathSeparatorChar);      System.out.println("File.separatorChar = " + File.separatorChar);    } catch(Exception e) {      e.printStackTrace();    }   } }The output of the above program is as follows −OutputFile.pathSeparatorChar = : File.separatorChar = /Now let ... Read More 
Updated on 30-Jul-2019 22:30:24
You can count all rows per table with the help of aggregate function count (TABLE_ROWS) from informatio_schema.tables. The syntax is as follows −SELECT table_name, TABLE_ROWS FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'yourDatabaseName';Now you can apply the above syntax to get all rows per table. The query is as follows −mysql> SELECT table_name, TABLE_ROWS FROM INFORMATION_SCHEMA.TABLES WHERE TABLE_SCHEMA = 'business';Here is the output −+------------------------------------------------------------------+------------+ | TABLE_NAME                            | TABLE_ROWS | +------------------------------------------------------------------+------------+ | accentsearchdemo    ... Read More 
Updated on 30-Jul-2019 22:30:24
You can compare DATE string with string from DATETIME field with the help of DATE() function in MySQL.The syntax is as follows −select *from yourTableName where DATE(yourColumnName) = ’anyDateString’;To understand the above syntax, let us create a table and set some datetime values in the table. The query to create a table −mysql> create table DateTimeDemo −> ( −> ArrivalTime datetime −> ); Query OK, 0 rows affected (0.61 sec)Let us insert some records in the table with the help of insert command. The following is the query to insert records ... Read More 
Updated on 30-Jul-2019 22:30:24
To remove a key from HashMap, use the remove() method.First, create a HashMap and add 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));Let us now remove a key −hm.remove("Wallet");The following is an example to remove a key from a HashMap −Example Live Demoimport java.util.*; public class Demo {   public static void main(String args[]) {    // Create a hash map    HashMap hm = new HashMap();    // Put elements ... Read More 
Updated on 30-Jul-2019 22:30:24
The pollFirstEntry() method in NavigableMap remove and return a key-value mapping associated with the least key in this mapThe following is an example to implement pollFirstEntry() methodExample Live Demoimport java.util.*; public class Demo { public static void main(String[] args) { NavigableMap n = new TreeMap(); n.put(5, "Tom"); n.put(9, "John"); n.put(14, "Jamie"); n.put(1, "Tim"); n.put(4, "Jackie"); n.put(15, ... Read More 
Updated on 30-Jul-2019 22:30:24
This example demonstrates how to make a smooth image rotation in Android.Step 1 - Create a new project in Android Studio, go to File ⇒ New Project and fill all required details to create a new project.Step 2 - Add the following code to res/layout/activity_main.xml.     In the above code, we have taken a text view and image view. When you click on text view, Image will get rotate in anti clock direction.Step 3 - Add the following code to src/MainActivity.javapackage com.example.andy.myapplication; import android.os.Build; import android.os.Bundle; import android.support.annotation.RequiresApi; import android.support.v7.app.AppCompatActivity; import android.view.View; import android.view.animation.Animation; import android.view.animation.LinearInterpolator; ... Read More 
Updated on 30-Jul-2019 22:30:24
Though there are several tourism spots in Andhra Pradesh and apart from all the regular tourist spots, I would like to suggest you some places which would replenish your souls with joy and love for nature.Relax in Nature's LapAndhra Pradesh is a greenery-rich state. The sizzling waterfall spots of Maredumilli and scenic spots of Rampa of East Godavari district, near Rajahmundry, welcome the guests with better facilities. The forest department has cleared 80km of the area near the tourist spots and built luxury AC rooms, cottages, Bamboo houses and tree houses along with deluxe hotels, to welcome the people from ... Read More Advertisements