Installing NetBeans IDE in Linux
Go to the link – https://netbeans.org/downloads/ Select Platform as Linux(x86/x64). Download the installer for NetBeans. From the terminal, navigat...
Go to the link – https://netbeans.org/downloads/ Select Platform as Linux(x86/x64). Download the installer for NetBeans. From the terminal, navigat...
AngularJS is a Javascript framework maintained by Google which simplifies the development and testing of web applications for developers and testers. Cor...
To install Oracle Database XE: 1. Log on to your computer with root permissions. 2. Go to the following Web site: http://www.oracle.com/technetwork/database/exp...
Go to the link of the video which you want to download. Replace the URL by adding ‘ss’ before ‘youtube’ and press Enter. You are directe...
Suppose data from a table X in database D is to be copied into table Y in the same database, then the problem can be solved easily by executing the query –...
The task is to construct a simple server which just passes a string to the client. Client/server describes the relationship between two computer programs in whi...
Given a set of numbers,our task is to find the number of subsets that sum to a particular value. Example- Set of numbers- {1,3,2,5,4,9} Sum=9 Subsets that sum t...
Given a set of positive integers and a value sum,the task is to find if there is a subset with sum equal to the given value. Example- Given set of numbers- {3,3...
A doubly linked list is a linked linear data structure,each node of which has one or more data fields but only two link fields known as left link (LLINK) and ri...
Linked list is one of the fundamental,simplest and most common data structures in C programming language.A linked list is a data structure consisting of a group...