Skip to main content

Posts

Move it

Prevent System Sleep Example Prevent System Sleep Example This page will prevent the system from sleeping while it is open in a browser.
Recent posts

DVSA Practical Drving Center Pass Perecentage Map

Looking for information on the DVSA pass percentage in different test centers across UK ?? Looking for insights on which DVSA driving test centers have the highest pass percentages in the year 2022?  Our latest blog post is just what you need! Using data from the DVSA UK site from April to December of 2022, we've created an interactive map that highlights the locations of driving test centers across the country, color-coded by their corresponding pass percentages.  Places marked with a deep blue color indicate the highest pass percentages, making it easy to identify the best test centers for your needs. With this valuable resource at your fingertips, you'll be well-equipped to make an informed decision and increase your chances of passing your driving test with flying colors. Open in Google Maps app

A general outline of the steps for performance testing databases using LoadRunner.

 Can anyone share me the step-by-step process for data bases PT by using load runner? If you have any documents, it will be very helpful. Whether I need to get the user journey or queries am in a confused state  A general outline of the steps for performance testing databases using LoadRunner. Identify the Database System: The first step is to identify the database system you want to test. Ensure that you have the necessary database credentials to connect to the database. Install LoadRunner: Install the LoadRunner software on your system. Create a New Script: Open LoadRunner and create a new script. Choose the relevant protocol, such as ODBC, Oracle, or SQL Server, depending on the database system you want to test. Record the Script: Use the VuGen (Virtual User Generator) module of LoadRunner to record a script that simulates a typical user's interaction with the database. During the recording, ensure that you capture all the necessary transactions and database operations. Enh...
Welcome to  Git: Commit Amend - Basic (Java) . This question is used to evaluate your skills on creating a new branch and pushing it to remote in Git. For this, you will be evaluated based on the following operations. The remote repository has been pre-configured into your local git repository. Your local git repository will be  linkedlist_java . Push the master branch of local git repository to the remote repository. Create a new branch with the name  new_branch . Make a change to the Java program file (do not remove it), make a commit and push the branch. Amend the commit to change the commit message. Optionally, you can push it to remote. Note 1:  Do not miss out to run  Project -> Install . Note 2:  The branch names must not be mis-spelt. Note 3:  The IDE's Git will not work in the local repository. Use Terminal for it. ---------------------------------------------------------------------------------------------------...

HackerRank Question and Answer : Hands-on - List Operations

Basic List Operations   Write the function definition for the function ' List_Op ' which takes 2 parameters ' Mylist ' and ' Mylist2 ' both of which are LIST of INTEGERS   Do as per the following to get the expected output: 1.Print ' Mylist ' 2.Print the 1st element of  ' Mylist ' 3.Print the Last  element of  ' Mylist ' 4.Add '3' as the Last element of ' Mylist ' 5.Change the 4th element of ' Mylist ' into '60' 6.Print ' Mylist ' again 7.Print from the ' 2nd ' element to the ' 5th ' element of ' Mylist ' 8.Append ' Mylist2 ' to ' Mylist ' 9.Print ' Mylist ' again 10.Extend ' Mylist ' using ' Mylist2 ' 11.Print ' Mylist ' again 12.Remove the Last element of ' Mylist ' 13.Print ' Mylist ' again 14.Print ' Length ' of ' Mylist '   Input Format for Custom Tes...

Hands-on - String Operations Part 2

Python - String Operations 2   Rajesh is trying to write a program that will evaluate and correct his resume.   Define a function called ` resume ` which takes eight parameters . All the  parameters are string .     The first parameter first is the first name. the second parameter  second is the second name the third parameter  parent is the name of the father or mother the fourth parameter  city is the name of the city the fifth parameter contains phone number in the format of string the sixth and seventh parameter contains a single string the eigth parameter contains string sentence.   The function definition code stub is given in the editor. Generate print statements   based on conditions given below:   Remove the spaces from both the end for the strings (first, second, parent, city) Capitalize the first word for the strings (first, second, parent) print the stri...

Hakcer Rank question and answer : Hands-on - Newline & Tab spacing

Newline and Tab Spacing & Raw String   Write the function definition for the function ' Escape ', which takes 3 parameters s1, s2, s3,  all of which are STRING variables.   Assign "Python\tRaw\nString\tConcept" to a STRING Variable ' s '.   The expected output is as follows: 1. Print these 3 strings separated by a New Line 2. Print these 3 strings separated by a Tab Space 3. Print ' s ' 4. Print the Raw String of ' s '    Input Format for Custom Testing # In the first line, value for 's1' # In the second line, value for 's2' # In the third line, value for 's3'   Sample Test Case 1   Sample Input STDIN      Function parameter -----       ------------------ Bahubali → s1 is a → s2 Legend → s3   Sample Output Bahubali is a Legend Bahubali    is a    Legend Python    Raw String ...