Home Authors Posts by Team MCK

Team MCK

C Program to Print Reverse Array

0
Problem Statement: Print array elements in reverse order /*C program to print array in reverse order*/ #include <stdio.h> int main() { int n; printf("Enter...

Length of a Linked List

0
Problem Statement: Print the number or count of elements in the Linked List /*C code to create and print the Linked List*/ #include <stdio.h> #include <stdlib.h> typedef struct node { int...

Aptitude Simplification

0
Aptitude Simplification BODMAS Rule B = Bracket o = Of D = Divide M = Multiplication A = Addition S = Subtraction Simplification Formulas (a + b)2 = a2 + b2 + 2ab (a – b)2 = a2 +...

Reasoning

0
Verbal Reasoning Verbal reasoning is understanding and reasoning using concepts framed in words. It aims at evaluating the ability to think constructively, rather than at...

Number Series Set I

0
Number Series 1. 963, 927, 855, 747, 603, 423, ? (1) 209 (2) 208 (3) 207 (4) 206 (5) 205 Answer is (3) 2. 18, 20, 44, 138, 560,...

Average Set I

0
Average Set I 1. Average of the first 5 natural numbers is? a. 5 b. 4 c. 3 d. 2 The answer is (c) Sum of first 5 natural numbers= (1+2+3+4+5)=...

HTML Page with 6 Separate Lines in Different Sizes

0
<!DOCTYPE html> <html> <body> <h1>Line one</h1> <h2>Line two</h2> <h3>Line three</h3> <h4>Line four</h4> <h5>Line five</h5> <h6>Line six</h6> </body> </html> Output -   also see C Programming language Go Programming language Linked List Array Stack Queue Puzzle Reasoning Aptitude Simplification

HTML Page with 7 Separate Lines in Different Colors

0
<html>    <head><title>Color</title></head>      <body align="center">        <h1>7 separate lines in different colors</h1>        <p style="color:blue">Blue</p>        <p style="color:green">Green</p>        <p...

Structured Tags

0
An HTML document begins with a DOCTYPE declaration that declares the version of HTML to which the document belongs. The HTML element tag follows and...

Linked List Insertion Set 1

0
Adding a Node in Singly Linked List 1) at the Beginning 2) at the end 3) at a specific location Inserting a Node at the beginning of the...

Latest Post

Average Set I

Number Series Set II

Simple Interest set 1