BMA Special Course Questions 2023 – Signals Corps
Learn the answers to your BMA Special Course Questions from experts. Get personalized solutions for success from our professionals today!
The BMA Special CourseΒ is a prestigious course that provides in-depth training on the importance of signals corps in military operations. The course curriculum is designed to provide a comprehensive understanding of the technical aspects of signals corps, including computer science and engineering. The course is essential for individuals who wish to serve in the signals corps and contribute to the success of military operations.
BMA Special Course Questions
Signals corps play a crucial role in military operations, as they are responsible for ensuring that communication lines remain open and secure. The ability to communicate effectively and efficiently is essential for the success of any military operation, and signals corps are at the forefront of this effort.
The course emphasizes the importance of signals corps in military operations and provides students with the necessary skills and knowledge to excel in this field.
The objectives of the BMA Special Course QuestionsΒ are to provide students with a comprehensive understanding of the technical aspects of signals corps, including computer science and engineering, and to prepare them for a successful career in this field.
The course is designed to challenge students and push them to their limits, with a focus on hands-on training and real-world scenarios. By the end of the course, students will have the necessary skills and knowledge to serve in the signals corps and contribute to the success of military operations.
46 BMA Special Course Questions – Signals Corps
47 BMA Special Course Questions – Signals Corps
1. Some T/F Questions of Basic Electric & Electronics Basically current (AC/DC), Battery, voltage, etc. (10)
2. Some multiple choice Questions on Electric & Electronics Basically current (AC/DC), Battery, voltage, etc. (20)
3. What is data structure? How many data structures are represented in RDBMS, Network Model? (10)
4. IPV6 Network Diagram? (10)
Β 5. What are BIT and BYTE? (10)
6. What are LAN and WAN? (10)
7. Write any four (20)Β a. Wi-Max b. 3G Technology c. ATM d. Transformer e. WWW
49 BMA Special Course Questions – Signals Corps

