Hi!
I realized that I needed some help with some regular signs. I use them all the time, but i need to know what their names are in english, can someone please help me?
These are the signs:
* What is it called in general, and what it is called when used in math, to multiply numbers?
; What is it called in English?
( and ) ?
[ and ] ?
> and < in mathematical terms?
Under_the_line, how do you say _ ?
! ?
“ two dots over the word, and what it is called when a word is “within” ?
% ?
: ?
‘ what it that dot called?
I also have some questions about different signs in programming terms and mathematical terms:
!= how do you say that in programming terms?
>= how do you say that in programming terms?
/* when words are */ within “invisible”-signs in programmingcode, how do one say it?
With kind regards
Veronika D.
I realized that I needed some help with some regular signs. I use them all the time, but i need to know what their names are in english, can someone please help me?
These are the signs:
* What is it called in general, and what it is called when used in math, to multiply numbers?
; What is it called in English?
( and ) ?
[ and ] ?
> and < in mathematical terms?
Under_the_line, how do you say _ ?
! ?
“ two dots over the word, and what it is called when a word is “within” ?
% ?
: ?
‘ what it that dot called?
I also have some questions about different signs in programming terms and mathematical terms:
!= how do you say that in programming terms?
>= how do you say that in programming terms?
/* when words are */ within “invisible”-signs in programmingcode, how do one say it?
With kind regards
Veronika D.
Welcome to EnglishForward veronikad!
Those keyboard symbols which show feelings are called emoticons or smiley. :-D
In maths, ' * ' this is called the times sign.
; - semicolon
( ) - brackets, round brackets, parentheses
People tend to use brackets are round brackets in Australia. In North America, parentheses is the more common term I think.
> and <
x > 3 - x is greater than 3
x < 3 - x is less than 3
tom_school@***.com - "_" is called underscore
! - exclamation mark
“ two dots over the word, and what it is called when a word is “within” ? - I don't really know what people call this.
% percentage
: colon
‘ apostrophe
!= how do you say that in programming terms? - I don't know
>= how do you say that in programming terms? - greater than or equal to
I don't know much about programming unfortunately. Sorry but I can't help you with the other terms. I was never good at programming when I took up computer last year.
Hope it helps.
PBF
Those keyboard symbols which show feelings are called emoticons or smiley. :-D
In maths, ' * ' this is called the times sign.
; - semicolon
( ) - brackets, round brackets, parentheses
People tend to use brackets are round brackets in Australia. In North America, parentheses is the more common term I think.
> and <
x > 3 - x is greater than 3
x < 3 - x is less than 3
tom_school@***.com - "_" is called underscore
! - exclamation mark
“ two dots over the word, and what it is called when a word is “within” ? - I don't really know what people call this.
% percentage
: colon
‘ apostrophe
!= how do you say that in programming terms? - I don't know
>= how do you say that in programming terms? - greater than or equal to
I don't know much about programming unfortunately. Sorry but I can't help you with the other terms. I was never good at programming when I took up computer last year.
Hope it helps.
PBF
Comments
Thank you so much for your answer, and such a quick one to.
Im really greatfull, you light up my day!
Regards
Veronika
!= means in programming "not equal to". It's a synonym to <>. I'm not sure, if I understood you correctly, are you asking about the term name for informations embded inside of the source code of computer program? They're being called just comments and compiler ignores them when the program is being compiled. There are a lot of notations how you can put comments inside of your code, like...
a) /**
*/
b) /* */
c) //
....
Best Regards
JCD
Thank you som much for your answers, this is really helpfull for me.
You seems to know a bit about programming so here are some last questions:
Now I get down to the more tricky questions:
How does one say [ and ] , what are these square brackets called?
Does a value within [ 10] has any particular title?
Look at this line below:
typedef int* PINT
What is it called when * is a pointer and not just a mathematical sign?
How do one say: char *argv[ ] ;
in english?
How do one say: { and } in english?
Best regards
Veronika D
typedef int* PINT;
PINT i; // for example You're probably referring here to the parameter of the main method in C/C++ language. Simply say, it's an array of strings which contains parameters of the C/C++ program. Anyway, watch out! char argv[] is an array of char. char * argv[] is an array of strings....!!! Don't mix it together...
Best Regards
JCD
Thankyou very much for your answer. Please take a look at the red text below, your previous answer is in green.
typedef int* PINT
What is it called when * is a pointer and not just a mathematical sign?
This row is an C/C++ definition of the new name/alias for the pointer on the data type int. In fact, you're creating new data type which will be an synonym for the pointer on the definition type int..You'll be able then to declare this sweet thing...
typedef int* PINT;
PINT i; // for example
Then how do I say the sentence: Typedef int of pointers, PINT. (that is the the way I would form the sentence in my language) Typedef int with pointers, PINT
Typedef int by pointers, PINT
Or is it better to say: Typedef int with pointer, PINT
Anonymous
How do one say: char * argv[ ] ; in english?
You're probably referring here to the parameter of the main method in C/C++ language. Simply say, it's an array of strings which contains parameters of the C/C++ program. Anyway, watch out! char argv[] is an array of char. char * argv[] is an array of strings....!!! Don't mix it together..
Then how do I say the sentence: Char of pointers argv[ ]
Char with pointers in argv[ ]
Char by pointers argv[ ]
Char with pointer argv[ ]
Which way is the most normal way to express and pronounce it?
Best regards
Veronika
sorry that I didn't answer your additional question. I didn't notice of your additional note...[A]
Choose whatever you want...
Best Regards
JCD
Dont be sorry, im just glad a got a good answer, and I should probably have posted the question in another place than I did.
I hav just ove more:
What is called in programming when start of a line is placed more to the right than the previous one?
indentation , indent , or indention ?
Best regards
Veronika