Computer Science, asked by Stephannesien, 9 months ago

1. convert the following algebrac expression to basic expression
2x^2 + 3y - 6=0
a+xy
2. using BASIC, write a program to calculate the sum of four (4) numbers

Answers

Answered by Anonymous
4

1.

  1. 2*x*x+3*y-6=0
  2. a+x*y

2.

{

int a,b,c,d,sum;

sum=a+b+c+d;

}

Similar questions