- 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
Poll: Kiểm tra kiến thức C - 4.08
Let’s have a discussion about this problem and get the answer here http://www.indiabix.com/online-test/c-programming-test/14 What will be the output of the following program in 16 bit platform assuming that 1022 is memory address of the string “Hello1” (in Turbo C under DOS) ? ...
Poll: Kiểm tra kiến thức C - 4.07
Let’s have a discussion about this problem and get the answer here http://www.indiabix.com/online-test/c-programming-test/14 8.What will be the output of the program if the array begins at address 65486? #include<stdio.h> int main() { int arr[] = {12, 14, 15, 23, 45}; ...
Poll: Kiểm tra kiến thức C - 4.06
Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/java-programming-test/61 In the following program add a statement in the function fact() such that the factorial gets stored in j. #include<stdio.h> void fact(int*); int main() { int i=5; ...
Poll: Kiểm tra kiến thức C - 4.05
Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/java-programming-test/61 6.If the size of integer is 4bytes, What will be the output of the program? #include<stdio.h> int main() { int arr[] = {12, 13, 14, 15, 16}; printf("%d, %d, %d ", ...
Poll: Kiểm tra kiến thức C - 4.04
Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/java-programming-test/61 5.What will be the output of the program ? #include<stdio.h> int *check(static int, static int); int main() { int *c; c = check(10, 20); printf("%d ", c); return ...
Poll: Kiểm tra kiến thức Core Java - 1.03
Let’s have a discussion about this problem and get the answer here http://www.indiabix.com/online-test/java-programming-test/61 3. What will be the output of the program? class BoolArray { boolean [] b = new boolean[3]; int count = 0; void set(boolean [] x, int i) { ...
Poll: Kiểm tra kiến thức Core Java - 1.02
Let’s have a discussion about this problem and get the answer here http://www.indiabix.com/online-test/java-programming-test/61 2. What will be the output of the program? public class Test { public static void main(String args[]) { class Foo { public ...
Poll: Kiểm tra kiến thức Core Java - 1.01
Let’s have a discussion about this problem and get the answer here http://www.indiabix.com/online-test/java-programming-test/61 What will be the output of the program? class A { final public int GetResult(int a, int b) { return 0; } } class B extends A { public int ...
Poll: Kiểm tra kiến thức C - 4.03
Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/c-programming-test/14 3. What will be the output of the program? #include<stdio.h> int addmult(int ii, int jj) { int kk, ll; kk = ii + jj; ll = ii * jj; return (kk, ll); } int main() { ...
Poll: Kiểm tra kiến thức C - 4.02
Các bạn thảo luận đáp án nhé, bài test lấy từ http://www.indiabix.com/online-test/c-programming-test/14 2. What will be the output of the program? #include<stdio.h> int main() { int i=-3, j=2, k=0, m; m = ++i && ++j || ++k; printf("%d, %d, %d, %d ", i, j, k, m); ...