KUNGFU TECH vietnam
6304 câu hỏi phỏng vấn Full-Stack, Coding & System Design Interview
Bộ lọc:
What is Rust?
What are the differences between String and str in Rust?
What is the Option type in Rust, and why is it useful?
Is there a way to directly convert a String to an int ?
What happens when you pass a String to a function in Rust?
What’s a closure in Rust?
What are some some key features and concepts of Rust?
Explain what is the relationship between Lifetimes and Borrow Checkers in Rust?
What is a Lifetime in Rust?
What is a Borrow Checker in Rust?
When can’t my type be Copy in Rust?
How to implement a custom Allocator in Rust?
What does Rust have instead of a Garbage Collector?
Explain the concept of Ownership in Rust. Why do we need it in Rust?
What is the difference between iter and into_iter in Rust?
Does Rust support OOP?
Is it possible to create a Rust function with default arguments?
Compare Rc vs Arc in Rust
Explain what is Trait in Rust? What are some use cases when you need to implement one?
Is String type in Rust Copy or Clone ?
How would you model a Many-to-Many relationship with a Reference-Counted Smart Pointer in Rust?
Why are Rust executables so huge? How would you optimise it?
What is the difference between Copy and Clone in Rust?
What's the difference between self and Self in Rust?
How do I create a global ...
Is it possible to use g...
Explain what is Send and Sync in...
Explain the use of Fn / FnMut /...
What are the specific conditions for a closure...
When should I use Box , Arc , Rc , ...
Explain the use of a...