50 BMA Special Course Questions – Signals Corps
1. πΈπ₯πππππ π‘βπ π‘π¦πππ ππ π‘ππππ πππ π πππ πππππ . (10)
2. πβππ‘ πππ π‘βπ πππππππππ‘ π‘π¦πππ ππ πππ‘π€ππππ ? πΈπ₯πππππ ππ πππ‘πππ. (10)
3. πβππ‘ ππ π΄π‘π‘πππ’ππ‘πππ? (5)
4. πΈπ₯πππππ π΄π, πΉπ, πππ ππ. (10)
5. πβππ‘ ππ πππππ¦πππππππ? (5)
6. πβπππ‘ πππ‘π: π΄ππ, ππππ, πΉππ, πππ (20)
7. ππππ‘π π πππππππ π‘π ππππ πππππ ππ’πππππ . (20)
The Solutions of all these Questions are:Β Click Here
53 BMA Special Course Questions – Signals Corps
- πβππ‘ ππ ππ? πΌπππππ‘πππ‘ π πππ ππ ππ
- π·π»πΆπ πππ ππ‘π ππππππ‘ππππ
- ππ πΏ πππ βππ€ ππ‘ π€ππππ
- πππ πππ ππππππ‘ππππ
- πππππππ¦ πππ¦ π π’πππ πππππππ πππ¦ ππππππππ‘π πππ¦
- π΄π π πππ βππ€ ππ‘ π€ππππ
- πΌππ£6 ππππππβπππ ππππ-π ππ’πππ π πππ‘π€πππ
- πΆπππππππππ‘π¦ ππ πππ‘ππππ π
- π»π’π π π€ππ‘πβ πππ’π‘ππ ππππππππππ
- πππ¦π ππ πππ‘π π‘ππππ πππ π πππ
- πΆπππ ππ¦ π£πππ’π πππ ππππ ππ¦ πππππππππ
- ππ’ππππ‘
- ππππ¦ππππβππ π ππ π++ ππ ππ’ππ ππππ ππ πΊπΆπ·
54 BMA Special Course Questions – Signals Corps
What is Kernel?
Illustrate DNS with a diagram.
What is ARP?
Write about the Firewall.
Write C program:
Fibonacci Number
Small letter to Capital letter
What is Network Topology? Write types of Network Topology.
Digital Encryption System (DES)
Define primary and candidate key
Aggregation in database function
Function dependency in database
Using IP, Host, and Subnet address, 1st Subnet start and finishes IP
DHCP four steps process.
The Solutions of all these Questions are:Β Click Here
55 BMA Special Course Questions – Signals Corps
1. Write a C code to sort any four item, what is pointer
#include <stdio.h>
#include <stdlib.h>
Β
int main()
{
Β Β int arr[] = {5, 8, 7, 1};
Β Β int temp = 0;Β
Β Β int length = sizeof(arr)/sizeof(arr[0]);Β
Β Β for (int i = 0; i < length; i++) {
Β Β Β Β for (int j = i+1; j < length; j++) {
Β Β Β Β Β Β if(arr[i] > arr[j]) {
Β Β Β Β Β Β Β Β temp = arr[i];
Β Β Β Β Β Β Β Β arr[i] = arr[j];
Β Β Β Β Β Β Β Β arr[j] = temp;
Β Β Β Β Β Β }
Β Β Β Β }
Β Β }
Β Β printf(“Elements of array sorted in ascending order: \n”);
Β Β for (int i = 0; i < length; i++) {
Β Β Β Β printf(“%d “, arr[i]);
Β Β }
Β Β return 0;
}
Pointer: The Pointer in C, is a variable that stores the address of another variable. The purpose of the pointer is to save memory space and achieve faster execution time. The declaration form of the pointer is β
type *var-name;
Here, type is the pointer’s base type and var-name is the name of the pointer variable.
BMA Special Course Questions and Answers
2. Short note: kernel, DNS, oop, normalization
Kernel:Β The kernel is a central component of an operating system that manages operations of computers and hardware. Kernel acts as a bridge between applications and data processing performed at the hardware level using inter-process communication and system calls.
DNS:Β A DNS server is a computer with a database containing the public IP addresses associated with the names of the websites. DNS acts like a phonebook for the internet. Whenever people type domain names, like army.mil.bd, into the address bar of web browsers, the DNS finds the right IP address. The siteβs IP address is what directs the device to go to the correct place to access the siteβs data.
OOP:Β Object-Oriented Programming (OOP) is a programming concept in which a programmer uses classes and objects to implement real-world things in software development, such as inheritance, hiding, and polymorphism.The fundamental purpose of OOP is to connect data and required functions so that no other section of the code may access them.
Normalization:Β Normalization is the process of organizing data in a database. It is used to minimize the redundancy from a relation or set of relations. It is also used to eliminate undesirable characteristics like Insertion, Update, and Deletion Anomalies. It divides the larger table into smaller ones and links them using relationships.
BMA special course preparation
3. SQL injection, primary key, super key, exam of class b and c network?
SQL injection:Β SQL Injection is a type of an injection attack that makes it possible to execute malicious SQL statements to steal valuable information from database and destroy or alter data in database. With SQL injection a hacker can change the valuable information of database server.
Primary key:Β Β Primary key is a attribute in a table which can uniquely identifies each tuple in a database table. Primary keys must contain unique values also primary key column cannot have NULL values.
Super Key:Β Super key is a single attribute or a group of multiple attributes that can uniquely identify tuples in a table. Super key can contain redundant values. Candidate keys are a sub set of super keys.Β
Example of class b and c network :Β
IP address is a unique address that identifies a device on the internet or a local network.
4. Network and host finding from an ip, why use telnet or ssh from remote place
Subnet:Β A subnet mask is a 32 bits address used to distinguish between a network address and a host address in IP address.Β
Telnet or SSH:Β Telnet and SSH are both network protocols that allow us to access and manage devices remotely. While SSH protocol is the better option, Telnet is still useful in some situations. It is important to remember that the main difference between Telnet and SSH is that SSH encrypts traffic in both directions, all data, including usernames and passwords.Β
- BMA Special Course Questions Answer Click Here
- Latest BMA Special Course Circular Click Here
ΰ¦Άΰ§ΰ§ΰ¦Ύΰ¦° ΰ¦ΰ¦°ΰ§ ঠনΰ§ΰ¦―ΰ¦ΰ§ ΰ¦ΰ¦Ύΰ¦¨ΰ¦Ύΰ¦° ΰ¦Έΰ§ΰ¦―ΰ§ΰ¦ ΰ¦ΰ¦°ΰ§ দিন!
please upload signals core 55-58
please upload singnal core 56 -59 question