First Non Distinct value in an Array
Find the non-distinct value in a given array Input : {1,1,2,2,3,4,4} Output : 3 Code
Find the non-distinct value in a given array Input : {1,1,2,2,3,4,4} Output : 3 Code
Some of the commonly used API status codes
If the given input is a palindrome, Print it as it is, if not reverse the string and print. Input : abcd Output: dcba The question is hidden with the meaning of not doing complex things and understanding them clearly. Answer: whatever the input, just need to reverse the string. Code:
What is security automation? Some of the tools that help to automate security Testing in CI/CD Sample Architecture in CI/CD including security automation
Introduction Type of Performance Testing
Given an array of input, print the value based on the sequence of occurrence Input : [0,1,2,3,0,0,2,2,3,0] Output: [0,0,0,0,1,2,2,2,3,3] Code:
What is APIs? What is REST API? HTTP verbs! Rest API Request Rest API Response What is API automation? Sample Request Sample Response Response Code : 201 – Created Tools used to test APIs Libraries used for APIs Automation
Find a pair that match to the given value x from the input array. Input : [1,5,10,3,4] X=15 Output: [5,10] Code:
Given a array of input, sort it based on the number of occurrence count Input : [8,0,1,5,5,3,3,3] Output : [0,1,8,5,5,3,3,3] Code:
Give an string ‘abcd’ and an another string ‘efghij’, print the sequence in alternate order, if any of the string is ended, append the rest of the string to the other string Input : abcd , efghij Output: aebfcgdhij Code: