answersLogoWhite

0


Best Answer

2

User Avatar

Wiki User

11y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is selection structure in programming?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is structured programming in generally?

It means using only three structure when programming: sequence, selection, repetition.


Why is c structured programming language?

Because it supports the three basic programmic structure: sequence, selection, iteration.


How to sort select and structure information to produce minutes?

In computer programming, selection sort is a tool that can be used to select structure information and sort it. It can also be used to add and delete minutes.


What is the message structure in windows programming?

No.


Why c is call structured programming?

Because you can use programming structures, namely: sequence, selection (if, switch) and repetition (while, for, do-while)


In structured programming the Sequence structure begins with a(n?

idea.


Data structure for language processing in system programming?

lado


What do you mean by non primitive data structure in C programming?

What do you mean by searching in data structure in C.?


Short note on structural programming and procedural programming?

There is no difference between procedural programing language & structure programing language.


What is the indentation in programming Why is it important?

In computer programming languages, indentation formats program source code to improve readability. Programming languages make use of indentation to define program structure . Programmers use indentation to understand the structure of their programs to human readers.


When do You use a nested selection structure?

you need nothing


What is selection Visual BASIC?

Selection is a programming concept or structure referring to the ability to make choices in a programming language. This is critical to programming. It is what enables a program do different things. The code allows you to select one of several different options, depending on some scenario. The most common way of implementing a selection in Visual BASIC and most languages, is an IF command. So for example if you had an exam score for a person and wanted to say if they had passed or failed based on the pass mark being 40, you could have a statement like this, where the result is in the variable called intResult. If intResult>=40 Then MsgBox("Pass") Else MsgBox("Fail") End If