answersLogoWhite

0

What else can I help you with?

Related Questions

What has the author P L Hammer written?

P. L. Hammer has written: 'Pseudo-Boolean programming and applications' -- subject(s): Algebra, Boolean, Boolean Algebra, Congresses, Programming (Mathematics)


What has the author A W Colijn written?

A. W. Colijn has written: 'Pseudo-Boolean programming'


Why is pseudo code called false code?

Pseudo code cannot be processed by a machine, it is solely intended for processing by humans.


What Is a Boolean variable that signals when some condition exists in the program.?

flag


How can you Write a suitable pseudo code to check whether a number is prime or not?

Begin Read num for(i=2; i<num; i++) if(num%2==0) then print "the number is not a prime no."; else if print "the number is prime"; end if Stop


What is the pseudo code to delete prime numbers from linked-list?

It sounds like you're using Java, so instead of pseudo-code, I'll give you the actual code. LinkedList<Integer> l; // Let's assume you have a bunch of Integer values in this list. for (int i = 0; i < l.size(); i++){ int n = l.get(i); boolean prime = true; for (int i = 2; i < n; i++){ if (n % i == 0){ prime = false; break; } } if (prime){ l.remove(i); i--; } }


How does pseudo code operate?

It doesn't. Pseudo code isn't a programming language, it is just there to give an idea of how you could write a program.


What is the basic Difference between flow chart and pseudo-code?

what's the difference between flow chart and structure diagrams and pseudo code


Is there an absolute 'right' and 'wrong' way of writing pseudo code?

No. There is no "right way" and "wrong way" of writing pseudo code, let alone qualifying with "absolute". However, a pseudo code is "wrong" if it cannot be understood, or it is incorrect in semantic (what the code tries to describe, solve, etc)


What are the pseudocode keywords for loop?

Pseudo code does not have key words, you make it up, that's why it is pseudo.


What is pseudo code algorithm for create a linked list with a header and insert a four numbers to the list?

pseudo code algorithm to create a linked list


Which data type stores only one of two values?

In Java, such a data type is called boolean. In other programming languages it may be known by different names, including variations of "boolean" such as "bool", and "logical".