Mahesh Parahar has Published 253 Articles

Difference between Linear and Non-linear Data Structures

Mahesh Parahar

Mahesh Parahar

Updated on 28-Nov-2019 11:22:43

18K+ Views

Linear Data StructuresA Linear data structure have data elements arranged in sequential manner and each member element is connected to its previous and next element. This connection helps to traverse a linear data structure in a single level and in single run. Such data structures are easy to implement as ... Read More

Difference between Tester and SDET

Mahesh Parahar

Mahesh Parahar

Updated on 28-Nov-2019 11:11:14

109 Views

TesterA Software tester performs testing on the software to ensure that it meets the required quality standards. A Tester is responsible to check if the software has bugs/defects and performs as what is required from it. A software tester is unaware of application code and its development process.SDETSDET stands for ... Read More

Difference between AngularJS and Angular.

Mahesh Parahar

Mahesh Parahar

Updated on 28-Nov-2019 11:06:02

2K+ Views

AngularJSAngularJS, is a javascript based open-source front-end framework and is mainly used to develop single page applications on web. It enriches the static HTML to dynamic HTML. It extends existing HTML by providing directives. Its latest stable version is 1.7.7AngularAngular is alternative to AngularJS and it is a major version ... Read More

Difference between ISO9000 and SEI-CMM.

Mahesh Parahar

Mahesh Parahar

Updated on 28-Nov-2019 10:54:26

6K+ Views

ISO9000ISO9000 is an international standard of quality management and quality assurance. It certifies the companies that they are documenting the quality system elements which are needed to run a efficient and quality system.SEI-CMMSEI (Software Engineering Institute) - Capability Maturity Model (CMM) is specifically for software organizations to certify them at ... Read More

Difference between Python and PHP.

Mahesh Parahar

Mahesh Parahar

Updated on 28-Nov-2019 10:48:34

295 Views

PythonPython is a high level programming language with inbuilt big library and is used to develop standalone programs. It was developed by Guido Van Rossum and its first version was released in the year 1990.PHPPHP stands for Hypertext Preprocessor, it is server side scripting language. It was developed in 1995. ... Read More

Difference between Go and C++.

Mahesh Parahar

Mahesh Parahar

Updated on 28-Nov-2019 10:46:55

276 Views

GoGo is a procedural programming language. Programs are assembled using packages. It supports environment adopting patterns similar to dynamic languages.C++C++ is an object oriented programming language. C++ is quiet fast, reliable and secure. It is most widely used language as well.Following are the important differences between Go and C++.Sr. No.KeyGoC++1TypeGo ... Read More

Difference between Go and Java.

Mahesh Parahar

Mahesh Parahar

Updated on 28-Nov-2019 10:45:07

296 Views

GoGo is a procedural programming language. Programs are assembled using packages. It supports environment adopting patterns similar to dynamic languages.JavaJava is an object oriented programming language. Java is quiet fast, reliable and secure. It is most widely used language as well.Following are the important differences between Go and Java.Sr. No.KeyGoJava1TypeGo ... Read More

Difference between Goroutine and Thread in Golang.

Mahesh Parahar

Mahesh Parahar

Updated on 28-Nov-2019 10:43:37

767 Views

GoroutineGoroutine is method/function which can be executed independently along with other goroutines. Every concurrent activity in Go language is generally terms as gorountine.ThreadThread is a lightweight process. It can be treated as a unit to execute a piece of code. Operating system manages the thread.Following are the important differences between ... Read More

Difference between List and Tuples in Python.

Mahesh Parahar

Mahesh Parahar

Updated on 28-Nov-2019 10:34:59

11K+ Views

ListList is a container to contain different types of objects and is used to iterate objects.Examplelist = ['a', 'b', 'c', 'd', 'e']TuplesTuple is also similar to list but contains immutable objects. Tuple processing is faster than List.Exampletuples = ('a', 'b', 'c', 'd', 'e')Following are the important differences between List and ... Read More

Difference between Association and Aggregation in Java

Mahesh Parahar

Mahesh Parahar

Updated on 28-Nov-2019 10:16:56

7K+ Views

AssociationAssociation in terms of objects refers to "has a" relationship between two related objects. For example, a employee has a communication address.class Employee {    String name;    Address communicationAddress; } class Address {    String address; }AggregationAggregation in terms of objects refers to "has a"+ relationship between two related ... Read More

Advertisements