by admin | Nov 9, 2020 | Uncategorized
Define Exploit The exploit can be defined as a command’s sequence, data’s chunk, or software part that grabs benefits of vulnerability or bug in a system or application. It can result in an unexpected or unintended appearance on computer hardware, software, or...
by admin | Oct 14, 2020 | Uncategorized
Computer Engineering Topics Covered What is computer Engineering?What does computer engineers do?Application of Computer EngineeringHow to become computer Engineer What is Computer Engineering? Computers and humans are connected in such a way that today we cannot...
by admin | Sep 21, 2020 | Uncategorized
What is Social Media Marketing (SMM)? Social Media Marketing (SMM) is a form of an internet marketing platform that uses social media sites as a marketing tool. It is used to the brand’s promotion, target audience growth, increasing sales, and services through digital...
by mayankjtp | Feb 12, 2020 | Uncategorized, VBA
Excel VBA MonthName Function: The MonthName function in VBA returns a string with the month name for the specified month number. Syntax MonthName (Month, [Abbreviate]) 123 MonthName (Month, [Abbreviate]) Parameter Month (required) – This parameter...
by mayankjtp | Jan 28, 2020 | java, Uncategorized
Thread class The thread represents a part of the process. Every process can have multiple associated threads in which every thread may execute the same or different job. By default, each thread assigns a default priority by the JVM, which is used by thread scheduler...
by admin | Jan 18, 2020 | Uncategorized
Data Link Layer Protocols Bluetooth Low EnergyZ-WaveZigBee Smart EnergyLoRaWANWirelessHARTLTE-A 1. Bluetooth Low Energy Bluetooth Low Energy or Bluetooth is a short-range communication protocol with the physical layer and medium access control layer. It is...
by mayankjtp | Jan 13, 2020 | Uncategorized
Looping in VBA There are many situations where a programmer needs to execute a block of the repetitive code number of times. Writing the same statement will make the program tedious and monotonous. Hence, to reduce the statements, looping is introduced....
by mayankjtp | Dec 26, 2019 | Uncategorized
We have previously discussed the Spring MVC form tags. The form tag library provides a variety of form tags that are used to build web applications. One of them is a <form:input> tag used to generate text field. <form:input> – It represents an HTML...
by admin | Oct 3, 2019 | Uncategorized
PHP array_push() Function The array_push() function in PHP pushes one or more elements onto the end of the array. This function increases the length of the array by the number of variables pushed. Syntax array_push ( array &$array, mixed& value [, mixed $... ]...
by admin | Oct 3, 2019 | Uncategorized
PHP array_product() Function The array_product() function in PHP calculates the product of values in an array. Syntax array_product ( array $array ) 123 array_product ( array $array ) Parameter array(required)- This parameter represents the input array....