Most voted "table-test" questions
3 questions
Sort by count of
-
42
votes5
answers43935
viewsWhat is a Table Test? How to apply it?
It is quite common to read while studying algorithms and programming logic that the Table Test is a means of verifying the functioning of an algorithm. What is the Table Test? How is it possible to…
-
4
votes2
answers4751
viewsHow to do Table Test for a particular algorithm?
I have this algorithm, in a pseudocode: Knowing that n1 receives the value 20. inicio inteiro: n1,n2,n3; leia (n1); n2<-n1*3; n3<-n1-1+n2; imprima("O resultado final será n3=",n3); fim.…
-
3
votes1
answer524
viewsJava Vector Table Testing
I’m having trouble solving the next code table test, someone could show me the output and how to do it? public class Principal { public static void main(String args[]) { int array[] = {1, 2, 3, 4,…