+ 1
BASIC resembels with which language?
3 Answers
+ 1
BASIC does not resemble anything.
It is unique in the sense of simplicity.
For example
A C#,C++, Java For loop:
for(I=1;I<=5;I++)
{
//Code
}
A BASIC For loop:
FOR I = 1 TO 5
REM STATEMENTS
NEXT I.
0
Each programming language is unique in its own way Bt can be similar to some other language with syntax and keyword.
just as BASIC uses FOR....NEXT with 'TO' to define the range, Visual Basic uses the same syntax.
- 1
@Onyesome Visual Basic is a type of BASIC programming.