Repository | Project details | Link |
---|---|---|
EmployeeService-WebAPI | Web API project | Link |
Number Loop | Write a program and continuously ask the user to enter a number or "ok" to exit. Calculate the sum of all the previously entered numbers and display it on the console. | Link |
Factorial of a Number | Write a program and ask the user to enter a number. Compute the factorial of the number and print it on the console. For example, if the user enters 5, the program should calculate 5 x 4 x 3 x 2 x 1 and display it as 5! = 120. | Link |
Enter 5 unique numbers | Write a program and ask the user to enter 5 numbers. If a number has been previously entered, display an error message and ask the user to re-try. Once the user successfully enters 5 unique numbers, sort them and display the result on the console. | Link |
Reverse a String | Write a program and ask the user to enter their name. Use an array to reverse the name and then store the result in a new string. Display the reversed name on the console. | Link |
divided by 3 between 1-100 | Write a program to count how many numbers between 1 and 100 are divisible by 3 with no remainder. Display the count on the console. | Link |
Speed Checker | Write a program that asks the user to enter the speed limit. Once set, the program asks for the speed of a car. If the user enters a value less than the speed limit, program should display Ok on the console. If the value is above the speed limit, the program should calculate the number of demerit points. For every 5km/hr above the speed limit, 1 demerit points should be incurred and displayed on the console. If the number of demerit points is above 12, the program should display License Suspended. | Link |
Comma Seperated List | Write a program and ask the user to supply a list of comma separated numbers (e.g 5, 1, 9, 2, 10). If the list is empty or includes less than 5 numbers, display "Invalid List" and ask the user to re-try; otherwise, display the 3 smallest numbers in the list.Topics Stars 0 stars | Link |
FacebookPostLikes | When you post a message on Facebook, depending on the number of people who like your post, Facebook displays different information. If no one likes your post, it doesn't display anything. If only one person likes your post, it displays: [Friend's Name] likes your post. If two people like your post, it displays: [Friend 1] and [Friend 2] like you… | Link |
Max of All | Write a program and ask the user to enter a series of numbers separated by comma. Find the maximum of the numbers and display it on the console. For example, if the user enters “5, 3, 8, 1, 4", the program should display 8 | Link |
Sum of All | Write a program and continuously ask the user to enter a number or "ok" to exit. Calculate the sum of all the previously entered numbers and display it on the console | Link |
Guess4Numbers | Write a program that picks a random number between 1 and 10. Give the user 4 chances to guess the number. If the user guesses the number, display “You won"; otherwise, display “You lost". (To make sure the program is behaving correctly, you can display the secret number on the console first.) | Link |
Rectangles-and-squares | you are given a rectangular grid of dimension AXB. It is made up of square tiles of dimension 1X1. you have to paint the entire grid. In one move you are allowed to perform the following operation. | Link |
SummarisingString | C# code to split the given string to a max length without cutting a word. | Link |