atlas news
    
Python Learning
24  mars     19h44
Some important UART (Universal Asynchronous Receiver-Transmitter) Interview Questions sets with answers
sachin Pagar    Here are some interview questions and answers related to UART Universal Asynchronous Receiver Transmitter : . What is UART UART stands for Universal Asynchronous Receiver Transmitter. It’s a hardware component used for serial communication, commonly found in microcontrollers, communication...
15  décembre     17h36
Basic Python OOP Concepts
sachin Pagar    Introdution: Object oriented programming OOP is a programming paradigm that uses objects, which are instances of classes, to organize code. Here are some basic concepts of OOP in Python: . Class A class is a blueprint for creating objects. It defines a data structure that represents a real world...
09  juillet     19h09
Assigning USB Port in Raspberry PLC: Step-by-Step Guide
sachin Pagar    Replace bus number with the bus number of the USB device, device number with the device number, and usb port name with the desired name for the USB port. For example, if the bus number is and the device number is , and you want to assign it to usb port, the command would be: Remember...
15  mars     17h22
which is free online Compiler or Editor for MATLAB
sachin Pagar    We know that mostly students are looking for run there code in online mode . so in this article we will see which is free online Compiler or IDE for Matlab. What is matlab and matlab online compiler MATLAB compiler provides access to MATLAB and Simulink editor from any standard web browser...
12  mars     18h59
How to trace mobile number and get information using python
sachin Pagar    Welcome everyone, in this article you will learn How to trace mobile number and get information using python. Now a day there are so many application software is available to check the status of mobile users but it is also possible by using python script. We are divided this article into five part...
26  janvier     18h00
Top Benefits and Checklist to Hire Python Developers
sachin Pagar    Python is now one of the most widely used programming languages in the world. Although the history of the language stretches back to the s, it has acquired a significant amount of attention in more recent times. Python is the fundamental programming language for almost all modern technoalogies....
14  décembre     18h24
Variables in C vs Python Basics of Variables
sachin Pagar    Basics of Variables in Python Object Identity in python In the above program we declared two variables i.e. a and b. python is inferior language so it’s not need to declared variables as int types. Above output windows show you addresses for a and b variables is same bur after resigned the variable...
29  août     18h47
Basics of pointer in embedded c
sachin Pagar    The pointer in c language is a variable which can be store the address of another variable. Declaration a pointer in embedded might you also like : call by value in embedded c The pointer in c language can be declared using askterisk symbol i.e. int a; pointer to int char c; pointer to ...
11  août     15h29
Basics of call by reference in embedded c
sachin Pagar    There are two methods to he data into the function in embedded c Call by value Call by reference Call by reference in embedded c In call by reference , the addresses value of the variable is passed into the function call the value of the actual parameters can be changing the formal parameters since...
26  juillet     18h28
Basics of storage classes in embedded c
sachin Pagar    We know that storage classes in embedded c are used to determine the visibility, lifetime , memory location and initial value of a variable. There are four type of storage classes in embedded c Automatic External Static Register Storage classes Storage place Scope Default Value Lifetime Auto RAM...