Difference Between Frontend Testing and Backend Testing

Mahesh Parahar
Updated on 28-Nov-2019 11:43:45

674 Views

A Web based application is generally three tier architecture based application. First layer is presentation layer called front-end, second layer is business layer or application layer and third layer is database called back-end.Frontend TestingFrontend testing refers to testing the application UI or presentation layer. It can be manual as well as automated.Backend TestingBackend testing refers to testing the backend and application layers. It is normally automated.Following are the important differences between Frontend Testing and Backend Testing.Sr. No.KeyFrontend TestingBackend Testing1LayerFrontend testing is performed on Presentation Layer.Backend testing is performed on Application and Database layer.2GUIIn Cloud Computing, resources are centrally managed.In Grid ... Read More

Difference Between Database and Blockchain

Mahesh Parahar
Updated on 28-Nov-2019 11:24:42

417 Views

DatabaseDatabase represents a data structure comprised of tables, schemas to store user and system information. It provides SQL to Create, Read, Delete and Update its records. DBMS, Database management systems manages a database. Usually Database administrators modifies the sensitive data. A database follows client-server model architecture.BlockchainBlockchain represents a chain of blocks analogous to records in database. This chain grows as blocks are added to it during operations. These blocks contains link to previous block using cryptographic hash of address of the block, timestamp and transaction data. A block once added to the blockchain cannot be modified by design. A Blockchain ... Read More

Difference Between Linear and Non-Linear Data Structures

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

20K+ 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 computer memory is also sequential. Examples of linear data structures are List, Queue, Stack, Array etc.Non-linear Data StructuresA non-linear data structure has no set sequence of connecting all its elements and each element can have multiple paths to connect to other elements. Such data structures supports multi-level storage and often ... Read More

Difference Between Tester and SDET

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

287 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 Software Development Engineer in Test. SDET is part of both development as well as software testing. A SDET knows the code of software. A SDET is a tester who can code as well.Following are the important differences between Tester and SDET.Sr. No.KeyTesterSDET1WorkingSoftware Tester tests the application once it is testing ... Read More

Difference Between AngularJS and Angular

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

3K+ 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 upgrade to Angular JS. Angular release starts from 2.0. It is very fast as compared to AngularJS. It has modular design, have angular CLI and easy to develop. Angular latest stable version is 9.Following are the important differences between AngularJS and Angular.Sr. No.KeyAngularJSAngular1ArchitectureAngularJS works on MVC, Model View Controller Design. ... Read More

Difference Between ISO 9000 and SEI CMM

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

8K+ 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 which level, they are following and maintaining the quality standards.Following are the important differences between ISO9000 and SEI-CMM.Sr. No.KeyISO9000SEI-CMM.1DefinitionISO9000 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 ... Read More

Difference Between Python and PHP

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

514 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. It is used to create dynamic web based pages.Following are the important differences between Python and PHP.Sr. No.KeyPythonPHP1Learning CurvePython requires good effort if one learns from scratch. It is similar to C++ and Java.PHP is easy to learn if user knows html and javascript.2FrameworksPopular Python frameworks are Flask, DJango.Popular PHP ... Read More

Difference Between Go and C++

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

396 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 is a procedural programming language and supports patterns similar to dynamic languages.C++ is an object oriented programming language.2Supports for ClassGo has no support for class with constructors.C++ has support for class with constructors.3Garbage CollectionGo has automatic garbage collection.C++ has not provided automatic garbage collection.4InheritanceGo has no support for inheritance.C++ supports ... Read More

Difference Between Goroutine and Thread in Golang

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

922 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 Goroutine and Thread.Sr. No.KeyGoroutineThread1Managed ByGoroutine methods are managed by golang runtime.Thread are managed by operating systems.2Hardware dependencyGoroutine are independent to hardware.Thread are dependent on hardware.3Communication MediumGoroutines uses channels as communication medium.Thread have no easy communication medium.4LatencyGoroutines can commuicate with other routines with low latency.Thread as have no communication medium, communicate ... Read More

Difference Between Association and Aggregation in Java

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

8K+ 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 objects. For example, a department has multiple employees. It refers to having a collection of child objects in parent class. For example:class Department {    String name;    List employees; } class Employee {    String name; }Sr. No.KeyAssociationAggregation1DefinitionAssociation refers to "has a" relationship between two classes which use each ... Read More

Advertisements