Questions: 1 835

Answers by our Experts: 1 539

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Search & Filtering

Using a pointer list, a structure of type node (contains an integer element called data,
and a pointer to a structure of type node called next_node), which has been initialized
to the address of node1, write C statements which will cycle through the list and print
out the value of each nodes data field.
Write a program that examines the value of a variable call temp. then display the following messages, depending on the value assigned to temp.
Temperature Message
Less than 0 ICE
Between 0 and 100 WATER
Exceeds 100 STEAM
Define an abstract class ‘Bank’ having abstract methods as ‘CreateAccount’ depositAmount’ and ‘withDrawAmount’.Add method definitions for ‘CalculateInterest’ and ‘SetIntereset’ as Non-Overridable.Define two classes ‘PakBank’ and RupeeBank’ to derive from bank class.In main method, create objects of PakBank’ and RupeeBank’ to represent Bank type and call their respective methods. Can Bank type call the derived classes own methods that are not defined in Bank class?
Create a console application. Add class ‘Account’ having variables as num (integer) name (String), bal (double), ac_code (byte).define four different constructors to initialize these variables. Define a class ‘User’ deriving from ‘account class. In user class add variables as group_no (int) and mail_id (string).Define three constructors for User class and within them call different parameterized constructors of Account. Can we call these base class constructors in User constructors? Define another class ‘’Admin’. Can the User class derive from both ‘account’ and ‘Admin’ classes? How to make Class Admin such that No class can derive from it? How to make Account class such that some methods will not be allowed to override?
create a small project
1 create a user interface where a person can enter a data
2 save the data that was entered into a database of your choice
3 Use the database to derive/calculate some values

the application to be developed is one for collecting survey data about people's lifestyles preferences.
Maze Game Project Project Description: Create a maze game using C#. The game should at least have the following functionalities. Note: ASCII text art pictures of MAZE GAME and maze are in file: Maze.txt. 1. Intro Page MAZE GAME Ons ter ta start a. Selection: You can select two options (1) Option 1: Enter game 1. Press ENTER to enter game (2) Option 2: Quit 1. Display "Are you sure to quit? Please Type Y - Yes or N - No" a. Y, shut down the console b. N. return to selection
2. Game Page a. Display maze and character West Etu LIFE b. Control character to move up, down, left, and right in maze c. Press ESC to quit (1) Display "Are you sure to quit? Please Type Y - Yes or N - No" 1. Y, shut down the console 2. N, return to control
d. Display total steps at each movement e. Once character reaches Exit, display "You Win! Press ENTER to Restart". (1) Press ENTER to play again. 2/3
. We want to store the information of different vehicles. Create a class named Vehicle with two data member named mileage and price. Create its two subclasses
*Car with data members to store ownership cost, warranty (by years), seating capacity and fuel type (diesel or petrol).
*Bike with data members to store the number of cylinders, number of gears, cooling type(air, liquid or oil), wheel type(alloys or spokes) and fuel tank size(in inches)
Make another two subclasses Audi and Ford of Car, each having a data member to store the model type. Next, make two subclasses Bajaj and TVS, each having a data member to store the make-type.
Now, store and print the information of an Audi and a Ford car (i.e. model type, ownership cost, warranty, seating capacity, fuel type, mileage and price.) Do the same for a Bajaj and a TVS bike.
All the banks operating in India are controlled by RBI. RBI has set a well defined guideline (e.g. minimum interest rate, minimum balance allowed, maximum withdrawal limit etc) which all banks must follow. For example, suppose RBI has set minimum interest rate applicable to a saving bank account to be 4% annually; however, banks are free to use 4% interest rate or to set any rates above it.
We want to calculate the total marks of each student of a class in Physics,Chemistry and Mathematics and the average marks of the class. The number of students in the class are entered by the user. Create a class named Marks with data members for roll number, name and marks. Create three other classes inheriting the Marks class, namely Physics, Chemistry and Mathematics, which are used to define marks in individual subject of each student. Roll number of each student will be generated automatically.
A method that will return how many entries in the array are prime numbers