To, Integrated Data Management Center Singhadarbar, Kathmandu Subject: Requesting Username and password reset for cPanel of Abc.gov.np Dear Sir/Madam, This is to inform you that we have no access to cPanel account of official website (Abc.gov.np). Provided login id and password is not working, and it shows incorrect password. Therefore, you are requested to please […]
4 Best AI Based Chat Tools
In today’s AI era Automated chat tools make human life easier in markets many useful tools are available for prompt replay. Some Basic Toop AI Chat GPT Tools are shown here. 1. Google Gemini Gemini is a family of multimodal large language models developed by Google DeepMind, serving as the successor to LaMDA and PaLM […]
How Employee Engagement Can Help Bolster Data Security
A company is nothing without its lifeblood: its workforce. Keeping your employees satisfied with their jobs increases employee engagement. Satisfied employees are more likely to work hard and invest in their company’s well-being. Data security is no longer just the responsibility of a company’s IT department. As the number of security breaches rises year […]
What is ChatGPT?
GPT (short for “Generative Pre-trained Transformer”) is a type of artificial intelligence model developed by OpenAI. It is a machine learning model that is trained to generate human-like text by predicting the next word in a sequence based on the context of the words that come before it. GPT can be used in a variety […]
So, What is C Programming and why should we learn it as a beginner on IT industries? C is a programming language developed at AT & T’s Bell Laboratories of USA in 1972 by Dennis Ritchie. it is a general-purpose programming language that is extremely popular, simple, and flexible to use. It is a structured […]
Top 5 free Website to learn Coding online.
Top 5 Free Websites to Learn Coding online. Learning how to code can change your life for good. It’s never been easier to teach yourself technical skills online and start a career as a developer. How can you find the best websites to learn coding from scratch as a beginner? How can you make sure […]
Write a C Program to count numbers of vowels and consonants?
Write a C Program to count numbers of vowels and consonants? In the C Program to count numbers of vowels and consonants, we should use string, switch case for, etc., conditional statements and loops. You can see here how we can write a c program to count numbers of vowels and consonants. The letters of […]
write a c program to To calculate factorial using while loop
/* C Program to calculate factorial using while loop */ Factorial of a whole number ‘n’ is defined as the product of that number with every whole number till 1. For example, the factorial of 4 is 4×3×2×1, which is equal to 24. It is represented using the symbol ‘!’ So, 24 is the value […]
Write a c program to Print the largest even and odd number from the list?
To print the largest even and odd number from the input 10 number, in C Program you have to write a code like this. /* Print the largest even and odd number from the list */ #include<stdio.h> #include<conio.h> void main() { int i, num, even=0, odd=0; printf(“\nEnter any ten numbers: “); for(i=0;i<10;i++) { scanf(“%d”,&num); if […]