Lab 1 - Thursday

  1. Write and compile a Dart program that prints the first 50 Fibonacci numbers. The program should generate the sequence dynamically (not hardcoded values).

  2. Write a Dart program that extracts all words from a phrase and prints only the longest word(s).

  3. Write a Dart function that extracts all numbers from a text. Numbers can be integers or doubles. Print the count of the numbers, average and maximum of them.

  4. Write a dart function that converts a string of characters written in lowercase_with_underscore into UppeCamelCase.