Examveda

What is the output of given code?
#counter=1
    if counter<=5
    puts (counter)
    counter=counter+1
    else 
    puts(counter)
    counter=counter-1
    end

A. Undefined local variable counter

B. 1,2,3,4,5

C. 1 2 1

D. 1
2

Answer: Option A


This Question Belongs to Ruby Programming >> Control Structures In Ruby

Join The Discussion

Related Questions on Control Structures in Ruby