কম্পিউটার

একটি অ্যারে সিঙ্ক্রোনাইজ করা হয়েছে কিনা তা পরীক্ষা করুন C# এ


একটি অ্যারে সিঙ্ক্রোনাইজ করা হয়েছে কিনা তা পরীক্ষা করতে, কোডটি নিম্নরূপ -

উদাহরণ

using System;
public class Demo {
   public static void Main() {
      string[] products = new string[] { };
      Console.WriteLine("One or more planets begin with 'E'? = {0}",
      Array.Exists(products, ele => ele.StartsWith("E")));
      Console.WriteLine("Is the array having fixed size? = " + products.IsFixedSize);
      Console.WriteLine("Is the array read only? = " + products.IsReadOnly);
      Console.WriteLine("Is the array synchronized? = " + products.IsSynchronized);
   }
}

আউটপুট

এটি নিম্নলিখিত আউটপুট −

তৈরি করবে
One or more planets begin with 'E'? = False
Is the array having fixed size? = True
Is the array read only? = False
Is the array synchronized? = False

উদাহরণ

আসুন আরেকটি উদাহরণ দেখি -

using System;
public class Demo {
   public static void Main() {
      String[] strArr1 = new String[3] { "John", "Jacob", "Tim"};
      String[] strArr2 = new String[3] { "Tom","Brad","Bradley"};
      Console.WriteLine("First String array...");
      foreach(string val in strArr1) {
         Console.WriteLine(val);
      }
      Console.WriteLine("Is the 1st array having fixed size? = " + strArr1.IsFixedSize);
      Console.WriteLine("Is the 1st array read only? = " + strArr1.IsReadOnly);
      Console.WriteLine("Is the 1st array synchronized? = " + strArr1.IsSynchronized);
      Console.WriteLine("\nSecond String array...");
      foreach(string val in strArr2) {
         Console.WriteLine(val);
      }
      Console.WriteLine("Is the 2nd array having fixed size? = " + strArr2.IsFixedSize);
      Console.WriteLine("Is the 2nd array read only? = " + strArr2.IsReadOnly);
      Console.WriteLine("Is the 2nd array synchronized? = " + strArr2.IsSynchronized);
      Console.WriteLine("Are both the array objects equal? = "+strArr1.Equals(strArr2));
   }
}

আউটপুট

এটি নিম্নলিখিত আউটপুট −

তৈরি করবে
First String array...
John
Jacob
Tim
Is the 1st array having fixed size? = True
Is the 1st array read only? = False
Is the 1st array synchronized? = False
Second String array...
Tom
Brad
Bradley
Is the 2nd array having fixed size? = True
Is the 2nd array read only? = False
Is the 2nd array synchronized? = False
Are both the array objects equal? = False

  1. একটি অ্যারে সাজানো হয়েছে কিনা তা পরীক্ষা করার জন্য প্রোগ্রাম (পুনরাবৃত্ত এবং পুনরাবৃত্ত) সি-তে

  2. একটি অ্যারে প্যালিনড্রোম কিনা বা পুনরাবৃত্তি ব্যবহার করছে না তা পরীক্ষা করার জন্য সি প্রোগ্রাম

  3. একটি অ্যারে প্যালিনড্রোম কিনা তা পরীক্ষা করার জন্য সি প্রোগ্রাম

  4. একটি অ্যারে প্যালিনড্রোম কিনা বা C++ এ STL ব্যবহার করছে না তা পরীক্ষা করার জন্য প্রোগ্রাম