Ask the user "Is 1+1 is True or False" give options to select True and False

1. Ask the user "Is 1+1 is True or False" give options to select True and False
2. If the answer is true, open the notepad and write as Correct 
3. Else write as incorrect.

How to Solve this? Kindly Help!

@Yugandhara_Shirbhate

Try these steps.

  1. Take user input through input dialouge activity.
  2. put if condition
  3. using start process to open notepad.
  4. Use Type into and select open notepat.

Where are the steps??? @raja.arslankhan

Can you elaborate each step with a screenshot?

Hi @Yugandhara_Shirbhate

  1. Drag and drop an “Input Dialog” activity.
  2. In the Properties panel of the “Input Dialog” activity, set the “Options” property to “True|False”.
  3. Drag and drop a “Assign” activity onto the workflow designer and create a variable named “answer” of type String.
  4. Drag and drop a “If” activity onto the workflow designer.
  5. In the Properties panel of the “If” activity, set the “Condition” property to “answer = ‘True’”.
  6. Drag and drop a “Start Process” activity inside the “Then” section.
  7. In the Properties panel of the “Start Process” activity, set the “FileName” property to “notepad.exe”.
  8. In the Properties panel of the “Start Process” activity, set the “Arguments” property to “Correct”.
  9. Drag and drop a “Start Process” activity inside the “Else” section.
  10. In the Properties panel of the “Start Process” activity, set the “Arguments” property to “Incorrect”.

Thanks!!

try below flow

Name of variables or title and others you can change as per your requirement

Text file will be saved in project folder

Regards