- 1 Cài đặt phần mềm cần thiết cho học lập trình web
- 2 Tự Học HTML Cơ Bản Online Miễn Phí Từ A đến Z
- 3 Seo website dành cho dân IT
- 4 REACT NATIVE
- 5 sdfdsf
- 6 Lập trình di động với React Native
- 7 Vue.js
- 8 Kiếm thức cơ bản HTML CSS
- 9 So sánh count() và sizeof() 2 phần tử đếm mảng
- 10 Toán tử và biểu thức của php
Ngưng hỏi: Trường nào tốt hơn, nên học trường nào
Dạo gần đây mình thấy nhiều em/bạn sắp học đại học CNTT thường post các câu hỏi. như Đại học Bách Khoa Hà Nội hay Đại Học FPT có chất lượng tốt hơn? Học ở Bách Khoa hay Khoa Học Tự Nhiên tốt hơn? Có nên học ở Cao đẳng thực hành FPT Polytechnic tại Đà Nẵng? Có Nên Học ở ĐH FPT không? ...
[Code Challenge] PrimeSum
A number is called a k-primeSum if it can be represented as a sum of k (not necessarily distinct) prime numbers. Implement a function that checks if the given number is k-primeSum or not. Example For n = 9 and k = 3, the output should be primeSum(n, k) = true. We can represent 9 as 2 + 2 + ...
[Chú ý] Văn hóa trả lời câu hỏi trên DNH
Dạo gần đây mình rảnh nên thường xuyên tham gia diễn đàn Có 1 vấn đề mình thấy rất nhiều. Đó là comment giúp đỡ những bạn đặt câu hỏi chỉ đơn giản là 1 cái link dẫn tới đâu đó có thể giải quyết được vấn đề . Ví dụ như thế này Untitled.png 1089x675 41.6 KB Ai cũng có thể gõ ...
[Poll] Java.lang.class - 1.05
What will be the output of the program? String x = new String("xyz"); String y = "abc"; x = x + y; How many String objects have been created? A. 2 B. 3 C. 4 D. 5 0 voters Answer: Option C [details=Explanation:] Line 1 creates two, one ...
[Poll] Java.lang.class - 1.03
Which of the following are valid calls to Math.max? Math.max(1,4) Math.max(2.3, 5) Math.max(1, 3, 5, 7) Math.max(-1.5, -2.8f) A. 1, 2 and 4 B. 2, 3 and 4 C. 1, 2 and 3 D. 3 and 4 0 voters Answer: Option A [details=Explanation:] (1), (2), and ...
[Poll] Java.lang.class - 1.04
Select how you would start the program to cause it to print: Arg is 2 public class Myfile { public static void main (String[] args) { String biz = args[1]; String baz = args[2]; String rip = args[3]; System.out.println("Arg is " + rip); } } ...
[Poll] Java.lang.class - 1.01
What is the value of “d” after this line of code has been executed? double d = Math.round ( 2.5 + Math.random() ); A. 2 B. 3 C. 4 D. 2.5 0 voters Answer: Option B Explanation: The Math.random() method returns a number greater than or equal ...
Poll: Kiểm tra kiến thức Core Java (Garbage Collection )- 1.10
After line 11 runs, how many objects are eligible for garbage collection? class X2 { public X2 x; public static void main(String [] args) { X2 x2 = new X2(); /* Line 6 */ X2 x3 = new X2(); /* Line 7 */ x2.x = x3; x3.x = x2; x2 = new X2(); ...
[Poll] Java.lang.class - 1.02
Which of the following would compile without error? A. int a = Math.abs(-5); B. int b = Math.abs(5.0); C. int c = Math.abs(5.5F); D. int d = Math.abs(5L); 0 voters Answer: Option A [details=Explanation:] The return value of the Math.abs() method is ...
Poll: Kiểm tra kiến thức Core Java (Garbage Collection )- 1.11
What allows the programmer to destroy an object x? A. x.delete() B. x.finalize() C. Runtime.getRuntime().gc() D. Only the garbage collection system can destroy an object. 0 voters Answer: Option D [details=Explanation:]Option D is correct. When an ...