- 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
The Indian IT companies, who were earlier accused of flooding H1_B visa applications have dramatically reduced their H-1B visa filings after Trump's administration has taken a hard-line anti-immigration stance this year.The visa process for the 2019 fiscal year beginning October 1, has started on 2nd April 2018. It was shocking to notice that there was a lot of reluctance from Indian companies to file H1-B of their employees.In this present scenario, of certain uncertainties in the US immigration system, there are some arguments that foreign-born workers are good for both the US economy and US-born workers as they provide good ... Read More
The fourth estate which has to be responsible and should abide by its rules and ethics seems to be crossing its bounds these days. It is, of course, important for any TV channel or media to get a rating and increase its viewership for its channel to gain good popularity and income. But still, they have to follow some ethics which are utterly important for the welfare of people as well as the channel.Some of the common ethics to be followed are:No content that harms the harmony of the society is to be displayed.No content dishonoring the honorable members of ... Read More
Vashikaran is a kind of Black magic that is believed and practised in certain places. The meaning of the word Vashikaran is to control the emotional status of someone and divert his/her focus on to a particular person, which means to get hold of that person emotionally. Such things are again coming into prominence in these modern days, thanks to daily soaps and fictitious movies made in recent days.How does it work?Many people believe that there are magical mantras or powerful powders that can make a person behave and think according to their will and wish. But it is always ... Read More
Shakespeare is one of the greatest of all writers. He is the one who is remembered for only the magnanimity and grandeur of his works. The works of Shakespeare can be divided into three stages - historical, comedies, and tragedies. Out of the tragedies, King Lear is a melancholic tragedy written in 1605.Features of TragedyThe hero has a terrible flaw.The mood of foreboding follows the play.Hero has experiences of providence not favoring him.The end is usually the death of one or more people as a part of the play.If not death, there is a downfall of the hero which may ... Read More
One of the quantifiers is the plus(+). This matches one or more of the subsequence specified with the sequence.A program that demonstrates using the quantifier plus(+) to find a match in Java is given as follows:Example Live Demoimport java.util.regex.Matcher; import java.util.regex.Pattern; public class Demo { public static void main(String args[]) { Pattern p = Pattern.compile("o+"); Matcher m = p.matcher("o oo ooo"); System.out.println("The input string is: o oo ooo"); System.out.println("The Regex is: o+ "); System.out.println(); while (m.find()) { System.out.println("Match: ... Read More
Create a TreeSet and add elements −TreeSet tSet = new TreeSet(); tSet.add("TV"); tSet.add("Radio"); tSet.add("Internet");Iterate through the elements −Iterator i = tSet.iterator(); while(i.hasNext()){ System.out.println(i.next()); }The following is an example to create a TreeSet −Example Live Demoimport java.util.*; public class Demo { public static void main(String args[]){ TreeSet tSet = new TreeSet(); tSet.add("TV"); tSet.add("Radio"); tSet.add("Internet"); Iterator i = tSet.iterator(); while(i.hasNext()){ System.out.println(i.next()); } } }OutputInternet Radio TV
You can update MySQL with IF condition as well as CASE statement. For this purpose, let us first create a table. The query to create a table −mysql> create table UpdateWithIfCondition −> ( −> BookId int, −> BookName varchar(200) −> ); Query OK, 0 rows affected (0.60 sec)Now you can insert records in the table using insert command. The query is as follows −mysql> insert into UpdateWithIfCondition values(1000, 'C in Depth'); Query OK, 1 row affected (0.12 sec) mysql> insert into UpdateWithIfCondition values(1001, 'Introduction to Java'); Query OK, 1 row affected (0.14 sec)Display all records ... Read More
Silicon Valley is the place with loads of opportunity and a lot of investors whom the entrepreneurs with skills and talent can strike, with a sound business idea. They say that the success of Silicon Valley is so hard to replicate. The talented techies of this San Francisco Bay’s southern end have great abilities to integrate their innovative ideas with business strategies which bring success in both the ways.New Ways for New ThoughtsSilicon Valley extremely focuses on innovative ideas. The young entrepreneurs try to make out these innovative thoughts from different instances.Identifying the actual needs of users and bringing those ... Read More
William Shakespeare was truly the greatest of all writers. Probably competing Shakespeare’s talent would be Milton and Dante, but no one else. He is not only a poet who is remembered for his life and works, but he is the one who is remembered for only the magnanimity and grandeur of his works.The TempestShakespeare's The Tempest is full of supernatural atmosphere. There is a passage in which he refers to Ovid is Prospero’s renunciation of magic. So, even Shakespeare referred to Ovid’s Metamorphoses to seek some inspiration for his play.Who was Prosperous?Prosperous is almost an embodiment of goodness who as ... Read More
It’s been now 42 years when Steve Jobs, Steve Wozniak, and Ronald Wayne founded Apple Inc with a promise to keep revolutionizing lives and they have kept their promise too brilliantly until now. This is why they have done what other companies only wish to achieve. Congratulations Apple for setting another benchmark and bringing a significant change to the society through cutting-edge tech inventions.However, it was never easy. Check out the story of infinite passion, nerve-wracking struggle, and the never yielding self-will.Many people believe that Apple was founded only by Steve. Well, the reality is here. Apple was founded by ... Read More