28 September 2022 Qlik subroutine parameters – passing arguments by reference and by value Share this message Every Friday at Bitmetric we’re posting a new Qlik certification practice question to our LinkedIn company page. Last Friday we asked the following Qlik Data Architect certification practice question about passing arguments to Qlik subroutine parameters: This proved to be a harder question than expected, as only a single person got the right answer. Well done Vaibhav Sharma! The correct answer is B: lines 4 and 8 both show the value 8 We’re modifying the parameter called pInput and somehow this also affects the variable vNumber? How is that possible? The explanation is that we passed the argument by reference instead of by value. In short, when we pass by value we provide a copy of the variable, but when we pass by reference we provide the actual variable to the subroutine. Read on to get a more in-depth explanation. Sidebar: argument vs parameterThese terms are often used interchangeably, but they actually do have different meanings. A parameter is the name that is listed in the subroutine definition. In this example that’s pInput. An argument is the value that’s actually supplied. In this example that’s vNumber. How variables are stored in memory To explain the difference between passing by value and passing by reference we first need some basic knowledge of how memory works. We’ll use a simplified explanation for this, which should be enough to understand the basic concept. You can consider memory as a collection of blocks that can hold data. Each block has an address, numbers 1 through 60in the illustration below. When you store a value into a variable, your operating system will automatically decide where to place this in memory. In the illustration below, the value we’ve set for the vNumber variable is stored at memory address 32. Pass by value When we pass by value, the value is copied to another location in memory. In the illustration below a copy of the value is placed at memory address 24. Subsequent operations, such as the multiplication in the subroutine, are performed on the copy. The original value is left untouched. Pass by reference When we pass by reference, we pass a reference to the memory address of the variable. What this means in our example is that both vNumber and vInput now reference the same memory space and value within that space. Any operation that is performed to pInput updates the same value that is being referenced by vNumber, and vice versa. This explains the behavior that we see in the example script. Passing by value vs passing by reference in Qlik So how can we fix this script to ensure that vNumber is passed by value? By using Dollar-sign expansion! This passes the value of the variable to the subroutine, rather than a reference to the variable. See the updated script below, with a change on line 9. That’s it for this week. See you next Friday? More from the Bitmetric team Take your Qlik skills to the next level! Since 2013, the Masters Summit for Qlik is the premier advanced training for Qlik. Join us in Vienna and take your Qlik skills to the next level. Join the team! Do you want to work within a highly-skilled, informal team where craftsmanship, ingenuity, knowledge sharing and personal development are valued and encouraged? Check out our job openings. Friday Qlik Test Prep Script Solution How can we help? Barry has over 20 years experience as a Data & Analytics architect, developer, trainer and author. He will gladly help you with any questions you may have. Call us Mail us 8 October 2024 Artificial Intelligence, Machine Learning, and Deep Learning Explained: How They Impact Your Business In today’s rapidly evolving technological landscape, Artificial Intelligence (AI), Machine Learning (ML), and Deep Learning (DL) are transforming industries and redefining how businesses operate. In this blog post, we will break down these three definitions and elaborate on them. AI 25 September 2024 Building Ethical AI: Practical Frameworks for Responsible Innovation AI is transforming industries with innovation and efficiency. But with great power comes great responsibility. The real question is: How do you turn ethical principles into actionable guidelines for AI development? And what steps should your team take to make it happen? AI 17 September 2024 What is AI Ready Data Data quality is all about how accurate, consistent, complete, and up-to-date your data is. If your data is good, you’ll get reliable insights and be able to make smarter decisions. It’s a key part of making sure your AI and machine learning projects are successful. AI Qlik
8 October 2024 Artificial Intelligence, Machine Learning, and Deep Learning Explained: How They Impact Your Business In today’s rapidly evolving technological landscape, Artificial Intelligence (AI), Machine Learning (ML), and Deep Learning (DL) are transforming industries and redefining how businesses operate. In this blog post, we will break down these three definitions and elaborate on them. AI
25 September 2024 Building Ethical AI: Practical Frameworks for Responsible Innovation AI is transforming industries with innovation and efficiency. But with great power comes great responsibility. The real question is: How do you turn ethical principles into actionable guidelines for AI development? And what steps should your team take to make it happen? AI
17 September 2024 What is AI Ready Data Data quality is all about how accurate, consistent, complete, and up-to-date your data is. If your data is good, you’ll get reliable insights and be able to make smarter decisions. It’s a key part of making sure your AI and machine learning projects are successful. AI Qlik