Category: C#

C#

InstructionsStart with the Exercise 7 (taco menu) code on GitHubLinks to an exte

InstructionsStart with the Exercise 7 (taco menu) code on GitHubLinks to an exte InstructionsStart with the Exercise 7 (taco menu) code on GitHubLinks to an external site.. Replace the if-else if statement chain with a switch statement. Test your changes to make sure the code still runs the same way. Submit your completed .cpp file.

Read More
C#

This program will read a space delimited file called “emp.dat” (use the copy com

This program will read a space delimited file called “emp.dat” (use the copy com This program will read a space delimited file called “emp.dat” (use the copy command: cp /home/students/staging/it2414/prog5/* . just like your labs, make sure you are in the directory you want your program to be in when do the copy command). The […]

Read More
C#

InstructionsCreate a C++ app that displays a checkerboard. Prompt the user for t

InstructionsCreate a C++ app that displays a checkerboard. Prompt the user for t InstructionsCreate a C++ app that displays a checkerboard. Prompt the user for the char to use for light squares. Prompt the user for the char to use for dark squares. Use a two-dimensional array of char to prepare the checkerboard. Your checkerboard […]

Read More
C#

Given an array arr[] of N positive integers. Find an integer denoting the maximu

Given an array arr[] of N positive integers. Find an integer denoting the maximu Given an array arr[] of N positive integers. Find an integer denoting the maximum XOR subset value in the given array arr[]. example Input : N = 3 arr[] = {2, 4, 5} Output : 7 Explanation : The subset {2, […]

Read More
C#

InstructionsCreate a C++ app that displays the elements of a two-dimensional arr

InstructionsCreate a C++ app that displays the elements of a two-dimensional arr InstructionsCreate a C++ app that displays the elements of a two-dimensional array of integers. Start with a Visual Studio C++ Console Application. Declare your array using constants ROW_COUNT and COL_COUNT for the numbers of rows and columns. Set both the ROW_COUNT and COL_COUNT […]

Read More
C#

1) Draw a more finalized version with labeled dimensions from all perspectives (

1) Draw a more finalized version with labeled dimensions from all perspectives ( 1) Draw a more finalized version with labeled dimensions from all perspectives (front, back, left, right, top, bottom). Largest dimension should not exceed 8″ and smallest dimension should not be less than 3″. Keep in mind material being used will be 0.125″ […]

Read More
C#

There is only one exercise for this chapter: the infamous rubber duck! Check out

There is only one exercise for this chapter: the infamous rubber duck! Check out There is only one exercise for this chapter: the infamous rubber duck! Check out my quick demo on duck-making below (NOTE: I only demo the building portion, and not the rendering; the rendering should be straight forward enough to figure out […]

Read More
C#

Create a C++ app that makes random dog sounds (a BarkFest). Create a Visual Stud

Create a C++ app that makes random dog sounds (a BarkFest). Create a Visual Stud Create a C++ app that makes random dog sounds (a BarkFest). Create a Visual Studio C++ Console Application named ex5_barkfest. This new project will provide a file named ex5_barkfest.cpp. Edit the ex5_barkfest.cpp file to create your BarkFest app. Copy/paste the […]

Read More
C#

https://gcccd.instructure.com/courses/53196/assign…i just need to fix it to pu

https://gcccd.instructure.com/courses/53196/assign…i just need to fix it to pu https://gcccd.instructure.com/courses/53196/assign…i just need to fix it to put these on it you have the right idea on Exercise 2, the math and logic expressions. Watch out for arithmetic errors (Math #1 and #3). Remember to evaluate left to right. On Logic #4 divide by 4 first, then […]

Read More
C#

Lab Chapter 4 Here we will be taking data in as a file. Note that the sample fi

Lab Chapter 4 Here we will be taking data in as a file. Note that the sample fi Lab Chapter 4 Here we will be taking data in as a file. Note that the sample file provided here is not the file that I will use to grade your assignment but the formatting will be […]

Read More