Home > Microsoft > 70-536

Download Microsoft.TestKing.70-536.v2.1.by.RaheelBachlani.151q.vce

Exam: 70-536 TS: Microsoft .NET Framework 2.0 - Application Development Foundation
Size: 5.63 MB
Posted: 01-Jan-2010
Votes: 53
Download: Microsoft.TestKing.70-536.v2.1.by.RaheelBachlani.151q.vce

Comments

* The most recent comments are at the top.

  • Trembre - Mar 20 2010, 2:16 AM
    Passed during the week, big thanks. A few new questions, remembered as follows.
    1. You need to append to a text file. Text file must already exist (or otherwise throw an exception) and be left read-only to other applications.
    2. Selecting a type-safe collection of numbers and names.
    3. Doing a calculation every 30 seconds in a thread-safe manner. Options included thread.sleep and thread.spinwait
    4. Options for dealing with an unexpected XML node/element.
  • moahmmed - Mar 18 2010, 8:22 AM
    i passed the exam with 930/1000 at 15/3/2010
  • Ven - Mar 17 2010, 10:26 PM
    Passed today with 976/1000. 3 questions out of dump. Thanks a lot Raheel.
  • Abid Farooq Bhutta - Mar 17 2010, 2:53 PM
    i pass the exam 16-03-2010 with 953/1000 in Pakistan Lahore. 2 to 3 q are out of dump. This is Valid in Pakistan. any information required call me on my cell no +923009802832 or email me afb_mit@yahoo.com. No asdf q in this dump.

    Thanks to Raheel. Thanks to Examcollection.
  • FuNCTioN - Mar 17 2010, 2:09 PM
    passed. 884/1000 score. 7 question dump
  • OzzyBloke - Mar 17 2010, 5:18 AM
    I did the test today at Sydney and passed with 900/1000. It is still valid although there were about 5 new questions that were not on the dump and I have to use my knowledge.
  • raheel - Mar 16 2010, 12:26 PM
    cleared. 976/1000. Couple of hours ago. Almost all question except 4,5 question were from this dumps. RAHEEL BACHLANI khapay.
  • Maxi - Mar 16 2010, 8:07 AM
    Why is question 133 A instead of D? anyone?
  • Ale - Mar 16 2010, 5:19 AM
    Hi guys!!

    Question 135 of this dump:
    In order to create an event source, why the EventSourceCreationData is used instead of 'EventLog.CreateEventSource' (which, i guess, would be simpler)?

    Question 83:
    Is this question ok? Shouldn't be 'XmlArray (Element = "...")' the correct answer?

    Thanks!
  • tester - Mar 13 2010, 9:05 AM
    Search in CodeProject.com for 70-536. There's an article with complementary information and a Diagram to simply studying for this exam.
  • Alberto - Mar 12 2010, 6:19 PM
    I passed this test today, two new questions
    Examen pasado en España, todo válido con un par de preguntas nuevas
    930-1000 ya queda uno menos.
  • The Dude - Mar 12 2010, 12:59 PM
    Passed couple of hours ago 930/1000.
    Dump is still valid! Also there were asdf questions plus two new questions which i can't quite recall right now.
    Another important thing, answers order in the exam is the same as in the dump.
    Good luck guys!
  • Thomas Jerome Newton - Mar 12 2010, 8:40 AM
    exam 70-536 is VERY difficult. I'm hoping these questions will help me practise.
  • sjdhfgoef - Mar 11 2010, 7:35 AM
    hello
    pass 2 hours ago , all question from dump and forum replys
  • mrweb - Mar 10 2010, 12:19 PM
    can use this dump for VB ?? i'm writing the exam on 20th march. pls confirm me
  • govind - Mar 10 2010, 7:30 AM
    this dump is valid. i wrote exam on 02-mar-2010 and got 976/1000.
  • me - Mar 10 2010, 5:03 AM
    hello
    I have a paper tomm , Is this Dump is still valid
  • shafiq - Mar 09 2010, 9:53 AM
    From where i can get ASDF notes?plz help me
  • YowME - Mar 09 2010, 7:19 AM
    Hi,

    Where is I can get the asdf file. thanks. Goodluck
  • Dimchansky - Mar 07 2010, 2:54 PM
    Dump has a wrong answer for the question:
    "You need to write a multicast delegate that accepts a DateTime argument and returns a Boolean value. Which code segment should you use?"

    Correct answer is: public delegate bool PowerDeviceOn(DateTime);
  • me - Mar 07 2010, 6:05 AM
    hello ALi
    which country you belong to , i have a paper tomow ,is answer sequence are same
  • Ali - Mar 06 2010, 7:17 PM
    all questions were in the dump
  • Ali - Mar 06 2010, 7:07 PM
    passed today with 1000/1000. this dump still valid. thanx to all of those who shared thier knowledge.
  • akello - Mar 05 2010, 5:45 PM
    I see it is one of the most popular questions here.
    Below on this page guys already posted ASDF questions

    #
    MK - Feb 21 2010, 7:10 PM
    Here are the questions posted by asdf. Searched on Net :-)

    questions in the exam that weren't in the dump:
    1. a question about showing the temperature unit (C or F) depending on the culture, the answer was to implement IFormattable
    2. a question about restoring a registry value after uninstalling an application, the answer was to save the value in the OnBeforeInstall function
    3. a question about reading the next 10 bytes from a stream, the answer was stream.readbytes(10)
    4. a question about showing the dollar sign in a currency string with UK localisation, the answer was to build the cultureinfo using "en-GB" then assigning $ to the currency format
    5. a question about not exposing a function (GetEmployeeID) to COM, the answer was to add the attribute <comvisible(false)> before the function
    6. a question about not allowing a user to delete a file, the answer was to deny the delete permission
  • Mani - Mar 05 2010, 2:13 PM
    Please let me know, where i will get "ASDF" question
  • akello - Mar 05 2010, 9:07 AM
    Passed it today with 1000/1000! (Russia)

    The most of the questions are in this dump.
    Raheel - you are rock!

    However there were several questions not in this dump.

    1.Admin needs to send commands to service application: (correct answer a)
    a) write custom app and call executecommand method of service controller
    b) tell admin to use Start Parameter of Service in SMC (service management console)
    c) Create command in ServiceInstaller
    d) write custom app to call NET CONFIG (something like that)

    2. How to add new connection string to Configuration File
    correct answer: ConfigurationManager.OpenExeConfiguration -> add connection string -> configuration.Save()

    3. wich class to use to prompt user during ClickOnce installation
    Correct answer - ApplicationTrastManager

    4. strings and process them as they are received - answer was to use Queue of string (other answers where to use Stack or Queue but without specified type)

    5. restoring reg value during uninstalling,
    correct answer: save reg value in the OnBeforeInstall (ASDF)

    6. Reading currently running application config file (have to select two ways)
    correct answers:
    a) AppDomain.CurrentDomain.GetData("APP_CONFIG_FILE")
    b) AppDomain.CurrentDomain.SetupInformation.ConfigurationFile

    7. Have to save objects (strings only) and process them in the same order as they were received. What class will you use: (correct answer: d (use generic to restrict type to string))
    a) Stack
    b) Queue
    c) Stack<string>
    d) Queue<string>

    8) public class MyClass (correct answer: d (COM doesn't work with generics))
    {
    private string msg;
    public StringBuilder strb;
    Array ar;
    Dictionary<int, string> dict;
    }

    You want to expose this class to COM. What dou you have to change?
    A: private string msg;
    B: public StringBuilder strb;
    C: Array ar;
    D: Dictionary<int, string> dict;

    Hope this post will help you to pass exam.
    Good luck for your exam.
  • Corto - Mar 04 2010, 10:10 PM
    I'm not sure that my answer is correct, but in a paper I got from Microsoft states that I answered correctly all questions from Interoperability, Reflection and Mailing section. I have some wrong answers in Security section and Services, Threading and Application Domains section, so maybe this question is from one of those two sections.
    Note that the last two class members are also (implicitly) private.
  • me - Mar 03 2010, 2:34 PM
    Hello
    I CAN"T SEE "ASDF" QUESTION ANY WHERE CAN SOMEBODY POST IT HERE
  • me - Mar 03 2010, 2:31 PM
    hello SXL
    which country you belong to , which two question you are talking about?

    regards
  • SXL - Mar 03 2010, 12:24 PM
    Passed it today with 1000/1000!!! All questions are from this dump. Only two new questions, but they were already discussed here...
  • Gasyleiss - Mar 03 2010, 10:03 AM
    Corto > I think that answer A is correct. To expose this class to COM, its attributes must be public. So you have to change private string msg; into public string msg; . No?
    Me > ?
  • me - Mar 03 2010, 9:39 AM
    Hello Corto

    Are you sure answer is correct?

    regards
  • Corto - Mar 02 2010, 6:12 PM
    Almost forgot. Thanks to Raheel and all you guys!
  • Corto - Mar 02 2010, 6:09 PM
    Still valid, got 953/1000 today. Got one new question, it's something like this:

    public class MyClass
    {
    private string msg;
    public StringBuilder strb;
    Array ar;
    Dictionary<int, string> dict;
    }

    You want to expose this class to COM. What dou you have to change?
    A: private string msg;
    B: public StringBuilder strb;
    C: Array ar;
    D: Dictionary<int, string> dict;

    Answer: D
  • The Dude - Mar 02 2010, 5:46 PM
    Hi guys, can anyone post a link to asdf dump. I can't find it anywhere. Hope to pass this exam in next few days
  • Danny - Mar 02 2010, 12:03 PM
    Are questions 111 to 151 relevant? I see them in no other exams
  • Abid Farooq Bhutta - Mar 01 2010, 2:59 PM
    Please Any body send me the ASDF dump. pls pls pls.. or tel me the other resource. my exam date is 16-03-2010.
  • Deepika........US - Feb 27 2010, 10:11 PM
    yup...its still valid.....i got 976/1000.......thanks to Raheel,MK and asdf,...all ques frm dump + 6 asdf qusetion.....one ques related to deserialize frm binary object ........

    Thanks you all.............
  • Deepika........US - Feb 27 2010, 5:56 PM
    Can anyone tell me the correct answer...........

    Admin needs to send commands to service application:
    1) write custom app and call executecommand method of service controller
    2) tell admin to use Start Parameter of Service in MMC
    3) Create command in ServiceInstaller
    4) write custom app to call NET CONFIG (something like that)
  • darkspown - Feb 26 2010, 9:45 PM
    Still valid in France, i passed it today and I was 5 or 6 questions I didn't had seen. thank you for this help :)
  • tsdk - Feb 26 2010, 3:45 PM
    Still valid.
  • kiddo - Feb 26 2010, 2:55 PM
    still valid in ygn !!!
  • alfabeta - Feb 26 2010, 2:35 PM
    Still valid.
  • Mk - Feb 26 2010, 10:12 AM
    Worked for me yesterday in UK. 4-6 new question apart from dump.1 question from asdf. One question about read write file permissions mentioned by spanish - Jan 26 2010, 7:49 PM post.
    Got 972 marks ..
  • zoomzoom - Feb 26 2010, 12:06 AM
    yep, the land of the free and home of the brave
  • Deepika........US - Feb 25 2010, 6:37 PM
    hey ZoomZoom .....in which country u r...??my test is on tmrw.......please lemme me know........is it still valid in US too......??
  • zoomzoom - Feb 25 2010, 6:22 PM
    worked for me today
  • tsdk - Feb 25 2010, 11:13 AM
    nisha,

    Look closely, see comment MK on Feb 21.
  • nisha - Feb 25 2010, 12:20 AM
    can anyone post the asdf questions.........bcoz its not available in the comments.......
  • thunderroad73 - Feb 24 2010, 1:40 AM
    MK,apart from this dump 6 new qns were there and those qns were already posted by asdf.So preapre this dump and asdf qns.
  • Mk - Feb 23 2010, 7:02 PM
    Is it still valid? I have exam on 25th, and please do post new questions if any..
  • harry - Feb 23 2010, 3:06 AM
    what do we mean by "valid" here ? Please somebody tell me. I'm new here.
  • Shree - Feb 23 2010, 1:43 AM
    hey guys pls tell me till what date is dis dumps valid??
  • me - Feb 22 2010, 7:48 AM
    hi Priya
    can you plz send me the link of microsoft practise test 70-536 you were talking about..

    regards
  • newbe - Feb 22 2010, 5:50 AM
    thanks MK can you please explain question number 2 i dont understand what it mean
  • Thunderroad73 - Feb 22 2010, 2:29 AM
    Thank you guys..
  • MK - Feb 21 2010, 7:10 PM
    Here are the questions posted by asdf. Searched on Net :-)

    questions in the exam that weren't in the dump:
    1. a question about showing the temperature unit (C or F) depending on the culture, the answer was to implement IFormattable
    2. a question about restoring a registry value after uninstalling an application, the answer was to save the value in the OnBeforeInstall function
    3. a question about reading the next 10 bytes from a stream, the answer was stream.readbytes(10)
    4. a question about showing the dollar sign in a currency string with UK localisation, the answer was to build the cultureinfo using "en-GB" then assigning $ to the currency format
    5. a question about not exposing a function (GetEmployeeID) to COM, the answer was to add the attribute <comvisible(false)> before the function
    6. a question about not allowing a user to delete a file, the answer was to deny the delete permission
  • MK - Feb 21 2010, 7:05 PM
    Can somebody please post asdf six questions with answers.
  • Ahmed - Feb 21 2010, 6:42 PM
    Can someone post asdf's qns as i can't see them here.Pls submit any new qns.need to appear exam on 23th feb
  • Priya - Feb 20 2010, 9:48 PM
    Hi Guys,
    Thank you so much for the dumps.......Wote the exam today.Got every thing correct.Few questions from microsoft practise test, lot from dump, and 2 from the questions posted here
    You have a COM application named Loans.exe, you are trying to use it’s methods in your managed application, what do you have to do?
    (Answer is b)

    a. Try to get an IL representation of the COM and re-compile it as a managed application and reference it in your application.
    b. Import its type information. (Correct)
    c. Export its type information and register it for COM interoperability.
    d. Use Regsvr32.exe
    You guys rock.
  • thunderroad73 - Feb 20 2010, 3:58 AM
    Can someone post asdf's qns as i can't see them here.Pls submit any new qns.need to appear exam on 22nd feb
  • Priya - Feb 19 2010, 10:58 PM
    Thank you so much....
  • canadian - Feb 19 2010, 9:36 PM
    about that question from Crack_Head, I think the answer is A
  • canadian - Feb 19 2010, 9:35 PM
    Priya,
    this is the only question that I answered wrong in the exam, I selected C but I was wrong, so I figured it may make sense to choose D. I'm not sure of the answer though.
  • Priya - Feb 19 2010, 7:58 PM
    Priya - Feb 19 2010, 8:16 AM
    Can any one please give me which is the correct answer?
    Planning to take test tomorrow

    Submitted by Crack_Head jan 25
    Admin needs to send commands to service application:
    1) write custom app and call executecommand method of service controller
    2) tell admin to use Start Parameter of Service in MMC (Correct)
    3) Create command in ServiceInstaller
    4) write custom app to call NET CONFIG (something like that)
  • Priya - Feb 19 2010, 7:56 PM
    Are you sure this is the answer.I think it's "Import Type Info".
    Can you give me the answer if i'm wrong.Planning to take test tomorrow.

    canadian - Feb 19 2010, 7:29 PM
    Another new question:

    You have a COM application named Loans.exe, you are trying to use it’s methods in your managed application, what do you have to do?
    (Answer is d)

    a. Try to get an IL representation of the COM and re-compile it as a managed application and reference it in your application.
    b. Import its type information.
    c. Export its type information and register it for COM interoperability.
    d. Use Regsvr32.exe
  • canadian - Feb 19 2010, 7:29 PM
    Another new question:

    You have a COM application named Loans.exe, you are trying to use it’s methods in your managed application, what do you have to do?
    (Answer is d)

    a. Try to get an IL representation of the COM and re-compile it as a managed application and reference it in your application.
    b. Import its type information.
    c. Export its type information and register it for COM interoperability.
    d. Use Regsvr32.exe
  • canadian - Feb 19 2010, 7:15 PM
    New question: you are writing an application that gets the physical memory or a certain process, you need to display that value 20 times every 60 seconds, which code should you use to accomplish this: (answer is b)

    a.
    Process proc1 = Process.GetCurrentProcess();
    for (int i = 0; i <= 20; i++)
    {
    Console.WriteLine(proc1.WorkingSet64.ToString());
    Thread.Sleep(60000);
    }
    b.
    Process proc2 = Process.GetCurrentProcess();
    for (int i = 0; i <= 20; i++)
    {
    proc2.Refresh();
    Console.WriteLine(proc2.WorkingSet64.ToString());
    Thread.Sleep(60000);
    }
    c.
    Process proc3 = new Process();
    for (int i = 0; i <= 20; i++)
    {
    proc3.Refresh();
    Console.WriteLine(proc3.WorkingSet64.ToString());
    Thread.Sleep(60000);
    }
    d.
    Process proc4 = Process.GetCurrentProcess();
    long memory = proc4.WorkingSet64;
    for (int i = 0; i <= 20; i++)
    {
    proc2.Refresh();
    Console.WriteLine(memory.ToString());
    Thread.Sleep(60000);
    }
  • Veno - Feb 19 2010, 11:36 AM
    Is still valid on Chennai, i wrote exam on 19/2/2010.
  • Happy - Feb 19 2010, 9:22 AM
    I cannot see any post by asdf. Can somebody please post his 6 questions with answers.
  • Naymut - Feb 19 2010, 9:05 AM
    #
    Priya - Feb 19 2010, 8:16 AM
    Can any one please tell me which is the correct answer?

    Submitted by Crack_Head jan 25
    Admin needs to send commands to service application:
    1) write custom app and call executecommand method of service controller
    2) tell admin to use Start Parameter of Service in MMC (Correct)
    3) Create command in ServiceInstaller
    4) write custom app to call NET CONFIG (something like that)
  • me - Feb 19 2010, 8:44 AM
    Hello
    I am from pakistan i want to give exam on 26 feb 2010 , is this vaild for my exam
  • Priya - Feb 19 2010, 8:16 AM
    Can any one please tell me which is the correct answer?

    Submitted by Crack_Head jan 25
    Admin needs to send commands to service application:
    1) write custom app and call executecommand method of service controller
    2) tell admin to use Start Parameter of Service in MMC
    3) Create command in ServiceInstaller
    4) write custom app to call NET CONFIG (something like that)
  • Priya - Feb 19 2010, 7:59 AM
    Can any one please tell the correct answer for this.....
    Submitted by DG on Feb 18th.
    2. wich class to use to prompt user during ClickOnce installation - all answers included something with Trust or Security
  • Canadian - Feb 18 2010, 8:28 PM
    still valid, passed it today in Canada with 976 score. 2 new questions.
  • Nina - Feb 18 2010, 3:51 PM
    Take exam yeterday in Canada. still valid. Thanks
  • Sy - Feb 18 2010, 8:17 AM
    The exam is still valid, i did mine last week., though there are new 4 questions. I can't remember now. Thanks
  • DG - Feb 18 2010, 8:02 AM
    Passed yesterday VB version of exam, scored 930. Got 12 new questions, 7-8 mentioned here in comments. Other questions were form this dump, but code was in VB.
    Some new questions I remember:
    1. how to add new connection string to Configuration File - something with OpenExeConfiguration (5 answers, 3 were obviously wrong, must select 2)
    2. wich class to use to prompt user during ClickOnce installation - all answers included something with Trust or Security
    3. storing strings and process them as they are received - answer was to use Queue of string (other answers where to use Stack or Queue but without specified type)
    4. restoring reg value in the OnBeforeInstall (ASDF)
    5. 3rd question by simmi
    and all questions from Tonny
  • ExamCollector - Feb 18 2010, 7:05 AM
    Very good dump. Valid as of 18 Feb 2010. I have passed the exam (976/1000).

    Before starting the exam, we can choose c# / VB
    Questions and answers are as like in the dump (including the sequence)
    This dump contains most of the questions for c#
  • simmi - Feb 18 2010, 3:58 AM
    Ray this is exam for vb.net or c#.they are giving you option to choose vb.net /c#. so dnt wry choose your language.
  • Ray - Feb 17 2010, 9:40 PM
    is this a C# exam? Anyone please confirm
  • canadian - Feb 17 2010, 4:49 AM
    happy: you need to buy the licence! if what this is still valid as everyone says, it really worth it!
    tsdk: it's valid for both (according to comments)
  • Happy - Feb 16 2010, 11:56 AM
    I am not sure what is the issue with my machine , I can only see 5 question from this exam. Please share the PDF file of the same version if you have.
    Do i need to install something else.
  • tsdk - Feb 16 2010, 11:13 AM
    Hi all,

    As i understood, one can choose from VB or C+ version at the exam.
    For which version is this dump valid?
  • NightShip - Feb 16 2010, 11:11 AM
    Still Valid!!

    passed the test today (12:20 PM) 1000/1000!!!!

    Thanks to asdf & RaheelBachlani
  • Kike76 - Feb 16 2010, 12:16 AM
    Passed my exam in Mexico this morning. Scored 907/1000.
    Thanks Raheel.
  • sachin - Feb 14 2010, 9:39 AM
    Dumps are still Valid. cleared the exam today in Mumbai, India.( 976/1000)
    Only one question related to deserializing of directory object was different.

    Thanks To RaheelBachlani & ASDF
  • Gasyleiss - Feb 13 2010, 10:41 AM
    Dump still valid.
    Passed my exam in Paris this morning. Scored 1000/1000.
    Thanks Raheel.
    Thank you too for your post (for question n° 2 and n° 3) simmi...
    ;)
  • asif - Feb 13 2010, 9:10 AM
    passed my exam today in india, exam has 40q's and has a choice if u want to give your in C# OR VISUAL BASIC languages. just study the dumps well so you would not have any problem clearing it.
    P.S - none of the new questions from ASDF or SIMMI came in my exam but go thru them too.
  • canadian - Feb 12 2010, 7:49 PM
    interesting question simmi, thanks for posting it, anyone would know for sure the answer?? I personally would select ReadWriteLock! I don't know if this would be the answer? any other thoughts?
  • Tunisia - Feb 12 2010, 3:28 PM
    Passed Today ... Still Valid
  • simmi - Feb 12 2010, 4:35 AM
    hey it is still valid!i scored 953/1000.thankx to Raheel!!. there was 40 questions from 151q dump .
    3 new questions :
    1)if u want use platform invoke services to call an unmanged function from managed code
    Answer was create a class to store DLL functions,create prototype methods by using the managed code.
    2)Related to threding that same thread 20times consistently u want to run
    they have give code options.
    3)u want to share the file at the same time everybody an read and write .while reading this shud be able to read all updated data.
    options given
    1)use single threaded application.
    2)use ReadWrite lock .
    3)use Locked ....
    3)use watcher class

    i dnt knw the answer..
    If u prepare book MCTS-Training Kit thoroughly u will score definitely ..
  • qwerty - Feb 11 2010, 3:36 PM
    still valid ;) thanks alot Raheel and asdf's :)
  • Nibu - Feb 10 2010, 1:58 PM
    Does this dump is valid in UK?
    Please Please answer mu query.
  • simmi - Feb 10 2010, 7:05 AM
    is it still valid ?i am preparing for the exam
  • Nibu - Feb 09 2010, 10:32 AM
    Does this dump is valid in UK?
  • whd - Feb 09 2010, 7:03 AM
    can any body post new questions?
    i m going to take exam in this week.
  • jjmd2501 - Feb 08 2010, 6:56 PM
    Hi, the dump still valid. passed today in Venezuela.
    Thank you Raheel and ASDF.
  • KG21 - Feb 08 2010, 1:46 PM
    still valid, new questions from asdf. Thanks a lot.
  • Ana - Feb 08 2010, 11:00 AM
    Stil valid, passed 2 days ago in Split, Croatia, had 953/1000. Two or three new questions!

Vote For This File

Verification:*
Type the characters from the picture.
Verification Code

Add Comment

Name:*
E-mail:*
This e-mail will not be published.
Comment:*
Verification:*
Type the characters from the picture.
Verification Code

Site Search:

If our site is helpful to you, please vote for us by clicking one of these banners:
Enter to Sadikhov.com Top Certification Sites and Vote for this Site!!! [ Top 100 MCSE ]
Sunday, March 21, 2010, 12:29 PM
©2010 ExamCollection.com