FrontEnd Questions

  • Upload
    zach

  • View
    213

  • Download
    0

Embed Size (px)

DESCRIPTION

Front end questions

Citation preview

ES 5 vs ES 6Tell me about a JS framework youe used recently and why you like it

Write a function to determine the LCM (Lowest common Multiple) for 3 numbers.2 -> 4, 6, 8, 10, 12,14, 16, 18,20,22,24,26,28,30,32...3 -> 6, 9, 12,15, 18,21,24,27,30,33...5 -> 10, 15, 20, 25, 30, 35...

Interface Vs. abstract classwhat is multiple inheritance - are there any issues that can arise because of it?

author+----+-----------------------+| id | name |+----+-----------------------+| 1 | Neil Gaiman || 2 | Sir Arthur Conan Doyle|| 3 | Terry Pratchett || 4 | Snooki |+----+-----------------------+book+---+------------------------------------+| id | title |+----+-----------------------------------+| 1 | Good Omens || 2 | The Adventures of Sherlock Holmes || 3 | Stardust || 4 | Epic of Gilgamesh |+----+-----------------------------------+author_book+-----------+---------+| author_id | book_id |+-----------+---------+| 1 | 1 || 1 | 3 || 2 | 2 || 3 | 1 |+-----------+---------+

Return the names of all authors who have written at least one book

Tell me about a project youve been working on that youre proud of