Coder Baba
2.42K subscribers
1.01K photos
23 videos
722 files
723 links
Everything about programming for beginners.
1 and only official telegram channel of CODERBABA India.

Content:
.NET Developer,
Programming (ASP. NET, VB. NET, C#, SQL Server),
& Projects
follow me https://linktr.ee/coderbaba
*Programming
*Coding
*Note
Download Telegram
Information Security Do’s and Don’ts for ChatGPT:
ChatGPT (Chat Generative Pre-Trained Transformer) is an AI chatbot developed by OpenAI.
It is built on top of Open AI’s GPT-3.5 family of large language models and has been fine-tuned using both supervised and reinforcement learning techniques. It can create compelling texts that are hard to distinguish from those written by humans, among other uses.

What are the Limitations?
Although ChatGPT is a powerful AI-based chatbot system, it does have some limitations. It can only provide answers based on the data it has been trained on. Also, since it uses the information learnt from training data to generate responses, there is always room for error—so all output should be fact-checked for accuracy and timelines. The Chabot may not be able to provide in-depth information or understand context or nuances in conversation as well. As with all AI tools, all business leaders should be aware of the dangers of potential bias. If the data ChatGPT is trained on is biased, the answers the bot provides will be biased, as well. Hence, we need to be vigilant about monitoring output from the chatbot to ensure it is free of bias and offensive content.

join @Coder_Baba
42 ASP.NET Course | What is Cookies in ASP. NET explain?
How to set and get Cookies in Asp.Net C#
Cookies in ASP. NET, ASP. NET Training,Online Courses,
Hands on Projects,
set and get Cookies in Asp. Net C#,

https://youtu.be/tDUpmpSkce8
web.config file :
This web.config file in a xml file means than web.config file extension in .xml, we need not restart the web server, when the settings change in the configuration file, asp.net automatically detect the changes in the configuration file. In this configuration many type of settings store in this file.

For example

1-Database connection
2-Cache settings
3-Cookie setting
4-Session settings
5-Error handling
6-Security
Difference between session and cookies

1-The main difference between both of them is that sessions are saved on the server-side, whereas cookies are saved on the user's browser or client-side.
2-A session stores the variable and their value on server but in cookies are store client machine
3-Session ends when user logout the website or close his browser but cookies is set for life time
4-Session can store unlimited data but cookies store limited data
5-In session maximum memory limit is 128 MB but in cookie 4kb memory limit
Coder Baba pinned «Project with source code | Online Training https://www.youtube.com/watch?v=CEx9VM0bIlg»
Channel name was changed to «Coder Baba»
How is C# different from the C programming language?
What is the difference between C# abstract class and an interface?
@coder_baba
C# Exception with their meaning:

👉🏻ArrayTypeMismatchException: This exception comes when the Type of value being stored is incompatible with the type of the array.
👉🏻DivideByZeroException: It comes when the user tries to division an integer value by zero.
👉🏻IndexOutOfRangeException: When an array index is out-of-bounds, it exception occurred.
👉🏻InvalidCastException: A runtime cast is invalid.
👉🏻OutOfMemoryException: Insufficient free memory exists to continue program execution.
👉🏻OverflowException: An arithmetic overflow occurred.
👉🏻NullReferenceException: An attempt was made to operate on a null reference—that is, a reference that does not refer to an object.