I will be sharing my experience on the latest programming and tools knowledge in this online field so, stay tuned and follow my website for learning and clearing your doubts.
Contact Us
Get link
Facebook
X
Pinterest
Email
Other Apps
Contact Us
If you have any query regarding Site, Advertisement, and any other issue, please feel free to contact at ahamedimtiyaz04@gmail.com
Root Cause Analysis in Testing | Easy way to explain in an interview about RCA. RCA ( Root Cause Analysis ) Define the Problem ==> Collect Data ==> Identify the Possible Casual Factors ==> Identify the Root Causes ==> Recommend and Implement Solutions. 1 Define the problem -What is happening. -What are the symptoms. 2 Collect Data -What evidence do we have for the problem. -For how long does a problem exist. -How does the problem affect the system. 3 Identify the Possible Casual factors - Where is the gap and how big it is -What circumstances led to the problem 4. Identify the Root Causes - What is the real reason that leads to the problem 5. Recommend and Implement Solutions -What measures are to be taken to prevent a problem from happening again? -How to implement the solution -Who will be responsible for the implementation ...
Agile Testing Interview Questions and Answers | Easy way to explain the Agile Testing Interview Questions. 1. What is Agile testing? Ans: Agile testing is a software testing practice that follows the principles of agile software development it is an iterative software development methodology the requirements keep changing as per the customer needs testing is done in parallel to the development of an iterative model test team receives frequent code changes from the development team for testing and application. 2. What is the Agile manifesto? Ans: Manifesto defines four key points: 1. Individuals and interactions over processes and tools 2. Working software over comprehensive documentation 3. Customer collaboration over contract negotiation 4. Responding to change over following a plan 3. What are the principles of agile software development? Ans: 1. Highest priority is to satisfy the customer through ...
Python Data Types with explanation Data Types in Python: · It represents what type of data is stored in a variable. Example: There are two types of data types 1. Built-in Data Type 2. User Define Data Type Keywords in Python: Keywords are the reserved words in Python. We cannot use a keyword as the variable name, function name, or any other identifier. Here's a list of all keywords in Python Programming Note : Only three keywords starting with capital letters False, None, and True In order to get the content/help from python itself:- print(help()) Number data types - store numeric values. They are immutable data types, which means that changing the value of a number data type results in a newly allocated object. Collection data types are also called sequence data types. Note: No double data type available in python Int (si...
Static and Non Static Method in Python | Class Methods in Python Methods: Methods are used to define a business logic There are three types of methods in python A. Non-static Method B. Class Method C. Static Method Non-static Method:- Non-static methods are object level Non-static method should have a first argument (Self) Note:- We can give any other argument name instead of self Class Method:- Class methods are class level Use to have all the class level variable It should have decorator @Class method Must and should have one argument (cls) Note:- We can give another value name instead of cls Static Method:- A static method is used to define small utility actions Example: Addition of a number Subtraction of a number etc. · It should have decorator @ Static method Example: Question:- How to access the static method? Question: Where we can call the static variable? Answer: We can call under constructor, non-static method, class method...
How to run python code in IDLE? 1. Open IDLE (Integrated Development Learning Environment) 2. Write below program >>> print ( " Welcome to Tutorial Point Hub" ) 3. Press enter >>> print ( "Welcome to Tutorial Point Hub" ) Welcome to Tutorial Point Hub 4. Create a file from IDLE: · Open IDLE · Go to file · Select new file · Write below program print ( " Welcome to Tutorial Point Hub" ) · ...
OOPS in python | Object Oriented Programming Languages and Systems । Static and Non Static In Python OOPS (Object Oriented Programing Languages and Systems): · Classroom is a collection of related object · Each and every object communicate each other’s (Only related info) · A class never consumes a memory · Any number of objects can drive from a class · A class will have common members Note: - Members means attribute (eyes=2) and behavior (talk) Question : - How the class has been formed? Note:- · In the interface all the methods are unimplemented · There is no concepts of the interface in python · ...
Python IDEs and Code Editor | PyCharm Python IDEs and Code Editor: A code editor is a tool that is used to write and edit code. They are usually lightweight and can be great for learning. However, once your program gets larger, you need to test and debug your code, that's where IDEs come in. An IDE (Integrated Development Environment) understands your code much better than a text editor. It usually provides features such as build automation, code inline, testing, and debugging. This can significantly speed up your work. Following are the editor we can use for python coding: 1. PyCharm (We preferred) 2. Eclipse 3. Atom 4. Thonny 5. Visual Studio 6. Spyder 1. PyCharm (We preferred): Pycharm provides smart code inspections, code completion, error highlighting, along with automated code refactorings and rich navigation capabilities. How to download and install PyCharm:...
What is the difference between client-side validation and server-side validation? Client-Side Validation: - In the client-side validation method, all the input validations and error recovery process is carried out on the client-side i.e. on the user’s browser. It can be done using JavaScript, AJAX, VB Scripts, Python, and Perl, etc. Here the validation process works without sending data to the server for processing. Example:- Suppose you want to validate whether a user-entered email is in the right format. Server-Side Validation: - In server-side validation, all the input validations and error recovery process is carried out on the server-side. It can be done using programming languages like C#.NET, Java, etc. Note: - Client-side validation is faster than server-side because the validation takes place on the client-side (on a browser) and the networking time from client to server is saved. Server-side validation is more secure than the client-side as the user cannot see ...
Operators in Python and Types of Operators in Python. Operators in Python: · Operators are used to perform business actions · Operators can be applied on single operand (Unary operator) , double operands (Binary operator) and triple operands (Tertiary operator) Types of Operators in Python: 1. Assignment Operator 2. Relational Operator 3. Logical Operator 4. Bitwise Operator 5. Arithmetic Operator 6. Membership Operator 7. Identity Operator 8. Boolean Operator 1. Assignment Operator: - Python assignment operators are used for assigning the value of the right operand to the left operand. Various assignment oper...
How to Download Python? Steps to follow: 1. Go to Google 2. Type Python Download. 3. Click on the first link ( https://www.python.org/downloads/ ). 4. Go to Release Version. 4. Select Stable Version (Python 3.6.3). 5. Select Windows x86-64 executable installer. 6. Go to Download Path>>Double Click on downloaded file. 7. Click on Run. A dialog should appear that looks something like this Important: You want to be sure to check the box that says ADD Python 3.x to PATH as shown to ensure that the interpreter will be placed in your execution path. Then just click Install Now . That should be all there is to it. A few minutes later you should have a working Python 3 installation on your system. How to Check and Verify the Version of Python: Go to CMD:
Comments
Post a Comment