uk
Feedback
Coding interview preparation

Coding interview preparation

Відкрити в Telegram

Coding interview preparation for software engineers Daily interview questions, algorithms, data structures & clean solutions. Real interview tasks and problems. Join 👉 https://rebrand.ly/bigdatachannels DMCA: @disclosure_bds Contact: @mldatascientist

Показати більше
5 856
Підписники
Немає даних24 години
+77 днів
+2030 день
Архів дописів
18 Most common used Java List methods 1. add(E element) - Adds the specified element to the end of the list. 2. addAll(Collection<? extends E> c) - Adds all elements of the specified collection to the end of the list. 3. remove(Object o) - Removes the first occurrence of the specified element from the list. 4. remove(int index) - Removes the element at the specified position in the list. 5. get(int index) - Returns the element at the specified position in the list. 6. set(int index, E element) - Replaces the element at the specified position in the list with the specified element. 7. indexOf(Object o) - Returns the index of the first occurrence of the specified element in the list. 8. contains(Object o) - Returns true if the list contains the specified element. 9. size() - Returns the number of elements in the list. 10. isEmpty() - Returns true if the list contains no elements. 11. clear() - Removes all elements from the list. 12. toArray() - Returns an array containing all the elements in the list. 13. subList(int fromIndex, int toIndex) - Returns a view of the portion of the list between the specified fromIndex, inclusive, and toIndex, exclusive. 14. addAll(int index, Collection<? extends E> c) - Inserts all elements of the specified collection into the list, starting at the specified position. 15. iterator() - Returns an iterator over the elements in the list. 16. sort(Comparator<? super E> c) - Sorts the elements of the list according to the specified comparator. 17. replaceAll(UnaryOperator<E> operator) - Replaces each element of the list with the result of applying the given operator. 18. forEach(Consumer<? super E> action) - Performs the given action for each element of the list until all elements have been processed or the action throws an exception.

Dear Community, It's become challenging to balance content creation alongside my full-time job and creation of app that will give you any course for free - I am working on that after work for previous 8 months). This is why I've assembled a team (15 people atm) to help. They're compensated from my own pocket, so I decided to occasionally post some ads to at least reduce the costs of maintaining our community a little bit. Rest assured, any ads will be clearly labeled, and I'll give my best to filter out any scams. Thank you for your support and understanding! For any questions feel free to contact me directly at @mldatascientist Warm regards, Big Data specialist

Answer: No As we have 2 == operators, so they are executed from left to right. a == b == c ⇒ (a == b) == c ⇒ (10 == 10) == 10
Answer: No As we have 2 == operators, so they are executed from left to right. a == b == c ⇒ (a == b) == c ⇒ (10 == 10) == 10 ⇒ true == 10 ⇒ 1 == 10 ⇒ false Why is true converted to 1? The rule for == says if one of the operands is boolean, it's converted to number before the comparison. true is converted to its number value, which is 1.

🚨 ATTENTION 🚨 Friends, I asked for a special link from binance free vip channel, don't miss ❗️ Only 100 Members Exclusive L
🚨 ATTENTION 🚨 Friends, I asked for a special link from binance free vip channel, don't miss ❗️ Only 100 Members Exclusive Link 👇👇👇 https://t.me/+tY1KS_VpiFozNWZi LIMITED TIME OPEN LINK ❗️

#adpost 👇

Top 5 Coding Challenge Platforms for Programmers 👩‍💻🚀 1. LeetCode    - URL: https://leetcode.com    - Description: Enhance problem-solving skills with a vast collection of coding challenges on LeetCode. 2. HackerRank    - URL: https://www.hackerrank.com    - Description: HackerRank offers diverse coding challenges for algorithm, data structure, and language proficiency improvement. 3. CodeSignal    - URL: https://codesignal.com    - Description: CodeSignal provides coding challenges and assessments to enhance coding skills for interviews and practice. 4. Codewars    - URL: https://www.codewars.com    - Description: Codewars engages developers in creative problem-solving through kata challenges, fostering skill development. 5. Exercism    - URL: https://exercism.io    - Description: Exercism offers coding exercises in various languages, providing mentorship and community support.

❌ PRIVATE GROUP №1 ❌ They are robbing Crypto Exchanges for Millions of dollars! Yesterday profit = 50,000$+ 👉 https://t.me/+BT9cWw0OJ644YWI1 👉 https://t.me/+BT9cWw0OJ644YWI1 👉 https://t.me/+BT9cWw0OJ644YWI1 Go fast! Only the first 1000 subs will be accepted! 👀🚀

#adpost 👇

ATTENTION!! +1000% coin will be posted in BINANCE WHALE'S LEAK🚀🚀 Link open only for LIMITED TIME🕓 JOIN FAST👀👇 https://t.
ATTENTION!! +1000% coin will be posted in BINANCE WHALE'S LEAK🚀🚀 Link open only for LIMITED TIME🕓 JOIN FAST👀👇 https://t.me/+rDT7H_njmis4ODQ0

#adpost 👇

Top 5 Coding Challenge Platforms for Programmers 👩‍💻🚀 1. LeetCode    - URL: https://leetcode.com    - Description: Enhance problem-solving skills with a vast collection of coding challenges on LeetCode. 2. HackerRank    - URL: https://www.hackerrank.com    - Description: HackerRank offers diverse coding challenges for algorithm, data structure, and language proficiency improvement. 3. CodeSignal    - URL: https://codesignal.com    - Description: CodeSignal provides coding challenges and assessments to enhance coding skills for interviews and practice. 4. Codewars    - URL: https://www.codewars.com    - Description: Codewars engages developers in creative problem-solving through kata challenges, fostering skill development. 5. Exercism    - URL: https://exercism.io    - Description: Exercism offers coding exercises in various languages, providing mentorship and community support. ➡️ Give Reactions 🤟

What is the functionality of the following piece of code of DSA?
Anonymous voting

photo content

What are the actual parameters in C++?
Anonymous voting

In C, The return keyword is used for transfer control from a function back to the calling function.
Anonymous voting

What is the replacement of joda time library in java 8?
Anonymous voting

Explanation: In JavaScript, the lexical scoping is used just like many other modern languages.This means a function gets executed using the scope chain which was in effect, when they are defined instead of variable scope which was in effect when they are invoked/called.

In JavaScript, what kind of scoping is used?
Anonymous voting

Explanation: To implement file system, for separate chaining in hash-tables and to implement non-binary trees linked lists are used. Elements are accessed sequentially in linked list. Random access of elements is not an applications of linked list.

Which of these is not an application of a linked list?
Anonymous voting