answersLogoWhite

0


Best Answer

This word comes from greek and the corresponding word in greek is "Ψευδο-"

User Avatar

Wiki User

11y ago
This answer is:
User Avatar
More answers
User Avatar

AnswerBot

4d ago

The word "pseudo" comes from the Greek word "pseudes," which means false or deceptive. It is commonly used in English to prefix to indicate something as false or pretended.

This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What is the language origin of pseudo?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

What is the language of origin for pseudo?

From Greek meaning 'false'


What is the language of origin for the word pseudo?

The language of origin of this word is greek. The corresponding word in greek is "ψευδο-" and in this form means something like "fake". It' comes from the greek word "ψεύδος" which means "a lie".


What is the origin of pseudo?

Gautamala Thy Origin of Pseudo is "pseudein" (to lie) spoekn by thy Greece from thy 1000 B.C.


When was the prefix Pseudo inducted into the English language?

== ==


Define pseudo language?

A pseudo language is a non-specific, conceptual programming language that uses commonly understood programming constructs that can be easily translated into any specific programming language. Pseudo language is typically used to conceptualize algorithms in a commonly understood language without being overly specific or verbose to any one language. This makes the algorithm more accessible to more programmers, regardless of their preferred language.


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 pseudo code in c?

Writing in pseudo code means writing in a natural language, not in any specific programming language, so there is no thing as "pseudo-code used in C" as opposed to "pseudo-code used in Java".When you write in pseudo-code, you don't have to follow any specific syntactic rules, just to describe the steps you will use in your algorithm.For example, pseudo-code for bubble sort (taken from wikipedia):procedure bubbleSort( A : list of sortable items ) do swapped = false for each i in 1 tolength(A) - 1 inclusive do: if A[i-1] > A[i] then swap( A[i-1], A[i] ) swapped = true end ifend for while swapped end procedureIt is not written in any programming language, but it should be easy to implement this in any language after you understand the idea from the pseudo-code.


Is writing pseudo code the same as writing in a specific language?

nope


Is pseudo code is a) high level language b) assembly language c) machine language?

in RST interrupt , RST STAND FOR


About the origin of language?

the Montana language of origin is spanish.Montana means mountain in spanish.


How do you explain the origin of language?

The origin of language is not definitively known, but it likely evolved as a way for early humans to communicate and cooperate with each other. Some theories suggest that language developed gradually from early forms of communication or emerged as a result of a complex interplay between social, cognitive, and biological factors. The development of language may have provided an evolutionary advantage by enabling humans to share information, coordinate activities, and pass on knowledge to future generations.


What language is pseudocode written?

Pseudo code is in itself a language on its own. Pseudo codes are used to describe algorithms in computer science. This language, unlike a programming language is used for human specific understanding and abstract representation of a certain procedural flow of a program. Pseudo code cannot be executed in a computer based environment. Pseudo code eliminated unnecessary programming structures and only focuses on the flow process of the algorithm. It includes programming language specific constructs and natural human language constructs to explain the functioning. This is unlike a computer programming language where strict rules and procedures are laid down, which have to be followed to execute the particular code.