Software Junior Interview Questions

23,198 software junior interview questions shared by candidates

With a dictionary of words provided in the form of a list, and given 7 random letters, write pseudocode to determine which words can be made from the dictionary (list of words) from the letters given. a.k.a. the game of Scrabble.
avatar

Junior Programmer

Interviewed at Codemasters

3.9
Jun 20, 2013

With a dictionary of words provided in the form of a list, and given 7 random letters, write pseudocode to determine which words can be made from the dictionary (list of words) from the letters given. a.k.a. the game of Scrabble.

Given in python: def generate_sample_list(limit = 100): sample_list = [] for i in range(1, limit): if i * (i - 2) % 3 == 0: sample_list.append(i**2) return sample_list l = generate_sample_list() 1A) Write code to create an exact copy of list "l":
avatar

Junior Software Engineer

Interviewed at Fortinet

3.8
May 20, 2015

Given in python: def generate_sample_list(limit = 100): sample_list = [] for i in range(1, limit): if i * (i - 2) % 3 == 0: sample_list.append(i**2) return sample_list l = generate_sample_list() 1A) Write code to create an exact copy of list "l":

Viewing 1411 - 1420 interview questions

Glassdoor has 23,198 interview questions and reports from Software junior interviews. Prepare for your interview. Get hired. Love your job.