Identify the Error in C# Class Definition
22 Questions
0 Views

Choose a study mode

Play Quiz
Study Flashcards
Spaced Repetition
Chat to lesson

Podcast

Play an AI-generated podcast conversation about this lesson

Questions and Answers

A : b; } static void Main(string[] args) { Console.WriteLine(Enter number of values : ______ int n = int.Parse(Console.ReadLine()); float max_value = 0; Program p = new Program();

أدخل

A : b; } static void Main(string[] args) { Console.WriteLine(Enter number of values : int n = int.Parse(Console.ReadLine()); float max_value = 0; Program p = new Program(); 6 ‫‪2/4/2024‬‬ )for (int i = 1; ______

أخرج

A : b; } static void Main(string[] args) { Console.WriteLine(Enter number of values : int n = int.Parse(Console.ReadLine()); float max_value = 0; Program p = new Program(); 6 ‫‪2/4/2024‬‬ )for (int i = 1; ______

لأن

A : b; } static void Main(string[] args) { Console.WriteLine(Enter number of values : int n = int.Parse(Console.ReadLine()); float max_value = 0; Program p = new Program(); 6 ‫‪2/4/2024‬‬ )for (int i = 1; ______

<p>بعد</p> Signup and view all the answers

A : b; } static void Main(string[] args) { Console.WriteLine(Enter number of values : int n = int.Parse(Console.ReadLine()); float max_value = 0; Program p = new Program(); 6 ‫‪2/4/2024‬‬ )for (int i = 1; ______

<p>أثناء</p> Signup and view all the answers

A : b; } static void Main(string[] args){ int num1, num2; Program p = new Program(); Console.WriteLine ( "Enter two numbers to compare : \n"); num1 = int.Parse(Console.ReadLine()); num2 = int.Parse(Console.ReadLine()); int result = p.max(num1, num2); Console.WriteLine("\nThe Larger number is : " + result) ; Console.ReadKey(); }} ٌ ‫ برنامج ي ٌحتوي على دالة تقوم بإرجاع العدد األكبر‬: 3 ‫مثال‬ ‫بين ثالثة‬ ٌ‫أعداد عشرية‬ using System; public class MaximumFinder { public static void Main(string[] args) { // prompt for and input three floating-point values Console.WriteLine( "Enter three floating-point values,\n" + " pressing 'Enter' after each one: " ); double number1 = Convert.ToDouble(Console.ReadLine()); double number2 = Convert.ToDouble(Console.ReadLine()); double number3 = Convert.ToDouble(Console.ReadLine()); // determine the maximum value double result = Maximum(number1, number2, number3); // display maximum value Console.WriteLine("\nMaximum number is : " + result); Console.ReadKey(); } // end Main 5 2/4/2024 public static double Maximum(double x, double y, double z) { double maximumValue = x; // assume x is the largest to start // determine whether y is greater than maximumValue if (y > maximumValue) maximumValue = y; // determine whether z is greater than maximumValue if (z > maximumValue) maximumValue = z; return maximumValue; } // end method Maximum } // end class MaximumFinder ٌ ‫ برنامج ي ٌحتوي على دالة تقوم بإرجاع العدد األكبر‬: 4 ‫مثال‬ ‫بين مجموعة‬ ‫من األعداد‬ //MaxFunc_2 using System; class Program { public float max(float a, float b) { return a>b?

<p>true</p> Signup and view all the answers

Main(string[] args) { // prompt for and input three floating-point values Console.WriteLine( "Enter three floating-point values,\n" + " pressing 'Enter' after each one: " ); double number1 = Convert.ToDouble(Console.ReadLine()); double number2 = Convert.ToDouble(Console.ReadLine()); double number3 = Convert.ToDouble(Console.ReadLine()); // determine the maximum value double result = Maximum(number1, number2, number3); // display maximum value Console.WriteLine("\nMaximum number is : " + result); Console.ReadKey(); } // end Main 5 2/4/2024 public static double Maximum(double x, double y, double z) { double maximumValue = x; // assume x is the largest to start // determine whether y is greater than maximumValue if (y > maximumValue) maximumValue = y; // determine whether z is greater than maximumValue if (z > maximumValue) maximumValue = z; return maximumValue; } // end method Maximum } // end class MaximumFinder ٌ ‫ برنامج ي ٌحتوي على دالة تقوم بإرجاع العدد األكبر‬: 4 ‫مثال‬ ‫بين مجموعة‬ ‫من األعداد‬ //MaxFunc_2 using System; class Program { public float max(float a, float b) { return a>b?

<p>false</p> Signup and view all the answers

______ two numbers to compare : \n"); num1 = int.Parse(Console.ReadLine()); num2 = int.Parse(Console.ReadLine()); int result = p.max(num1, num2); Console.WriteLine("\nThe Larger number is : " + result) ; Console.ReadKey(); }} ٌ ‫ برنامج ي ٌحتوي على دالة تقوم بإرجاع العدد األكبر‬: 3 ‫مثال‬ ‫بين ثالثة‬ ٌ‫أعداد عشرية‬ using System; public class MaximumFinder { public static void Main(string[] args) {

<p>Enter</p> Signup and view all the answers

Enter three ______ values,\n" + " pressing 'Enter' after each one: " ); double number1 = Convert.ToDouble(Console.ReadLine()); double number2 = Convert.ToDouble(Console.ReadLine()); double number3 = Convert.ToDouble(Console.ReadLine()); // determine the maximum value double result = Maximum(number1, number2, number3); // display maximum value Console.WriteLine("\nMaximum number is : " + result); Console.ReadKey(); } // end Main 5 2/4/2024 public static double Maximum(double x, double y, double z) { double maximumValue = x; // assume x is the largest to start // determine whether y is greater than maximumValue if (y > maximumValue) maximumValue = y; // determine whether z is greater than maximumValue if (z > maximumValue) maximumValue = z; return maximumValue; } // end method Maximum } // end class MaximumFinder

<p>floating-point</p> Signup and view all the answers

Enter three floating-point values,\n" + " pressing 'Enter' after each one: " ); double number1 = Convert.ToDouble(Console.ReadLine()); double number2 = Convert.ToDouble(Console.ReadLine()); double ______ = Convert.ToDouble(Console.ReadLine()); // determine the maximum value double result = Maximum(number1, number2, ______); // display maximum value Console.WriteLine("\nMaximum number is : " + result); Console.ReadKey();

<p>number3</p> Signup and view all the answers

Public float max(float a, float b) { return a>b?

<p>true</p> Signup and view all the answers

Public float max(float a, float b) { return a>b?

<p>false</p> Signup and view all the answers

إذا أردت تعريف شيء ثابت لجميع الكائنات، قم بتعريفه كـ ______

<p>static</p> Signup and view all the answers

إذا أردت تعريف شيء بداخل كالس معين وتريد الوصول إليه مباشرةً من الكالس، قم بتعريفه كـ ______

<p>static</p> Signup and view all the answers

المتغير الذي يتم تعريفه كـ ______ يعتبر مشترك بين جميع الكائنات من نفس الكالس

<p>static</p> Signup and view all the answers

فعليًا المتغير هنا سيتم تعريفه مرة واحدة في الذاكرة وجميع الكائنات من نفس الكالس ستشير إليه بدل أن تملك نسخة خاصة منه، إذاً ______ تعني نسخة واحدة من المتغير لجميع الكائنات

<p>static</p> Signup and view all the answers

يمكن الوصول للمتغير الذي تم تعريفه كـ ______ بذكر اسم الكالس الذي تم تعريفه فيه ثم وضع اسمه

<p>static</p> Signup and view all the answers

الدوال التي ترجع بقيمة تقوم بإرجاع قيمة إلى مكان الاستدعاء، ويكون نوع القيمة المعادة هو نفس نوع الدالة، أي إذا كانت الدالة من نوع ______ فستكون القيمة المعادة أيضًا من نوع ______

<p>int</p> Signup and view all the answers

برنامج يحتوي على دالة تقوم بإرجاع مربع العدد المرسل إليها، في هذا المثال تم استخدام نوع الدالة ______

<p>int</p> Signup and view all the answers

برنامج يحتوي على دالة تقوم بإرجاع العدد الأكبر بين عددين، في هذا المثال تم استخدام نوع الدالة ______

<p>int</p> Signup and view all the answers

دوال ترجع بقيمة ترجع قيمة إلى مكان الاستدعاء، تعيد قيمة من نفس نوع الدالة، وهي الدوال التي ترجع بقيمة، وتقوم بإرجاع قيمة إلى مكان الاستدعاء، ويكون نوع القيمة المعادة هو نفس نوع الدالة، أي إذا كانت الدالة من نوع ______ فتكون القيمة المعادة أيضًا من نوع ______

<p>int</p> Signup and view all the answers

برنامج يحتوي على دالة تقوم بإرجاع مربع العدد المرسل إليها، في هذا المثال تم استخدام نوع الدالة ______

<p>int</p> Signup and view all the answers

More Like This

Python Class Definitions Quiz
3 questions
Java Chapter 2 Flashcards
53 questions
JavaScript Class Definition
12 questions
Use Quizgecko on...
Browser
Browser