yash sharma

Student at AMITY University

Skilled in HTML, CSS, Digital marketing, HTML, CSS, Digital marketing, HTML, CSS, Digital marketing, HTML, CSS, Digital marketing, HTML, CSS, Digital marketing, HTML, CSS, Digital marketing, HTML, CSS, Digital marketing, HTML, CSS, Digital marketing, HTML, CSS, Digital marketing

Certified in Google Digital Unlocked

HTML Computer Code Elements

HTML Computer Code Elements Computer Code x = 5; y = 6; z = x + y; Try it Yourself » ________________________________________ HTML For Keyboard Input The HTML element represents user input, like keyboard input or voice commands. Text surrounded by tags is typically displayed in a monospace font: Example Save the document by pressing Ctrl + S Result: Save the document by pressing Ctrl + S Try it Yourself »

HTML Basic

HTML Basic Examples Don't worry if these examples use tags you have not learned. You will learn about them in the next chapters. ________________________________________ HTML Documents All HTML documents must start with a document type declaration: . The HTML document itself begins with and ends with . The visible part of the HTML document is between and . Example My First Heading My first paragraph.

PL/SQL LAB MANNUAL

PL/SQL LAB MANNUAL EXERCISE 1 Write a PL/SQL code to create an employee database with the tables and fields specified as below.

Reema Thareja Second Edition Data Structures Using C

Reema Thareja Second Edition Data Structures Using C Detailed Contents *Introduction to C *Introduction to Data Structures and Algorithms *Arrays *Strings *Linked Lists

What is Feasibility Study | Types of Feasibility Studies

What is Feasibility Study | Types of Feasibility Studies  What is Feasibility Study A feasibility study is a test of a system proposal according to its work ability impact on the organization, effective use of resources and ability to meet user needs. *Technical Feasibility *Operational feasibility *Economic feasibility

Software Project Management

Software Project Management Introduction Software Evolution How software changes… Corrective Changes Changes and Control

Strings and Outline

*Strings A string is a sequence of characters treated as a group We have already used some string literals: “filename” “output string” Strings are important in many programming contexts: names other objects (numbers, identifiers, etc.) Outline String Literals Referring to String Literals String Output

The Problem Solving Steps/process

The Problem Solving Steps/process Problem-solving consists of using generic or ad hoc methods, for finding solutions to problems. The term problem-solving is used in many disciplines, sometimes with different perspectives, and often with different terminologies. For instance, it is a mental process in psychology and a computerized process in computer science. In computer science Programming is a process of problem solving • Problem Definition. • Problem Analysis. • Generating possible Solutions. • Analyzing the Solutions. • Selecting the best Solution(s). • Planning the next course of action (Next Steps)

RISK MANAGEMENT IN SOFTWARE ENGINEERING

What is a risk? What is risk management ? What are the principles by which we can manage risks? How the Risk management is integrated in project management? How Risk management is implemented in small projects in a company? How can we control the risks in a project?

DATA MINING& DATA WAREHOUSING

DATA MINING& DATA WAREHOUSING What Is Data Mining? The key properties of data mining are Automatic discovery of patterns Prediction of likely outcomes Creation of actionable information Focus on large datasets and databases *The Scope of Data Mining *Tasks of Data Mining

Cache Memory In C

Cache Memory-- Cache memory, also called CPU memory, is random access memory (RAM) that a computer microprocessor can access more quickly than it can access regular RAM. This memory is typically integrated directly with the CPU chip or placed on a separate chip that has a separate bus interconnect with the CPU. *Cache memory levels explained

Introduction to Algorithm

Introduction to Algorithm algorithm? An algorithm is a step by step procedure to solve a problem. In normal language, algorithm is defined as a sequence of statements which are used to perform a task. In computer science, an algorithm can be defined as follows... Every algorithm must satisfy the following specifications... 1. Input - Every algorithm must take zero or more number of input values from external. 2. Output - Every algorithm must produce an output as result. 3. Definiteness - Every statement/instruction in an algorithm must be clear and unambiguous (only one interpretation) 4. Finiteness - For all different cases, the algorithm must produce result within a finite number of steps. 5. Effectiveness - Every instruction must be basic enough to be carried out and it also must be feasible. *Time Complexity