Questions
API Type: GET Endpoint: https://instance-sandbox.atlassian.net/rest/api/3/user/search?query=piyush.kalra@workingcode.com Headers: Content-Type: application/json JSON Parse Script var parsed = JSON.parse(inputs.getresponse); var accountId = parsed[0].accountId; outputs.body = accountId;
View Question🟩 What is Spring Boot? Spring Boot is a framework built on top of Spring that helps you create production-ready applications quickly. Key Features No XML configuration required Embedded Tomcat/Jetty...
View QuestionWhat is Drupal?Drupal is a free, open-source CMS (Content Management System) written in PHP. Drupal vs WordPress vs Joomla – which is better? Drupal is very flexible, scalable, and suited...
View QuestionStep 1 — Go to Survey Designer Navigate to: <span class="hljs-keyword">Self</span>-Service → Surveys → Survey Designer Step 2 — Create New Survey Click New Fill: Name → e.g., Customer Satisfaction...
View Question🟦 1. What is the IRM architecture in ServiceNow? Answer:IRM architecture in ServiceNow is built around five core layers: Authority Documents (UCF, ISO, NIST, PCI, SOX) Control Objectives Controls Risks...
View Questionpublic class ArmstrongNumber { public static void main(String[] args) { int num = 153, originalNum, sum = 0, n = 0; originalNum = num; n = String.valueOf(num).length(); while...
View Question[apcode language="php"] public class GCD { public static int gcd(int a, int b) { if(b == 0) return a; return gcd(b, a % b); } public static void main(String[] args)...
View Question[apcode language="php"] public class Palindrome { public static void main(String[] args) { String str = "madam"; String reversed = new StringBuilder(str).reverse().toString(); System.out.println("Is palindrome? " + str.equals(reversed)); } }
View Questionpublic class BubbleSort { public static void main(String[] args) { int[] arr = {64, 34, 25, 12, 22, 11, 90}; for(int i = 0; i < arr.length -...
View Questionpublic class Factorial { public static int factorial(int n) { if (n == 0) return 1; return n * factorial(n - 1); } public static void main(String[] args)...
View Question