POWER BI What is POWER BI? Power BI is a collection of software services, apps, and connectors that work together to turn your unrelated sources of data into coherent, visually immersive, and interactive insights. Your data may be an Excel spreadsheet, or a collection of cloud-based and on-premises hybrid data warehouses. Power BI lets you easily connect to your data sources, visualize and discover what's important, and share that with anyone or everyone you want. History of Power BI. Power BI is a Microsoft’s product initially released on 11th July 2011. It was originally designed by Ron George in 2010 and the project was named crescent. Which was made available for download in 2011. It was later renamed POWER BI and then unveiled by microsoft in September 2013 as POWER BI for office 365. The first release of POWER BI was based on microsoft excel-based add ins :...
Function In Swift Functions are self-contained chunks of code that perform a specific task. You give a function a name that identifies what it does, and this name is used to “call” the function to perform its task when needed. Swift’s unified function syntax is flexible enough to express anything from a simple C-style function with no parameter names to a complex Objective-C-style method with names and argument labels for each parameter. Parameters can provide default values to simplify function calls and can be passed as in-out parameters, which modify a passed variable once the function has completed its execution. Every function in Swift has a type, consisting of the function’s parameter types and return type. You can use this type like any ...
Concept of Loop in Swift Looping :- Looping, also known iteration is used in a program to repeat a specific block/segment of code(s). This reduces the tasks of writing the same thing again and again. for condition increment loops:- The for-condition-increment loop is functionally the same as the 'for' loop in C. The loop consists of an initialization phase, a test, an increment, and a set of statements that are executed for every iteration of the loop. for initialization; condition; increment { statements } for in loops:- You use the for-in loop to iterate over sequences or collections of things, such as the elements of an array or dictionary, the characters in a string, or a range of numbers. Here's the general form is: for index in seque...
Comments
Post a Comment
If you have any douts, Please let me know