Git Product home page Git Product logo

case-statements-quiz's Introduction

Case Statements Quiz

Objectives

  1. Distinguish a case statement from other patterns
  2. Identify when to use a case statement
  3. Write a case statement

Note: If you see concepts in the quiz that you might not have seen before, then Google it. Knowing how to look for information is an important part of being a good programmer so we're not going to always give you everything you need to figure out a problem; some of it will be on you.

???

Quiz

?: Which of the following is a case statement?

( )

name = "Steven"

if name == "Steven"
  "Hi, #{name}"
else
  puts "Hi, stranger!"

(X)

name = "Steven"

case name
  when "Steven"
    puts "Hi, #{name}"
  when "Amanda"
    puts "Welcome back, #{name}"
  when "Admin"
    puts "You have all the power!"
  end

( )

def case
  puts "Am I a case statement?"
end

case

?: Of the following two examples, which example uses the case statement the best?

( )

name = "Steven"

case name
  when "Steven"
    puts "Hi, #{name}"
  when "Amanda"
    puts "Welcome back, #{name}"
  when "Admin"
    puts "You have all the power!"
end

( )

grade = 95

case grade
  when 90..100
    "A" 
  when 80..90
    "B"
  when 70..80
    "C"
  when 60..70
    "D"
  when 0..60
    "F"
end

(X) Both are good as case statements

?: Which operator does a case statement use to compare the value to the conditions?

(X) === ( ) == ( ) =

???

View Case Statements Quiz on Learn.co and start learning to code for free.

case-statements-quiz's People

Contributors

annjohn avatar danielseehausen avatar joshuabamboo avatar loganhasson avatar sgharms avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

case-statements-quiz's Issues

2nd question is confusing with prior study material

The 2nd question "Of the follow 2 examples, which uses the case statement the best?"
The test stated the correct answer was the case setup using when/then, nothing in the previous material that was teaching case statements talks about when/then being a way you can setup a case statement.

Quiz is broken

@ktravers @SophieDeBenedetto Could one of you look at the markdown here and fix? I feel like it would be desirable to make the code blocks themselves the answer options (which I believe is supported?)

Quiz questions are answered

Every time I start quiz pages, some or all questions are selected with correct answers. They go blank after I refresh the page.

Quiz #2

Hi,

I'm wondering why the second example is the best case statement of the two.

As I choose the answer as the first one in quiz #1, I guess there is no slightly implicated meaning, like "welcome back ,#{name}" or "Hi #{name}" should be applied for everyone. Is this the reason to choose the second one as the best case statement? If it is, it might be better to edit the first Quiz to make it better :)

I'm wondering what is the teaching point in Quiz 2.

Plus, Is there then syntax in the case statement in Ruby? On my research, it's not common obviously.

Question #2 - .. operator

The question asks which of the two examples uses the case statement best (or both), however, the second example uses the .. operator, which has not been introduced up to this point and creates unnecessary confusion.

image

Answers are pre-filled

This is my first time opening and attempting this quiz, yet there are answers that have already been selected.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.