Option A. stack Option B. registers Option C. heap Option D. main memory True Answer B
How many elements are in m?
m = [[x, y] for x in range(0, 4) for y in range(0, 4)]
Option A. 8 Option B. 12 Option C. 16 Option D. 32 True Answer C
Option A. TRUE Option B. FALSE Option C. Option D. True Answer B
Option A. scanf() Option B. getch() Option C. getche() Option D. gets() True Answer B
Getch() function is need to be used in some c compilers like turbo c. Getch is used to hold the output sceen and wait until user gives any type of input(i.e. Until user press any key ) so that they can read the character and due to this we able to see the output on the screen.
Option A. Editing Option B. Sorting Option C. Updating Option D. Calculating True Answer B
Sorting is the process of arranging the data in alphabetical or numeric order either in ascending order or descending order.
Option A. Calcium ammonium nitrate Option B. Ammonium sulphate Option C. Calcium nitrate Option D. Ammonium sulphat nitrate True Answer A
Option A. Dot Option B. New Option C. Both a and b Option D. None of these True Answer B
Option A. Harshavardhana Option B. Ashoka Option C. Chandragupta II Option D. none of them True Answer C
Faxian (Fa Hien) was a Chinese Buddhist monk who travelled by foot from China to India, visiting many sacred Buddhist sites in what are now Xinjiang, Pakistan, India, Nepal, Bangladesh and Sri Lanka between 399-412AD to acquire Buddhist texts. Faxian visited India in the early fifth century. He is said to have walked all the way from China across icy desert and rugged mountain passes. He entered India from the northwest and reached Pataliputra. Faxian's visit to India occurred during the reign of Chandragupta II. He took back with him Buddhist texts and images sacred to Buddhism. He is also renowned for his pilgrimage to Lumbini, the birthplace of Gautama Buddha (Nepal).
Option A. Shape Option B. Object Option C. Chart Option D. Pie True Answer A
What will be the output of the following Python code?
print("abcdef".find("cd") == "cd" in "abcdef")
Option A. True Option B. False Option C. Error Option D. None of the mentioned True Answer B
Option A. Gateway Option B. Firewall Option C. Intrusion Prevention system Option D. Anti-Virus True Answer B
Option A. int a[10]; Option B. int *p = (int *) malloc(10 * sizeof(int)); Option C. int *p = (int *) calloc(10, sizeof(int)); Option D. none of the above True Answer A
Option A. P-Home, Q-Power, R- Defence, S-Telecom, T-Finance Option B. R-Home, S-Power, P- Defence, Q-Telecom, T-Finance Option C. P-Home, Q-Power, T- Defence, S-Telecom, U-Finance Option D. Q-Home, U-Power, T- Defence, R-Telecom, P-Finance True Answer B
>>> a=dict()
>>> a[1]
Option A. An exception is thrown since the dictionary is empty Option B. ‘ ‘ Option C. 1 Option D. 0 True Answer A
Option A. Sorting Option B. Filter Option C. Inserting Option D. Deleting True Answer A
Option A. childhood Option B. adolescence Option C. bobyhood Option D. adulthood True Answer A
Option A. Ctrl + 1 Option B. Ctrl + 2 Option C. Ctrl + 3 Option D. Ctrl + 4 True Answer A
Option A. two transfer mode Option B. control connection to remote computer before file can be transferred Option C. User Datagram Protocol (UDP) Option D. authorization of a user through login and password verification True Answer C
Option A. TRUE Option B. FALSE Option C. Option D. True Answer A
import time
time.time()
Option A. The number of hours passed since 1st January, 1970 Option B. The number of days passed since 1st January, 1970 Option C. The number of seconds passed since 1st January, 1970 Option D. The number of minutes passed since 1st January, 1970 True Answer C