Which country developed the Chrome browser?
United States of America
Which company developed the LinkedIn platform?
Microsoft
What does the abbreviation URL stand for?
Uniform Resource Locator
ما هي اللغة اللتي تعتبر اساس تطوير صفحات الويب
HTML
public class Main {
public static void main(String[] args) {
String s = "Hello";
System.out.println(s + " World");
}
}
Hello World
Which country developed the first robots working in hospitals to provide services?
Japan
Which company developed the first GeForce graphics processor?
NVIDIA
What does the abbreviation HTML stand for?
HyperText Markup Language
أي لغة برمجة تُستخدم بكثرة في تحليل البيانات والذكاء الاصطناعي؟
Python
public class Main {
public static void main(String[] args) {
int x = 10;
int y = 4;
System.out.println(x / y);
}
}
2
Which country was the first to heavily invest in artificial intelligence?
United States of America
Which company developed the Watson artificial intelligence platform?
IBM
ما الفرق بين البيانات المهيكلة (Structured) وغير المهيكلة (Unstructured)؟
Structured بيانات منظمة في جداول
Unstructured بيانات غير منظمة
أي لغة تُستخدم لتطوير تطبيقات iOS؟
Swift
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
Which country launched the first 5G networks in the Middle East?
Kingdom of Saudi Arabia
Which company developed the HarmonyOS operating system?
Huawei
ما هو الفرق بين ROM وRAM؟
ROM للقراءة فقط
RAM للكتابة والقراءة المؤقتة
ما الفرق بين Overloading و Overriding في Java؟
Overloading
نفس الاسم مع معطيات مختلفة
Overriding
Subclass إعادة تعريف دالة في
int[] arr = {1,2,3};
System.out.println(arr[arr.length-1] + arr[0]);
4
Which country established the largest fully solar-powered data center?
United Arab Emirates
Which company was founded by Larry Page and Sergey Brin in 1998?
How many bits are there in an IPv4 address?
32 bits
Which programming language, developed in the 1990s, was originally named "Oak"?
Java
String text = "JAVA";
String result = "";
for (int i = text.length() - 1; i >= 0; i--) {
result += text.charAt(i);
}
System.out.println(result);
AVAJ