Questions tagged [flowchart]

A flowchart is a type of diagram that represents an algorithm or process, showing the steps as boxes of various kinds, and their order by connecting these with arrows. This diagrammatic representation can give a step-by-step solution to a given problem.

A flowchart is a type of diagram that represents an algorithm or process, showing the steps as boxes of various kinds, and their order by connecting these with arrows. This diagrammatic representation can give a step-by-step solution to a given problem.

Process operations are represented in these boxes, and arrows connecting them represent flow of control. Data flows are not typically represented in a flowchart, in contrast with data flow diagrams; rather, they are implied by the sequencing of operations. Flowcharts are used in analyzing, designing, documenting or managing a process or program in various fields

For more info check Wikipedia.

585 questions
-1
votes
3 answers

if else java algorithm and psuedocode

We would like to assess a service charge for cashing a check. Th service charge depends on the amount of the check. If the check amount is less than 10$, we will charge 1$. If the amount is greater than 10$ but less than 100$, we will charge 10% of…
xiela
  • 1
-1
votes
1 answer

What does this flowchart control statement mean?

flowchart while loop In the picture above, the control statement is "loopCount < ? 10". What is the correct control statement of this one if written in code? (code should be written in a while loop, java) "while(loopCount<=10)" or…
haku
  • 11
  • 1
-1
votes
1 answer

React Tree View Library

I need a tree view library, that can help me to create a tree as shown below in React. Would really appreciate it if a link for a similar demo is added. I need to convert JSON to a tree view like it. sample
-1
votes
1 answer

Making a Diagram Application

I decided to make an application that like statechart simulation tool or flowchart (such as yEd, MS visio etc.). It will be a diagram scene application. But, I have'nt decided to platform that I will use yet. Which one is suitable for this…
kaernk
  • 63
  • 6
-1
votes
1 answer

J48 algorithm in weka algorithm or flowchart steps

I am new in the machine learning area. please, I was wondering if you could provide me with algorithm or flowchart steps for J48. note: I am using the default setting in weka. thank you for your help.
Zaid T.S
  • 1
  • 1
-1
votes
1 answer

Agents do not enter the process Blocks

I used enter blocks to bring pieces of equipment to the process but nothing happens! How can I push the equipment to enter the process? Can I use resource task start block instead of enter block?
Neda
  • 23
  • 5
-1
votes
1 answer

how to draw infinte in a flowchart

I was learning flowcharts, wanted to show this code in a flowchart, wanted to print infinite times without declaring a counter. please note I haven't declared any counter. for (;;){ System.out.println("helloworld"); } }
Vyom Yadav
  • 145
  • 13
-1
votes
1 answer

Understanding Control flow in Exception Handling in Python

a=0 try: print("In Try Block !") a = 10/0 except Exception as e: print("In Exception Block !") raise e finally: print("In Finally Block !") print(a) pass When I run the above code I get output as below. I don't get the…
-1
votes
2 answers

How to plan software project step by step?

I have to design and develop stand alone desktop application using NetBeans , Java and MySQL. I need to know how to plan my software step by step before coding, like create SRS document, drawing use cases, plan ER Diagram, Flow charts , BP Diagrams,…
-1
votes
1 answer

How to delete, revert, reposition Canvas drawings on Android? How to implement an expandable and zoom-in zoom-out by pinching?

I'm developing a flowchart drawing app for Android. I implemented the shapes, toolbars etc, now users can drag and drop a shape to the drawing surface and the gets drawn using Canvas. I even added a seekbar to let the user decide how big or small…
-1
votes
1 answer

Interactive flowchart in javascript

Is there any free library for building interactive flowcharts? (i.e. drag and drop items) I found http://gojs.net/latest/samples/flowchart.html which is awesome but it is not free.
BeBa
  • 105
  • 1
  • 2
  • 5
-1
votes
1 answer

Murmur Hash simple flowchart?

I found MurmurHash recently as one of the fastest, and MurmurHash3 is the new version of MurmurHash. I also found the complete explanation of MurmurHash in a Diagram by Ian Boyd. This diagram really looks awesome but I understand only a bit of it…
-1
votes
1 answer

How do I write this in pseudocode?

I'm currently studying JavaScript in Computer Science and just need a little help on my pseudocode as I'm getting confused. The task is to create a phone troubleshooting system in python. I have finished my basic flow chart for Task 1 but I'm now…
Zac
  • 23
  • 1
  • 6
-1
votes
2 answers

JavaScript library to develop a flowchart simulator in HTML

I want to develop a flowchart simulator where a user can do flowcharts for programs and things like that. I came across the GoJS library in this regard, but it looks like there's a licensing issue with it as I am getting this message: Go JS…
Kiran
  • 19
  • 2
-1
votes
1 answer

Analytical flow-chart - decide what number should be in the box

I am having trouble in solving the following flowchart question. Could you please help me as soon as possible ? Links are given below:- Problem 3 and Problem…