
C-sharp-programming – programming-c-sharp – কুইজ মডেল টেস্ট অনুশীলন – 5
6848. Which of the following types cannot be mixed in an expression with a decimal value
- byte
- float
- uint
- int
6849. What is the output from the following code System.Console.Out.WriteLine( 1.7 + (int) 1.9 / 3);
- 1.7
- Two
- One
- Zero.
6850. What’s the top .NET class that everything is derived from
- System.Object
- System.Web
- System.IO
- System.Data
6851. Should every C# program should start with the following statement – using System;___________.
- It should be using system;
- Yes
- No
- It should be using system.IO;
6852. Which of the following method has no implementation
- abstract.
- void.
- static.
- int.
6853. What does the keyword virtual mean in the method definition
- The method is public
- The method is static
- The method can be over-ridden
- The method can be derived
6854. Is it possible to have different access modifiers on the get/set methods of a property
- Can Not Say
- Depends on the class
- No
- Yes
6855. Which of the following method can be called without even creating an object of that class
- static.
- public.
- member function.
- void.
6856. What is two methods with the same name but with different parameters
- Duplexing
- Multiplexing
- Loading
- Overloading
6857. Which code block to use for writing a method that returns an ArrayList named al but, changes to the ArrayList are performed in a thread-safe manner
- ArrayList al = new ArrayList(); lock (al.SyncRoot) {return al; }
- ArrayList al = new ArrayList(); lock (al.SyncRoot.GetType()) {return al; }
- ArrayList al = new ArrayList(); Monitor.Enter(al); Monitor.Exit(al);return al;
- ArrayList al = new ArrayList(); ArrayList sync_al = ArrayList.Synchronized(al); return sync_al;
আমাদের কাছে থাকা লক্ষ লক্ষ মডেল টেস্ট থেকে প্রাকটিজের জন্য কিছু এখানে তুলে ধরা হল। প্রতিটি অধ্যায়ের উপরে ইশিখন.কম কুইজ চ্যালেঞ্জ এ আছে শত শত মডেল টেস্ট বার বার মডেল টেস্ট দিয়ে নিজেকে যাচাই কর এবং পুরো বাংলাদেশের সকল শিক্ষার্থীর সাথে আপনার মেধা তালিকা দেখুন। প্রশ্নে কোন প্রকার ভুল থাকলে সঠিক উত্তরসহ নিচে কমেন্ট করে জানাবেন, আমরা ঠিক করে দেবো।