iqa

This project contains Interview questions with solution and answers

This project is maintained by AshishNamdev

Programming Questions

<Back

Q1-Programming

You are given random build number, from the following data format you need to provide respective Build name

Build Number Range - Build Name
000-010 - Hourly
011-020 - Nightly
021-030 - Beta
031-040 - Test
101-199 - Release Candidate
201-300 - Release

Solution: Python, Java, C#

Q2-Programming

Given following phrase, you need to provide the count of word starts with letter ‘b’ along with individual word and it’s length

Betty got a bread with Butter which is bitter she wants better Bread and butter for breakfast

Solution: Python, Java, C#

Q3-Programming

Given following phrase, you need to reverse the word starts with letter ‘b’

Betty got a bread with Butter which is bitter she wants better Bread and better for breakfast

Solution: Python, Java, C#

Q4-Programming

Solution: Python, Java, C#

Q5-Programming

Write Code to Run ipconfig command and print output on screen.

Solution: Python, Java, C#

Q6-Programming

Create a dictionary of values and it’s squares of all even numbers up to 100

Solution: Python, Java, C#

Q7-Programming

Can you write a program to find the average of numbers in a list / array?

Solution: Python, Java, C#

<Back