Posts

SPECTROPHOTOMETER

Image
  Spectrophotometers have made considerable progress from the main model imagined in 1940. Scaled down and joined with other current innovation, these gadgets presently have a wide scope of examination and reasonable applications in food, clinical, modern, and natural fields. This article centers around the explanations behind the fame of this strategy. Principle of Spectrophotometer           Light comprises electromagnetic radiation with a wide scope of frequencies, wavelengths, and energies that all movement at a similar speed. This includes the visible spectrum, as well as radiation of longer and shorter wavelengths on either side of the band. Light is split when it strikes an object , as certain pieces of it are retained and the rest is reflected or communicated. The sort of communication relies upon the wavelengths  of the light and chemical  composition of the object. The resultant appropriation as far as recurrence ...
Image
INTERNAL ARCHITECTURE OF PLC(programmable logic controller)   In this blog, we will learn the basic internal architecture of PLC that includes CPU of PLC, different buses in PLC system then memory unit of PLC and input/output unit of PLC system. The internal architecture of PLC consists of the CPU which contains the system microprocessor, memory storage and other integrated circuits that are used to execute the control program and input output circuitry that communicate to external devices. Central processing unit control and processes all the operations within the PLC and it is supplied with a clock which has a frequency which is typically between 1 and 8 MHz and this frequency decide the operation speed of the PLC, which provides timing and synchronization for all the elements in the system. The information is carried out within the PLC is by digital signals that are in 1 and 0’s and these digital signals flow on internal paths that path are called buses. The buses mean in...
Image
Object Oriented Programming     Topic:   Memory Management In Java   Domain - Blog       Introduction   Any computer program we write needs basic essential resources like CPU for math & computing, and finally memory for managing the data. Memory is a limited resource and it has to manage effectively. For memory management in Java, we need to first understand how the memory is allocated, referenced, de-allocated, and finally, what happens to the memory after de-allocation. Once the memory de-allocated, the memory would be marked free for future usage. In Java, if the memory is allocated to a variable and the variable is still referencing it, the memory would be allocated not available for other variables/program. Hence, if a code is written to allocate a resource for usage with no clean-up after the job done, the allocated memory unit would be locked forever leading to a memory leak, eventually, leading to an error cal...