You are on page 1of 4

VARAIBLES & ARGUMENTS:

----------------------
1. TEXT/STRING:
"ADFASD qerqewr 1324134adfadfq34134adfa35 *&^()"

Req_1: "Hi, How are you..? Good Morning.! Today is Thursday -


05/18/2023"

Req_2: "Good Morning, I will meet you on Monday - 05/22/2023"

Input_1: How are you


Input_2: Good Morning
Input_3: Now

OUTPUT: Req_1 :"Hi, "+Input_1+"..? "+Input_2+".! Today is


Thursday - "+Input_3.Add(2).ToShortString"
Req_2: Input_1+", I will meet you on Monday -
"+Input_3.Add(2).ToShortString

NOTE:
* works within workflow
* reuse
* Varaible should be passed inbetween +Variable+
Beigning and end of the statement --> Begin -> Var+ End ->
+Var

Best Practice: hardcoding is not allowed

VARAIBLES & ARGUMENTS:


----------------------

VAR: Works within the Workflow --> 'LOCAL Varaible'


--> Clt+K
ARG: Works within & OutSide the Workflow --> 'GLOBAL Varaible'
--> Clk+M

How to create an Argument.?


-----------------------------

Req_1: "Hi, How are you..? Good Morning.! Today is Thursday -


05/18/2023"
Req_2: "Good Morning, I will meet you on Monday - 05/22/2023"

Input_1: How are you


Input_2: Good Morning
Input_3: Now

Learn: Create and How Arg works as Varaible(Within the


Workflow)

How to Pass an Argrument.?


--------------------------

Mechansim: WorkFlow_1 -----> WorkFlow_2

WorkFlow_1:
-----------
Req_1: "Hi, How are you..? Good Morning.! Today is Thursday -
05/18/2023"
Req_2: "Good Morning, I will meet you on Monday - 05/22/2023"

WorkFlow_2:
-----------

Req_1: "We have meeting on Monday - 05/22/2023. So, Kindly


acknowledge the invite"
Req_2: "Good Morning, I have Sent and Invite for meeting on
Monday"

Input_1: Good Morning


Input_2: 05/22/2023
Input_3: Monday
Input_4: How are you
Input_5: Kindly acknowledge

2. INTEGER & BOOLEAN:


---------------------

Int:
A - 34
B - 56

Boo:
C - A<B
D - A>B

3. DATE TIME
4. ARRAY --> {"Hi","a","b"}-->Array of String
{4,5,6} -->Array of Integer {"asdf"}
0 1 2
CONTROLFLOW ACTIVITES:
----------------------
1. IF --> LEAP YEAR => ANY YEAR(iNT)/4=0 ==> Year Mod 4 =0
2. IF ELSE
3. FOR EACH
4. WHILE
5. DO-WHILE --> 2004/4 =0 2004 Mod 4 =0
6. ASSIGN
7. DELAY
8. SWICTH

METHODS:
--------
1.Contains
2.SubString
3.UpperCase and LowerCase
4.Split
General Syntax: Variable.Methods

5.String.Format - Advanced CON

String.Format("",)

V1= How are you


V2= Friday
V3= Good Morning
V4= Now

String.Format("Hi, Good Morning.! How are you..? and Today is


Friday - 12072023",V4,V1,V2,V4)

String.Format("Hi, {V3}.! {V1}..? and Today is {V2} -


{V4}",V4,V1,V2,V4.toshortdatestring)

You might also like