[comp.cog-eng] Visual Languages

creubank@crls.sony.co.jp (Curtis Eubanks) (09/12/89)

I am interested in visual languages--programming languages that allow
a non-programmer to create programs by choosing and manipulating icons.
My question is:  How much can I assume a user knows?  Being a
programmer myself, it's difficult for me to answer this question.

Consider the concepts of conditional branching and looping.  These are
essential to traditional programming practices, but how does someone
who is completely new to computer programming deal with these ideas?
Is an expression of the form

		if <test> then <branch1> else <branch2>

easy enough for a non-programmer to understand and use?  Probably.  Is
it intuitive?  How about

		while <condition> do <action>

?  Maybe a little more difficult.  Of course, once a user has
successfully implemented a program using either construct, future
usage will be much easier.  But that's just turning non-programmers
into programmers, not using common knowledge.  Ideally, a user who
knows nothing but some very basic interaction skill (moving the mouse,
clicking, and perhaps typing) can walk up to a visual programming
system and start programming immediately.  Realistically, this might
be impossible.

My intuition is that any useful visual language must be restricted to
a specific domain to be able to be used by a complete novice.  A
non-programmer must choose from a limited number of icons that
represent simple or at least familiar concepts.  Before going any
further in developing a visual language program, some questions must
be answered:

	[1] What does the user know?
	[2] What kind of operations does he wish to perform and on
	    what data?
	[3] How would he naturally represent these operations/data
	    visually?

Unless we know what kind of things the end-user wants to program, we
cannot design an appropriate visual language.  Recent discussions on
comp.cog-eng about the scarceness (or lack) of universal icons makes
me think [3] might be a major stumbling block.

Any comments?
--
-----------------------------------------------------------------------------
Curtis Eubanks                   kddlab!crls.sony.junet!creubank@uunet.uu.net
Sony Corporate Research Labs     creubank%crls.sony.co.jp@uunet.uu.net
Information Systems              creubank@crls.sony.co.jp
-----------------------------------------------------------------------------

hammy@dduck.ctt.bellcore.com (john g. smith) (09/13/89)

The discussion of universal icons doesn't necessarily apply to that of
visual programming languages.  As you pointed out, VPL's are most
likely to be useful in bounded, specialized, domains.  It is probably
safe to assume that a user of such a language will be fluent in the
language of that domain.  So if the language is, say, for building
programs to simulate telephone networks, the users will be familiar
with what telephone networks are, what is typically found in a central
office, etc.  In addition, they will be familiar with certain "icons"
- in most network diagrams, a central office is represented by a box
with an inscribed circle containing the letters CO.

My advice is to know your target audience, get familiar with their
language, and then use that language.

John.
_____
John G. Smith   	email : hammy@ctt.bellcore.com
RRC 1H-213       	voice : (201) 699-4530

db@lfcs.ed.ac.uk (Dave Berry) (09/13/89)

In article <CREUBANK.89Sep12172753@sparc1.crls.sony.co.jp> creubank@crls.sony.co.jp (Curtis Eubanks) writes:
>
>My question is:  How much can I assume a user knows?
>
>Consider the concepts of conditional branching and looping.  These are
>essential to traditional programming practices, but how does someone
>who is completely new to computer programming deal with these ideas?

The literature on this sort of question is pretty spread out.  A good
place to start looking is the International Journal of Man-Machine Studies
(IJMMS).  Two useful articles to start with are:

@Article(allwood,
Author="C. M. Allwood",
Title="Novices on the Computer: A Review of the Literature",
Journal="IJMMS",
Volume="25",
Pages="633-658",
Year="1986")

@Article(galotti,
Author="K. M. Galotti and W. F. Ganag III",
Title="What Non-programmers Know about Programming: Natural Language Pro
cedure Specification",
Journal="IJMMS",
Volume="22",
Number="1",
Pages="1-10",
Month="Jun",
Year="1985")

Dave Berry, Laboratory for Foundations      db%lfcs.ed.ac.uk@nsfnet-relay.ac.uk
    of Computer Science, Edinburgh Uni.	    <Atlantic Ocean>!mcvax!ukc!lfcs!db

"Welcome to the oceans in a labelled can, welcome to the dehydrated lands ..."

davewt@NCoast.ORG (David Wright) (09/14/89)

	There was (and may still be for all I know) a visual (mouse-based)
language available for the Amiga called "AiRT". It had icons for each
programming construct, and you could drag them around, draw lines connecting
them, etc. When you wanted to do things like text comparisons, you would
use the keyboard to fill in a blank with the text you wanted, but that
was about the only thing you needed it (the keyboard) for. One of the
problems with any icon-based language is that it is simply too slow
to enter programs in when compared with using a keyboard. I can type in
"if (a == 34)" MUCH faster than anyone could move a mouse pointer around
to select the IF icon, select the variable, and key in the check amount
etc...
	Another problem is how to print your programs out efficiently, while
the biggest problem is that programming requires an understanding of
programming fundmentals, no matter what language you use. Simply making
the keywords easy to remember and big (COBOL) or having no keywords (AiRT),
does nothing to help people understand just what a structure or a pointer
is....

			Dave

gilbert@cs.glasgow.ac.uk (Gilbert Cockton) (09/14/89)

In article <CREUBANK.89Sep12172753@sparc1.crls.sony.co.jp> creubank@crls.sony.co.jp (Curtis Eubanks) writes:
>Is an expression of the form
>
>		if <test> then <branch1> else <branch2>
>
>easy enough for a non-programmer to understand and use?  Probably.  Is
>it intuitive?
See work from Sheffield (Green, Arblaster, Sime) on why IF, IF NOT, IF
NOT ... appears to be better.  There is a book in the pipeline from
(mostly European) Cognitive Ergonomists on programming - keep an eye on
Cambridge University Press's list.  In the meantime, chase up work by
Thomas Green (Cambridge MRC APU, ex-Sheffield), approach Yale stuff
with care (Soloway etc, too keen on modelling programmers with naive AI
techniques) and look in recent HCI and EACE (European Association for
Cognitive Ergonomics) conferences.

