Question
Which of the following protocols is widely used for
low-power, short-range communication in IoT devices?Solution
Bluetooth Low Energy (BLE) is designed for low-power, short-range communication, making it ideal for IoT devices like wearables and smart home gadgets. BLE operates within the 2.4 GHz ISM band and consumes minimal energy, ensuring long battery life for connected devices. • Example: A fitness tracker uses BLE to sync data with a smartphone. The protocol ensures reliable communication without draining the device's battery. ________________________________________ Why Other Options Are Incorrect: 1. HTTP: HTTP is heavy and unsuitable for low-power IoT communication. 2. FTP: FTP is used for file transfers, not for real-time IoT communication. 3. SOAP: SOAP is verbose and not optimized for lightweight, resource-constrained IoT environments. 4. SMTP: SMTP is for email transfer and lacks IoT-specific optimizations.
Which Hadoop component is responsible for resource management?
Which is correct version of delete query in SQL
Consider the following C++ code:
#include
class Base {
public:
  virtual void show() = 0;
};
cl...
Which of the following uses Latent Dirichlet Allocation (LDA)?
What is edge computing in IoT?
In a Breadth-First Search (BFS) algorithm for graph traversal, what is the primary role of a queue?
In IPv6, which of the following addresses is used for local communication within a network segment and is not routable beyond the local network?Â
What is the output for the below code
MyList = ["New York", "London", "Paris", "New Delhi"] MyFile=open('output.txt','w') Â for element in MyLis...
What does "Polymorphism" literally mean in the context of OOP?
State True or False
Semi-structured data  is data that does not conform to a data model but has some structure. It lacks a fixed or rigid sc...