Skip to main content

Posts

privacy police

 Privacy Policy Last Updated: [13-08-2024] Welcome to C coding Your privacy is important to us. This Privacy Policy explains how we collect, use, disclose, and safeguard your information when you visit our website [yourblog.com]. Please read this policy carefully. If you do not agree with the terms of this privacy policy, please do not access the site. 1. Information We Collect Personal Data: We may collect personally identifiable information, such as your name, email address, and any other information you voluntarily provide to us when you subscribe to our newsletter, comment on posts, or contact us. Usage Data: We may collect information about your interactions with our website, such as your IP address, browser type, operating system, pages visited, and the dates/times of your visits. 2. How We Use Your Information We use the information we collect in the following ways: To operate and maintain our website. To improve your experience on our site. To send periodic emails, including ne
Recent posts

SQL IMPORTANT QURIES

 mysql> SHOW DATABASES; +----------+ | Database | +----------+ | mysql    | | test     | | tmp      | +----------+ The mysql database describes user access privileges. The test database often is available as a workspace for users to try things out. The list of databases displayed by the statement may be different on your machine; SHOW DATABASES does not show databases that you have no privileges for if you do not have the SHOW DATABASES privilege. See Section 13.7.7.14, “SHOW DATABASES Statement”. If the test database exists, try to access it: mysql> USE test Database changed USE, like QUIT, does not require a semicolon. (You can terminate such statements with a semicolon if you like; it does no harm.) The USE statement is special in another way, too: it must be given on a single line. You can use the test database (if you have access to it) for the examples that follow, but anything you create in that database can be removed by anyone else with access to it. For this reason, you

Fourer series formula

 Fourer series formula

DABASE MANAGEMENT SYSTEM QUESTIONS

 DABASE MANAGEMENT  SYSTEM SHORT QUESTIONS AND ANSWERS 1. What is database? A database is a logically coherent collection of data with some inherent meaning, representing some aspect of real world  and which is designed, built and populated with data for a specific purpose. 2. What is DBMS? It is a collection of programs that enables user to create and maintain a database. In other words it is general-purpose  software that provides the users with the processes of defining, constructing and manipulating the database for various  applications. 3. What is a Database system? The database and DBMS software together is called as Database system. 4. What are the advantages of DBMS? 1. Redundancy is controlled.  2. Unauthorised access is restricted.  3. Providing multiple user interfaces.  4. Enforcing integrity constraints.  5. Providing backup and recovery.  5. What are the disadvantage in File Processing System? 1. Data redundancy and inconsistency.  2. Difficult in accessing data. 3. Data

Chatgpt

 What is Chat GPT And How Can You Use It? Chat GPT is a large language model chatbot developed by Open AI based on GPT-3.5 . It has a remarkable ability to interact in conversational dialogue form and provide responses that can appear surprisingly human . Large language models perform the task of predicting the next word in a series of words . Reinforcement Learning with Human Feedback (RLHF) is an additional layer of training that uses human feedback to help Chat GPT learn the ability to follow directions and generate responses that are satisfactory to humans. Who Built Chat GPT? Chat GPT was created by San Francisco-based artificial intelligence company Open AI . Open AI Inc. is the non-profit parent company of the for-profit Open AI LP .Open AI is famous for its well-known DALL·E, a deep-learning model that generates images from text instructions called prompts .The CEO is Sam Altman, who previously was president of Y Combinator.

C programming Viva questions

1. Which type of language is C ?   Ans- C is a high level language and general-purpose structured programming language. 2. what is  a compiler ? Ans- Compiler is the software that transfer program developed in a high-level language into executable object code. 3. What is an algorithm ? Ans- The approach and method that used to solve the problem is called an algorithm.  4. What is a token and types of c tokens ?  Ans - The smallest individual units are known as C tokens . C has six types of tokens : Keyword, constants , Identifier , Strings , Operators and Special symbols. 5. How many keywords in c ? Ans- There are 32 keywords in the c language. 6. what is an identifier ? Ans- Identifiers are user define name given to variables , Functions and arrays. 7. what are the datatypes present in c ? Ans-   C language supports 2 different type of data types: 1.Primary data types : These are fundamental data types in C namely integer( int ), floating point( float ), character( char ) and void