Thursday, March 28, 2024
Home Authors Posts by Team MCK

Team MCK

Letter Series Set I

0
1) AZ, GT, MN, _, YB, find the missing letters. 1) KF 2) RX 3) SH 4) TS Answer: (3) The first letter moves 6 steps forward. The second letter...

Go Language Introduction

0
Go Language Introduction
Go is an open-source, strongly-typed, compiled language invented to build concurrent and scalable software. Also to write lightweight microservices. Go was invented at Google...

Search an Element in a Linked List

0
Problem Statement: Search an element in a Linked List i) Iterative solution ii) Recursive solution Iterative Solution 1) Initialize temp node to head 2)  while temp is not NULL a)...

HTML Tables

0
HTML Tag <table> element to define a table <tr> element to define a table row <td> element to define a table data <th> element...

Displaying Images in HTML

0
To Insert an image in the webpage we can use the <IMG> tag. Attributes of IMG tag: SRC=URL i.e. Location of image ALT= Alternate Text if the...

DBMS Terminology

0
DDL stands for Data Definition Language, which works on database schemas and descriptions, of how the data should be stored in the database. CREATE:...

DBMS

0
What is Database? The database is a collection of related data which can be used to retrieve, insert and delete the data efficiently. Using the...

Queue using Linked List

0
Queue using Linked List A Queue is a data structure that stores the data elements in a sequential manner. It is also called FIFO( First In First Out) or LILO(Last In Last Out). In the queue, insertion...

C Program to Calculate the Average of Array Elements

0
Problem Statement: Calculate the average of array elements /*C program to print the average of array elements*/ #include &lt;stdio.h&gt; int main() { int n; ...

C Program to Calculate Sum of an Array

0
Problem Statement: Calculate the sum of the array elements /*C program to print the sum of array elements*/ #include <stdio.h> int main() { int n; ...

Latest Post