what is the basic and unique feature of dotnet
No Answer is Posted For this Question
Be the First to Post Answer
Write a program to find whether a given number is prime or not.
In loading programs into memory, what is the difference between load-time dynamic linking and run-time dynamic linking?
Write a shell program to test whether a given year is leap year or not ?
Can we write a method in JSP.If so how?
A, B and C are 8 bit nos. They are as follows: A 1 1 0 1 1 0 1 1 B 0 1 1 1 1 0 1 0 C 0 1 1 0 1 1 0 1 Find ( (A-B) u C )=? how to solve this need with steps
how we can connect applet with database?
How many processes can listen on a single TCP/IP port?
i want to open a helkp file that is txt file on link buttons click
Plz sent me in .net 2.0 interview Question & answers?
what is an INI file?
which of the following is efficient in terms of space a. insertion sort b. quick sort c. selection d. both a and c
Create a class TicTacToe that will enable you to write a complete program to play the game of Tic-Tac-Toe. The class contains as private data a 3- by-3 double array of integers. The constructor should initialize the empty board to all zeros. Allow two human players. Wherever the first player moves, place a 1 in the specified square; place a 2 wherever the second player moves. Each move must be to an empty square. After each move determine whether the game has been won and whether the game is a draw. If you feel ambitious, modify your program so that the computer makes the moves for one of the players automatically. Also, allow the player to specify whether he or she wants to go first or second. If you feel exceptionally ambitious, develop a program that will play three-dimensional Tic-Tac-Toe on a 4-by-4-by-4