>Ideally, a user who
>knows nothing but some very basic interaction skill (moving the mouse,
>clicking, and perhaps typing) can walk up to a visual programming
>system and start programming immediately.  Realistically, this might
>be impossible.

A safe assumption, unless you can build a CAI module on programming to
raduate level into your visual language :-)

>My intuition is that any useful visual language must be restricted to
>a specific domain to be able to be used by a complete novice.
Complete novice "programmer" I take it.  I agree (we are working o such
a domain at the moment, telephony actually, an example used by another
respondent).

>	[1] What does the user know?
"Ask" your users.  This is some cocktail of knowledge elicitation and
task analysis.

>	[2] What kind of operations does he wish to perform and on
>	    what data?
That will come partly out of the task analysis and knowledge
elicitation, but one of our jobs as computer systems designers is to
invent new tasks.  Users will usually not "want" these until they are
aware of them or, more realisitically, when they can try them out on
some realistic prototype.  A priori design seems impossible here, but
that does not stop it being heavily influenced by some theories, even
if it is not driven by them.

>	[3] How would he naturally represent these operations/data
>	    visually?

Forget nature, this is society.  Nature stops at material boundaries.
Semiotics are cultural phenomena, not material phenomena 
(all materialists and other reductionists, follow-ups to /dev/null 
 please, this is a nice human group :-))

Common/well known/acceptable representations will again emerge in
interactions with possible users, largely through task and domain
anlaysis. Telephony for example, is crammed with existing graphical
representations which can be carried straight over to the VPL.
However, there are also many abstract constructs with names which are
very poor metaphors, and thus suggest the wrong visual analogies.
Here you have to work out from the structure of a domain entity to its
possible representations, drawing on as much rich contextual
serendipity as possible.  You can borrow visual cues from other parts
of the environment.  Chernov faces have already been mentioned.
Bodily postures and gesture representations may be other good
representations for abstract operations.
-- 
Gilbert Cockton, Department of Computing Science,  The University, Glasgow
	gilbert@uk.ac.glasgow.cs <europe>!ukc!glasgow!gilbert

ellery@claire.harris-atd.com (Ellery Chan) (09/16/89)

In article <CREUBANK.89Sep12172753@sparc1.crls.sony.co.jp> creubank@crls.sony.co.jp (Curtis Eubanks) writes:
>...  Ideally, a user who
>knows nothing but some very basic interaction skill (moving the mouse,
>clicking, and perhaps typing) can walk up to a visual programming
>system and start programming immediately.  Realistically, this might
>be impossible.

    It seems that non-programmers are usually not used to breaking a
problem down into a sequence of operations.  To be successful, I think
the set of operations available to the non-programmer would have to
be limited to very high level operations with very flexible methods
for combining those operations.


--------------------------------------------------------------------------
 Ellery Chan                     | ARPA  : ellery@trantor.harris-atd.com
 Harris Corp., MS 3A-1912        | USENET: ...!uunet!x102a!trantor!ellery
 PO Box 37, Melbourne, FL  32902 | AT&T  : (407) 729-3364
--------------------------------------------------------------------------

creubank@crls.sony.co.jp (Curtis Eubanks) (09/19/89)

Thanks to everyone who replied to my questions about visual language!
I am just starting research in this area now, and the references will
be very useful.

dave@prc.unisys.com: I couldn't get mail through to you.  Can you send
me an address reachable through uunet?

					-creubank
--
-----------------------------------------------------------------------------
Curtis Eubanks                   kddlab!crls.sony.junet!creubank@uunet.uu.net
Sony Corporate Research Labs     creubank%crls.sony.co.jp@uunet.uu.net
Information Systems              creubank@crls.sony.co.jp
-----------------------------------------------------------------------------

carm@umd5.umd.edu (Rick Chimera) (09/21/89)

In article <2685@trantor.harris-atd.com> ellery@trantor.harris-atd.com (Ellery Chan) writes:
>
>    It seems that non-programmers are usually not used to breaking a
>problem down into a sequence of operations.  To be successful, I think
>the set of operations available to the non-programmer would have to
>be limited to very high level operations with very flexible methods
>for combining those operations.

Oh, come now!  EVERY engineering discipline has a course like this by
the end of the sophomore year.  Even writers are taught to know your
audience, break down the issue into subissues and answer questions
that your reader will probably ask himself.  All of these tasks are
very much analogous (even the exact same!) to writing a good program,
whether or not a visual language is used.  So any person who has a
somewhat logical mind could write a reasonable not to fouled up
program given a great visual language.  This could be evidenced by
the popularity of the Macintosh.  Don't tell me all those people now
"programming" the Mac were previously programmers.  

Flames expected, but realize I'm not saying it's easy right now for
a non-programmer to program, but this is mostly the fault of the lack of
great visual programming languages, not the fault of the non-programmer
being able to (not) approach the problem correctly (enough).  Also,
the anxiety of the non-programmer using the computer is enough to shake
the logic right out of a person, which is exactly when one needs all
the logic at one's disposal.

----------------------------------------------------------------------
|  Rick "carm" Chimera                                               |
|  Human Computer Interaction Laboratory, U of Md, College Park      |
|                                                                    |
|  MHO's are just that, they are M, they are O's, and are not to be  |
|  construed as fact or fiction or having anything to do with the    |
|  HCIL.                                                             |
----------------------------------------------------------------------