CRMONCE

Creative

Top 10 C# Interview Questions and answers

In this Blog We will see the  top 10 interview questions in C#. 1. How is C# different from C? C# is more object-oriented than C, which is a procedural language that is well known. The primary distinction is that C# and C do not support Common Language Runtime’s (CLR) automatic ...

[rt_social_links]
Creative

Top 10 TypeScript Interview Questions and answers

    In this Blog we will discuss about top 10 interview Questions in Typescript. 1. What is TypeScript and how does it differ from JavaScript? TypeScript is a subset of JavaScript that can be translated into standard JavaScript. From a conceptual standpoint, TypeScript and JavaSc...

[rt_social_links]
Creative

How to Get Dataverse records count using Power Automate

In this blog, we will show how to get Dataverse records count using Power Automate. Click on New Flow, then choose Instant Cloud Flow and enter the trigger as Manually trigger a flow, then select Create as seen in the figure below. next add List rows from Dataverse and provide your table n...

[rt_social_links]
Creative

Five Things to Do While Building Power Automate Flows

In this blog, we will see some very basic but important things to do while building Power Automate flows. There can be two scenarios in building Power Automate flows, one where you have a small approval flow which needs less maintenance, and a second where you have a very long flow which r...

[rt_social_links]
Creative

How to use search, lookup and filter functions in Power Apps

In Power Apps, the search, lookup, and filter functions serve different purposes: Lookup: The Lookup function is used to retrieve a specific record from a data source based on a matching value in a specific column. It is commonly used to retrieve a single value from a related table or list...

[rt_social_links]
Creative

How to use Function type in TypeScript?

In this we can define that functions in Typescript  . Defining a Function : A function definition specifies what and how a specific task would be done. Before using a function, it must be defined. Functions are defined using the function keyword. Syntax :  function function_name() {// fu...

[rt_social_links]