Posts

Showing posts from October, 2018

Selenium Interview Questions - Top MNC's

You can easily crack your interview by this collected list of Top MNCs Selenium Interview Questions, Accenture Selenium Interview Questions Amazon Selenium Interview Questions Altimetrik Selenium Interview Questions Aspire Selenium Interview Questions Bank of America Selenium Interview Questions CSC Selenium Interview Questions CSS Corp Selenium Interview Questions CTS Selenium Interview Questions Dell Selenium Interview Questions L&T Selenium Interview Questions Photon Infotech Selenium Interview Questions T ech Mahindra Selenium Interview Questions Virtusa Selenium Interview Questions Wipro Selenium Interview Questions Xerago Selenium Interview Questions Top 100 Selenium Interview Questions and Answers Please contact us at +91- 9884412301 / 9600112302 to join our Selenium Certification Course with placements. Search Tags: selenium training | top selenium training in chennai | selenium placement training in chennai | selenium training in c

50 Important Manual Testing Interview Questions- Answers

Hello Everyone, Please make use of this Top 50 Manual Testing Interview Questions and Answers to crack the interview easily, 1.What is Software Testing? Software testing is the process of evaluating a system to check if it satisfies its business requirements. It measures the overall quality of the system in terms of attributes like correctness, completeness, usability, performance etc. Basically, it is used for ensuring the quality of software to the stakeholders of the application. 2.What are Verification And Validation? Verification: process of evaluating work-products of a development phase to determine whether they meet the specified requirements for that phase. Validation: process of evaluating software during or at the end of the development process to determine whether it specified requirements. Difference between Verification and Validation: •Verification is Static Testing where as Validations is Dynamic Testing. •Verification takes place before validation. •Ve

Top 100 AWS Interview Question-Answer

Hello Everyone, Please make use of these handpicked Top 100 AWS Interview Questions & Answers to crack your interviews easily. 1.What is AWS ? AWS attains as Amazon Web Service ; this is a gathering of remote computing settings also identified as cloud computing policies. This unique realm of cloud computing is also recognized as IaaS or Infrastructure as a Service. 2. What are the key components of AWS ? The fundamental elements of AWS are Route 53: A DNS web service *Easy E-mail Service: It permits addressing e-mail utilizing RESTFUL API request or through normal SMTP *Identity and Access Management: It gives heightened protection and identity control for your AWS account *Simple Storage Device or (S3): It is a warehouse equipment and the well-known widely utilized AWS service *Elastic Compute Cloud (EC2): It affords on-demand computing sources for hosting purposes. It is extremely valuable in trouble of variable workloads *Elastic Block Store (EBS): It pr

The Ultimate Guide To Top 100 Python Interview Questions And Answers

Image
1.Which type of language is Python ? Interpreted or Compiled ? Python is an interpreted, interactive, object­ oriented programming language.Python is an interpreted language, as opposed to a compiled one, though the distinction can be blurry because of the presence of the bytecode compiler. This means that source files can be run directly without explicitly creating an executable which is then run. 2. What do you mean by python being an “interpreted language”? An interpreted languageis a programming language for which most of its implementations execute instructions directly, without previously compiling a program into machine­languageinstructions. In context of Python , it means that Python program runs directly from the source code. 3. What is python ’s standard way of identifying a block of code? Please provide an example implementation of a function called “my_func” that returns the square of a given variable “x”. (Continues from previous question)