Category: MCQs / Quiz

0

Excel MCQs

Q.1 Which Excel function is used to calculate the internal rate of return for a series of cash flows? A. IRR() B. ROI() C. IRRVAL() D. NETRATE() Q.2 How do you determine the number...

0

DJango MCQs

Q.1 How do you include an app’s URL patterns in the main project’s urls.py file? A. path(‘app_name/’, include(‘app_name.urls’)) B. url(‘app_name/’, include(‘app_name.urls’)) C. path(‘app_name/’, include(app_name.urls)) D. include(‘app_name.urls’) Q.2 What is the purpose of the init.py...

0

Flutter MCQs

Q.1 If a Dart program throws a NoSuchMethodError, what is a likely cause? A. A method is missing a return type B. A method is called on a null object C. A method is...

0

Hadoop 1 MCQs

Q.1 What should be the first step if a block of data is missing or corrupt in HDFS? A. Run fsck command to identify and fix B. Restart the NameNode C. Reformat the DataNode...

0

Internet of Things (IoT) MCQs

Q.1 What distinguishes Bluetooth Low Energy (BLE) from classic Bluetooth in the context of IoT? A. Higher data transfer speeds B. Longer range C. Lower power consumption D. Support for more simultaneous connections Q.2...

0

Java Programming MCQs

Q.1 Spot the mistake: int counter = 0; while(counter < 5){ counter++; } System.out.println(“Count: ” + counter); A. Loop never terminates B. Counter not incremented C. No error D. Print statement incorrect Q.2 Identify...

0

Java Script MCQs

Q.1 Identify the error in this function: function multiply(a, b) { console.log(a * b); } A. It does not return any value B. It returns the wrong value C. Syntax error D. No error...