ما هي الدولة
شركات
تقنية عامة
لغات البرمجة
What is the output
200

Which country developed the Chrome browser?

United States of America

200

Which company developed the LinkedIn platform?

Microsoft

200

What does the abbreviation URL stand for?

Uniform Resource Locator

200

ما هي اللغة اللتي تعتبر اساس تطوير صفحات الويب

HTML

200

public class Main {

    public static void main(String[] args) {

        String s = "Hello";

        System.out.println(s + " World");

    }

}

Hello World

200

Which country developed the first robots working in hospitals to provide services?

Japan

200

Which company developed the first GeForce graphics processor?

NVIDIA

200

What does the abbreviation HTML stand for?

HyperText Markup Language

200

أي لغة برمجة تُستخدم بكثرة في تحليل البيانات والذكاء الاصطناعي؟

Python

200

public class Main {

    public static void main(String[] args) {

        int x = 10;

        int y = 4;

        System.out.println(x / y);

    }

}

2

400

Which country was the first to heavily invest in artificial intelligence?

United States of America

400

Which company developed the Watson artificial intelligence platform?

IBM

400

ما الفرق بين البيانات المهيكلة (Structured) وغير المهيكلة (Unstructured)؟

Structured بيانات منظمة في جداول

Unstructured بيانات غير منظمة

400

أي لغة تُستخدم لتطوير تطبيقات iOS؟

Swift

400

public class Main {

    public static void main(String[] args) {

        int[] arr = {1, 2, 3, 4};

        int sum = 0;

        for (int i = 0; i < arr.length; i++) {

            if (i % 2 == 0) {

                sum += arr[i];

            }

        }

        System.out.println(sum);

    }

}

4

400

Which country launched the first 5G networks in the Middle East?

Kingdom of Saudi Arabia

400

Which company developed the HarmonyOS operating system?

Huawei

400

ما هو الفرق بين ROM وRAM؟

ROM للقراءة فقط

RAM للكتابة والقراءة المؤقتة

400

ما الفرق بين Overloading و Overriding في Java؟

Overloading 

نفس الاسم مع معطيات مختلفة

Overriding 

Subclass إعادة تعريف دالة في

400

int[] arr = {1,2,3};

System.out.println(arr[arr.length-1] + arr[0]);

4

500

Which country established the largest fully solar-powered data center?

United Arab Emirates

500

Which company was founded by Larry Page and Sergey Brin in 1998?

Google

500

How many bits are there in an IPv4 address?

32 bits

500

Which programming language, developed in the 1990s, was originally named "Oak"?

Java

500

   String text = "JAVA";

        String result = "";

        for (int i = text.length() - 1; i >= 0; i--) {

            result += text.charAt(i);

        }

        System.out.println(result);

AVAJ