This program should define properties for Product model class. The program should also provide impelementations of CRUD operations for the Product model.
To achieve persistence, the data should be stored and read from file
This exercise contains project for solution code for Product entity, Product Repository and DataContext classes
. Write a C++ program that reads 10 characters from user (user can type any character i.e., small or capital alphabets, digits, special characters). Convert all small alphabets to capital alphabets and capital alphabets to small alphabets. Store each type of character in separate arrays i.e., small alphabets in separate array, digits in separate array etc.
■ Provide a menu with the following options to the user,
Menu
Press 1 to Input the array
Press 2 to process the array [as per the requirements provided above]
Press 3 to print the capital letters
Press 4 to print the digits
Press 5 to print the special characters
■ Use the appropriate fundamental programming constructs i.e., variables, control-flow, loop, functions etc.
A company wants you to write a C++ program to maintain the contact details of its employees. Employee has a name, email, phone number, education, address, office phone extension, room number. The number of employees in the company are 21 but the program should be scalable to handle more employees. The company admin will use this system and he should be able to add, update, delete, search, print individual employee record and to print list of all employees.
Your task is to tell me that how would you do that, by using algorithm (psedocode or flow chart).
Write a C++ Program that:
· Declares a 3x3 array.
· Input complete array from user.
· Print it’s diagonal.
Write a program that will create a list of four animals, and will use a For loop to print out each of the animals in the list. First write an algorithm in the online editor below.
Write a Java program to do the following
a) Read the names of employeeid, name and salary of all employees.
b) Check whether the given employeeid is present in the array,
if it is not, print the name of the employee and the employeeid.
Write a Java program to do the following
a) Read two-dimensional array (3 x3)
b) Find the diagonal elements of the array
Write a Java program to obtain transpose of a 4 x 4 matrix. The Transpose of the matrix is obtained by exchanging the elements of each row. With the elements of the corresponding column.
Write a C# program to calculate simple interest.
The program should take the inputs for simple interest and display the result.
The program should ask the user to input Y if he wants to continue, else N to stop
Every time user enters Y, the program should take the inputs and calculate interest
Write a C# program to design menu driven temperature converter console application.
The program should show following options for temperature conversion to user:
The program should then prompt user to enter the temperature value.
The given value should be converted to the required temperature unit, based on the choice inputted by user.