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
-2
votes
1 answer

Need a program that can export flowcharts as xml for later use in JavaApp

I want to develop a simple way to generate a flowchart for websites. Here is why I would need something like that: At first one draws a flowchart in < insert-program-here > and exports it as a xml-file. This xml-file shall be imported and…
Stefan Falk
  • 23,898
  • 50
  • 191
  • 378
-2
votes
1 answer

Flowchart Design

I need help designing a flowchart about a program thats gets a string from the user in main and then creates a function that takes a string as an argument and returns the sum of the elements (all elements in the array) in the string. And it displays…
-2
votes
4 answers

Drawing of flowchart with javascript and return the drawing variable instead of picture

I would like create a page for client-side user to draw flowchart, most importantly can return the value of the drawing, for example, the typing in the box he draw, instead of end result in picture. Can anyone give some advise what to be used and…
jc_tan
  • 55
  • 1
  • 3
  • 9
-2
votes
2 answers

Is there an inkit.org style diagramming app that will produce a Rails or Node.js skeleton app with scaffolding?

I'm trying to figure out if there are any applications (SaaS or otherwise) that offer a basic graphical user interface for building out all the necessary scaffolding of a Rails or Node.js app from a flow-chart type of interface? I remember Visual…
-3
votes
1 answer

How to draw a flowchart to calculate sum of all odd numbers between 1 to 100

Help me to draw flowchart to find sum of all odf no. from 1 to 100
Ismail
  • 1
  • 2
-3
votes
1 answer

Is this flowchart's logic correct?

This is my flow chart for a clock This clock is suppose to show time and reset when it turns 24 hours, may i know if all the shapes ive used in this flowchart is correct? thanks
-3
votes
1 answer

What is the output of this flowchart?

What can be the output of this flowchart? Will z turn into zero ever?
-3
votes
1 answer

About the flow chart in programming languages

The target of the flowchart to get the sum of integer numbers from 1 to 3 The variables I have: N stands for the initial value sum so my question is why is variable N considerd a counter and why sum is considerd an accumulating variable
-3
votes
1 answer

Analytical flow-chart - decide what number must be in a specified box

I am having a lot of trouble in solving the following flowchart question. Could you please help me as soon as possible as i have interview tomorrow? 4th question in the following…
Mallya
  • 1
  • 1
  • 4
-4
votes
1 answer

What does it mean to say 'Is bit 7 on?' in a calculator flowchart?

http://home.fnal.gov/~cheung/embedded-linux/pics/flowchart4.gif ^ The flowchart I am going to writing a code in Python for a calculator, so I found this flowchart, I was just wondering does anyone know what 'Is bit 7 on?' means!
user3422851
  • 41
  • 2
  • 6
-5
votes
1 answer

Why aren't all conditions checked in nested 'if statements'?

score = 50 if score >= 60: print('elon') if score <= 50: print('please type number bigger than 0') else: print('please type a number next time') Can anyone try to help me understand the mechanics of why the second condition is met, but…
-5
votes
1 answer

write an algorithm that will accept a temperature as input from a user, and advise the user to wear a jacket

write an algorithm that will accept a temperature as input from a user, and advise the user to wear a jacket. Based on the temperature, the algorithm should either tell the user to bring a heavy jacket (colder than 32 degrees), light jacket (between…
-5
votes
1 answer

Multiples of 9 using this formula....? 9 * n, 9*(n+1),9*(n+2)

This is for an assignment at school and I'm stuck on this question. Write an algorithm which displays on a new line on the screen, the first 20 values of multiples of 9, using a formula as follows. 9 * n, 9*(n+1),9*(n+2) I am supposed to make an…
PhillipK
  • 1
  • 1
-6
votes
1 answer

How to draw this chart in html and CSS?

Please how to do this chart in HTML and CSS ?? Where the circles are buttons ..
-7
votes
1 answer

Scanner in a flowchart | Java

I don't know how to convert this into a flowchart because of the Scanner. import java.util.Scanner; import java.io.*; public class Voter { public static void main(String [] args) { System.out.print("Enter your age: "); int age =…
1 2 3
38
39