What is an antigen? An antigen is defined as any substance which can stimulate our body to make an immune response against that substance. Example Bacteria, Viruses, Chemicals PROPERTIES OF ANTIGENS Antigens are foreign in nature. Antigens are chemical (Proteins, polysaccharides) Antigens have a minimum molecular mass of 5000 Da. The complex structure of an […]
Month: May 2021
TCS Xplore CPA Python Coding Question – 3 with Solution
In this post, we will see the solution of the Python Coding Question which is already asked in the TCS Xplore CPA Exam.
QR Code Generator GUI in Python
For creating the QR code generator GUI application we will be using pyqrcode and tkinter modules of python. tkinter module is used For making the GUI. This is a built-in module in python so no need to install it explicitly.pyqrcode module is used to create the QR code.
QR Code Generator in Python
For creating the QR code generator we will be using pyqrcode module of python. This module needs to be installed explicitly on your system because this module does not come up with python already.
TCS Xplore CPA Python Coding Question -2 with Solution
In this post, we will see the solution of the Python Coding Question which is already asked in the TCS Xplore CPA Exam.
TCS Xplore CPA Python Coding Question -1 with Solution
In this post, we will see Python Coding Question asked in TCS Xplore CPA with Solution. Create a class Painting with the below attributes: paintingID: string type painterName: string type paintingPrice: int type painting type: string type create constructor (__init__ method) which takes all the above attributes in the same sequence. Method will set the […]
Python- Practice Paper – 2 (Predict the outputs)
In this post, we will see different questions which will test your python basic skills. Let’s see the Questions: 1) Ans: [1, 3, 2, 1, 3, 2, 1, 3, 2] 2) Ans: 4 [[[1, 2], [3, 4], 5], 6, 7] 3) Ans: [3, 1, 2, 5, 4, 6] [5, 4, 6, 3, 1, 2] 4) […]