Mahesh Parahar has Published 253 Articles

Difference between Inverted Index and Forward Index

Mahesh Parahar

Mahesh Parahar

Updated on 15-Apr-2020 08:22:52

1K+ Views

Inverted Index and Forward Index are data structures used to search text in a document or set of documents.Inverted IndexInverted Index stores the words as index and document name(s) as mapped reference(s).Forward IndexForward Index stores the document name as index and word(s) as mapped reference(s).The following are some of the ... Read More

Difference between two given time periods in C++

Mahesh Parahar

Mahesh Parahar

Updated on 15-Apr-2020 08:18:24

344 Views

Problem StatementGiven two time periods in the string 'HH:MM: SS' format. Here 'HH' represents hours, 'MM' represents minutes and 'SS' represents seconds. Find the difference in the same string format between these two time periods.Time period 1 = 8:6:2 Time period 2 = 3:9:3 Time Difference is 4:56:59ExampleFollowing is the ... Read More

Difference between Optical fibre and Coaxial cable

Mahesh Parahar

Mahesh Parahar

Updated on 15-Apr-2020 06:23:19

9K+ Views

Optical fibre and Coaxial cables, both are different types of guided media cables. Optical fibre is made up of plastic and glass and is used to transmits signals in form of light or optics whereas coaxial cable is made using plastic and copper wires and is used to transmits signals ... Read More

Difference between Structure and Array in C

Mahesh Parahar

Mahesh Parahar

Updated on 25-Feb-2020 07:13:01

7K+ Views

In C both Structure and Array are used as container for data types i.e in both structure and array we can store data and also can perform different operations over them.On the basis of internal implementation following are some basic differences between both.Sr. No.KeyStructureArray1DefinitionStructure can be defined as a data ... Read More

Difference between strlen() and sizeof() for string in C Program

Mahesh Parahar

Mahesh Parahar

Updated on 25-Feb-2020 06:57:24

257 Views

As we know that in programming string can be defined as the collection of characters. Now for the requirement of finding how many characters are being used to create a string, C provides two approaches which are strlen() and sizeof().As mentioned in above point both of these methods are used ... Read More

Difference between system level exception and Application level exception.

Mahesh Parahar

Mahesh Parahar

Updated on 25-Feb-2020 06:26:47

2K+ Views

As we know that exception is something that refers to the interruption in the flow of program or application. This unwanted event is known as Exception and is generally gives the indication regarding something wrong within the code. Basically particularly in language C# an exception can be a System or ... Read More

Difference between super() and this() in java Program

Mahesh Parahar

Mahesh Parahar

Updated on 25-Feb-2020 06:13:14

9K+ Views

Along with various other keywords Java also provides this and super as special keywords which primarily used to represent current instance of a class and it's super class respectively. With this similarity both these keywords have significant differences between them which are listed as below - Sr. No.Keythissuper1Represent and Referencethis keyword ... Read More

Difference between Hadoop 1 and Hadoop 2

Mahesh Parahar

Mahesh Parahar

Updated on 25-Feb-2020 06:11:34

7K+ Views

As we know that in order to maintain the Big data and to get the corresponding reports in different ways from this data we use Hadoop which is an Open Source framework from Apache Software Foundation based on Java Programming Language.Now Apache introduces the next version of Hadoop which named ... Read More

Difference between grep and fgrep command

Mahesh Parahar

Mahesh Parahar

Updated on 25-Feb-2020 06:05:24

585 Views

In any language or framework one of the most important and main feature is of searching the data. It not only denotes the performance of language but also represents in what manner the data is being stored. So specifically if we take an example of LINUX operating system there comes ... Read More

Difference between fundamental data types and derived data types in C++

Mahesh Parahar

Mahesh Parahar

Updated on 25-Feb-2020 06:00:18

287 Views

In programming data type denotes the type and nature of data which is intended to be use by the user. It is the data type which compiler or interpreter going to deal with and provides corresponding storing location in main memory.Now on the basis of nature of data Data type ... Read More

Advertisements