Articles on Trending Technologies

Technical articles with clear explanations and examples

Microsoft’s Surface Studio for Creative Professionals

Sharon Christine
Sharon Christine
Updated on 17-Jan-2020 164 Views

Microsoft’s Surface Studio is an elegant and mature all-in-one desktop PC with built-in touch screen specially designed for creative professionals. Microsoft first release was the Microsoft PixelSense formerly called as Microsoft Surface back in 2008. The next release was the Microsoft surface tablet followed by the Surface Book. The latest upgraded release is the Surface Studio.The Studio is a 28-inch sharp, incredibly thin display mounted on a pair of “zero gravity” hinges that allows it to act as a regular monitor or tilt down into a type of drafting table. Without doubts Microsoft studio will be a clear challenge to ...

Read More

Market your Business for Free using Social Media Tools

Sharon Christine
Sharon Christine
Updated on 17-Jan-2020 226 Views

A couple of days ago, I happened to read an article where I encountered this statement-“There is nothing called free lunch.” However, I do have a soul-searching question to all the business owners – Who doesn’t like free marketing tools?Small businesses and low budget startups know the value of every penny they invest. Big brands invest BIG money every month, every hour and probably every minute on marketing. Marketing on Social Networking sites has been gaining traction since the past decade. Well, Facebook and Twitter are age-old names and world is obsessed with these two platforms. However, people are connecting ...

Read More

Linux Package Management with Aptitude

Sharon Christine
Sharon Christine
Updated on 17-Jan-2020 401 Views

Aptitude is founded by Ncurses for APT front End and debian Bundle Manager, considering the fact that it is text-based and it runs from a terminal or a CLI – command line interface. This article explains about-“Linux Package Management with Aptitude”What is APTapt is a command line package manager and provides commands for searching and managing as well as querying information about packages. It provides the same functionality as the specialized APT tools, like apt-get and apt-cache, but enables options more suitable for interactive use by default.]To get more information about APT, use the following command –$ aptThe sample output ...

Read More

Print all the sum pairs which occur maximum number of times in C++

sudhir sharma
sudhir sharma
Updated on 17-Jan-2020 211 Views

In this problem, we are given an array of n unique integers. And we have to find the sum of two integers of the array which has the maximum frequency. The problem has multiple solutions and you need to find them all.Input : array = { 1, 12, 5, 7, 9, 11} Output : 16 12Explanation − sum 16 and 12 occur two times.5 + 11 = 16 & 7 + 9 = 16 1 + 11 = 12 & 5 + 7 = 12Now to solve this problem, our approach to the problem is checking the occurrence every sum ...

Read More

Linux and Unix Test Disk I/O Performance with DD Command

Sharon Christine
Sharon Christine
Updated on 17-Jan-2020 9K+ Views

Do you know how to check the performance of a hard drive like checking the read and write speed on your Linux operating systems? then, this article is for you!! which is basically created to provide you an overview of DD command, which is geared towards better guidance to new users and as an exploration tour for getting started to the Linux world.What is DD Command?DD is a command-line utility for Unix and Unix-like operating systems where the primary purpose is to copy a file and converting the format of the data during the process.How to Test Hard Disk using ...

Read More

Learn Why ‘less’ is Faster Than ‘more’ Command for Effective File Navigation

Sharon Christine
Sharon Christine
Updated on 17-Jan-2020 177 Views

More is a command to view (but not modify) the contents of a text file, one screen at a time. It is available on Unix and Unix-like systems, DOS, OS/2, and Microsoft Windows. Programs of this sort are called pagers. More is a very basic pager, originally allowing only forward navigation through a file, though newer implementations which allows for limited backward movement.The basics of more command should be like this –$ more /var/log/dkpg.logThe sample output should be like this –2016-12-02 11:30:45 startup archives unpack 2016-12-02 11:30:45 install python-ptyprocess:all 0.5-1 2016-12-02 11:30:45 status half-installed python-ptyprocess:all 0.5-1 2016-12-02 11:30:45 status ...

Read More

Huffman Trees in Data Structure

Arnab Chakraborty
Arnab Chakraborty
Updated on 16-Jan-2020 15K+ Views

DefinitionHuffman coding provides codes to characters such that the length of the code depends on the relative frequency or weight of the corresponding character. Huffman codes are of variable-length, and without any prefix (that means no code is a prefix of any other). Any prefix-free binary code can be displayed or visualized as a binary tree with the encoded characters stored at the leaves.Huffman tree or Huffman coding tree defines as a full binary tree in which each leaf of the tree corresponds to a letter in the given alphabet.The Huffman tree is treated as the binary tree associated with ...

Read More

Dictionary Operations in Data Structure

Arnab Chakraborty
Arnab Chakraborty
Updated on 16-Jan-2020 12K+ Views

A dictionary is defined as a general-purpose data structure for storing a group of objects. A dictionary is associated with a set of keys and each key has a single associated value. When presented with a key, the dictionary will simply return the associated value.For example, the results of a classroom test could be represented as a dictionary with student's names as keys and their scores as the values:results = {'Anik' : 75, 'Aftab' :80, 'James' : 85, 'Manisha': 77, 'Suhana' :87, 'Margaret': 82}Main operations of dictionariesDictionaries typically support so many operations −retrieve a value (based on language, attempting to ...

Read More

Bayes’ Rule in Data Structure

Arnab Chakraborty
Arnab Chakraborty
Updated on 16-Jan-2020 281 Views

A way to update our beliefs depended on the arrival of new, relevant pieces of evidence are provided by Bayes rule. For example, if we were trying to provide the probability that a given person has cancer, we would initially just conclude it is whatever percent of the population has cancer. However, given extra evidence such as the fact that the person is a smoker, we can update our probability, since the probability of having cancer is greater given that the person is a smoker. This allows us to utilize prior knowledge to improve our probability estimations.The rule is explained ...

Read More

Boole’s Inequality in Data Structure

Arnab Chakraborty
Arnab Chakraborty
Updated on 16-Jan-2020 455 Views

In probability theory, according to Boole's inequality, also denoted as the union bound, for any finite or countable set of events, the probability that at least one of the events happens is no higher than the sum of the probabilities of the individual events.In mathematics, the probability theory is denoted as an important branch that studies about the probabilities of the random event. The probability is denoted as the measurement of chances of happening an event which is an outcome of an experiment.For Example − tossing a coin is denoted as an experiment and getting head or tail is denoted ...

Read More
Showing 53461–53470 of 61,248 articles
Advertisements