Q/A Section

Ask questions and get answers from the community.

23 discussions Last post 10 months ago

<r><p><img src="https://i.imgur.com/YKeRKyv.png" alt="Image preview" class="markdown-image"></p><p>a. join()</p><p>b. merge()</p><p>c. push()</p><p>d. concat()</p></r>

Last reply: 10 months ago
by luhan

<r><p>How do professional developers who have more than <FP char="¾">3/4</FP> jobs manage their time when having just 1 can be so overwhelming</p><p><img src="https://i.imgur.com/TeguheU.jpeg" alt="Image preview" class="markdown-image"></p></r>

Last reply: 10 months ago
by Johnery

<r><p>Write a function that calculates a user BMI. BMI = weight/height<SUP><s>^</s>2</SUP> Your code should request for the user<FP char="’">'</FP>s weight and height and then return their bmi to them. Your return statement should be "[BMI]kg/m<SUP><s>^</s>2</SUP>.</p><p>P.S: To simplify, use prompt and alert (depending on how your language calls it) when necessary and make sure your code is testable on the Google Chrome console (developer tool)</p><p><img src="https://i.imgur.com/pIZyN4z.png" alt="Image preview" class="markdown-image"></p></r>

Last reply: 10 months ago
by luhan

<r><p><img src="https://i.imgur.com/jPvAlG4.jpeg" alt="Image preview" class="markdown-image"></p></r>

Last reply: 11 months ago
by Awsome123

<r><p>(A) TypeScript is a completely different language.</p><p>(B) TypeScript is a superset of JavaScript, adding static typing.</p><p><FP char="©">(C)</FP> TypeScript replaces JavaScript entirely.</p><p>(D) TypeScript removes dynamic typing from JavaScript.</p><p><img src="https://i.imgur.com/o256gYe.png" alt="Image preview" class="markdown-image"></p></r>

Last reply: 11 months ago
by luhan

Hello thread viewers.I just finished secondary school this September and I would like to know which Languages I should learn. I would also like to know if I could combine the learning with a competitive subject like law in university without losing grades.I've already started learning SQL and plan to learn Tableau before getting admitted to university this January but I'm having trouble deciding where to go from there.Front page would be appreciated if it gets more people to see this post.

Last reply: 11 months ago
by Awsome123

<r><p><img src="https://i.imgur.com/kj8aHqQ.jpeg" alt="Image preview" class="markdown-image"></p></r>

Last reply: 11 months ago
by blessedtechie

You probably know the "like" system from Facebook and other pages. People can "like" blog posts, pictures or other items. We want to create the text that should be displayed next to such an item.Implement the function which takes an array containing the names of people that like an item. It must return the display text as shown in the examples:$$[] --&gt; "no one likes this"["Peter"] --&gt; "Peter likes this"["Jacob", "Alex"] --&gt; "Jacob and Alex like this"["Max", "John", "Mark"] --&gt; "Max, John and Mark l...

Last reply: 11 months ago
by anthonyo

Given a string of words, you need to find the highest scoring word.Each letter of a word scores points according to its position in the alphabet: `a = 1, b = 2, c = 3` etc.For example, the score of `abad` is `8` (1 + 2 + 1 + 4).You need to return the highest scoring word as a string.If two words score the same, return the word that appears earliest in the original string.All letters will be lowercase and all inputs will be valid.

Last reply: 11 months ago
by anthonyo

Given a string of words, you need to find the highest scoring word.Each letter of a word scores points according to its position in the alphabet: `a = 1, b = 2, c = 3` etc.For example, the score of `abad` is `8` (1 + 2 + 1 + 4).You need to return the highest scoring word as a string.If two words score the same, return the word that appears earliest in the original string.All letters will be lowercase and all inputs will be valid.

Last reply: 11 months ago
by anthonyo
About Q/A Section

Ask questions and get answers from the community.

Q/A Section Stats
143
Posts
120
Replies