Working Code

Questions

0 Answers9

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
0 Votes 162 views Edited question ServiceNow
0 Answers9

🟩 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 Question
0 Votes 266 views Edited question Java
0 Answers9

What 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 Question
0 Votes 180 views Asked question Drupal
0 Answers9

Step 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
0 Votes 275 views Edited question ServiceNow
0 Answers9

🟦 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 Question
0 Votes 281 views Edited question ServiceNow
0 Answers9

public 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
0 Votes 248 views Asked question Java
0 Answers9

[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
0 Votes 233 views Asked question Java
0 Answers9

[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 Question
0 Votes 210 views Asked question Java
0 Answers9

public 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 Question
0 Votes 206 views Asked question Java
0 Answers9

public 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
0 Votes 227 views Asked question Java
Load more questions
Scroll to top