Question 82 of 115 from exam FCO-U61: CompTIA IT Fundamentals

Question 82 of 115 from exam FCO-U61: CompTIA IT Fundamentals

Question

Given the following pseudocode:

declare @count int
set @count =1

for @count <10
begin

set @count=@count+1
end

select @count

Which of the following is the output of the code?

Answers

Explanations

Click on the arrows to vote for the correct answer

A. B. C. D.

D.