We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
來源: FB原討論串
常見的 Ruby on Rails 工程師面試問題 GitBook 文件 來源: FB原討論串
Interview 工具 Interview是一個簡單的面試工具,主要讓面試人員多一個測試開發者 Ruby & Rails 程度的方法。安裝之後可呼叫一個像rails console的互動式介面,讓開發者回答問題、寫code等等,面試人員就可以在旁邊偷懶...啊不對是在旁邊觀看開發者是否瞭解這些觀念。 來源: FB 原討論串
在美國的留學生的面試問題 來源: FB 原討論串
歡迎樓下補充參考資料
The text was updated successfully, but these errors were encountered:
class Cat # 請完成實作 end kitty = Cat.new("kitty") puts kitty.name # 在畫面上印出 kitty 字樣
profile = {name: "kk", age: 18}
當執行這行程式:
p profile["name"]
會得到什麼結果? 為什麼?
如果要在 1 到 100 的數字當中,任意取出 5 個不重複的亂數,你會怎麼做?
class Bank def transfer(amount) # ... end end Bank.transfer(10)
上面這段程式碼執行後會發生什麼事?為什麼?如果有錯誤又該如何修正?
link_to "刪除", products_path(product), method: :delete, class: "btn btn-default"
link_to 方法共有幾個參數?為什麼?
link_to
有的冒號靠右邊:
class Store has_many :products end
有的冒號靠左邊:
link_to "檢視", books_path(book), class: "btn btn-default"
或是兩邊都有:
user_profile = {name: "kk", age: 18, blood_type: :b_negative}
請問,這三種寫法分別代表什麼意思呢?
請簡述 bundle install 指令的用途。
bundle install
請說明 rails db:migrate 這個指令的用途是什麼?
rails db:migrate
假設某個 Controller 的程式碼如下:
class BooksController < ApplicationController def index @books = Book.all end def update @book = Book.find_by(id: params[:id]) @book.update(price: 100) redirect_to books_path, notice: "資料更新成功" end end
請問:
@books
@
@book
在你想像中的分支(branch),是個什麼樣子的東西?
空的資料夾無法被加入 Git 版控,但如果就是想讓這個資料夾留下來,你會怎麼處理?
如果有些檔案,像是 /config/database.yml 之類比較機密的檔案,不想放在 Git 裡面,你會怎麼做?
/config/database.yml
在之前的作業中曾寫到:
def odd_number_calculator(n) # 實作內容 [*1..n].select(&:odd?).reduce(:+) end puts odd_number_calculator(100) # 得到 2500
上述程式中,第 3 行的select 方法使用 (&:odd?) 以及 reduce 方法後面接了 :+ 的意思是什麼呢?
select
(&:odd?)
reduce
:+
Sorry, something went wrong.
No branches or pull requests
紅寶石鑑定商 試題流出
來源: FB原討論串
過往的面試參考資料
常見的 Ruby on Rails 工程師面試問題 GitBook 文件
來源: FB原討論串
Interview 工具
Interview是一個簡單的面試工具,主要讓面試人員多一個測試開發者 Ruby & Rails 程度的方法。安裝之後可呼叫一個像rails console的互動式介面,讓開發者回答問題、寫code等等,面試人員就可以在旁邊偷懶...啊不對是在旁邊觀看開發者是否瞭解這些觀念。
來源: FB 原討論串
在美國的留學生的面試問題
來源: FB 原討論串
歡迎樓下補充參考資料
The text was updated successfully, but these errors were encountered: