TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
marvin7
NA
142
0
BONUS QUESTION!
Oct 31 2003 12:48 PM
GIVEN THE FOLLOWING CODE, WHAT IS PRINTED OUT IF YOU TRY TO COMPILE AND RUN? ----------- public class Dummy { Dummy(int x) { this.x = x; } public static void Main() { Dummy x = new Dummy(15); x.X(x); System.Console.WriteLine( x ); } public void X( Dummy y ) { Dummy z = y; z = new Dummy(13); y = new Dummy(17); } int x; } ---------------------- A. Dummy B. 15 C. 17 D. *None of the above*
Reply
Answers (
8
)
QUESTION of the DAY - Good luck!
"Sending Emails through Outlook using C# and VB.NET"