Knowledge in Loop

Java program for enhanced for loop

class EnhancedForLoop {   public static void main(String[] args) {     int primes[] = { 2, 3, 5, 7, 11, 13, 17, 19, 23, 29};     for (int t: primes) {       System.out.println(t);     }   } }

C++ and C Notes | 1st year | KIIT UNIVERSITY

Contains everything about c and c++ for 1st years. i.e. for 1st semester and 2nd semester.##NOTE FOR DOWNLOAD:: After downloading there maybe an error in opening pdf's. Go to the file location and rename the pdf and give the extension part i.e. ' .pdf ' .

BEE - loop analysis, nodal analysis, superposition theorem

These are notes with complete explanation of the loop analysis, nodal analysis and superposition theorem.

Decision making and loops

loop and decision making in c

Python Programming Language

Python is a programming language and this clip contains the basic required notes to increase an understanding of the subject. Also the notes cover almost every topic related to python, loops, basics , String methods e.t.c

Control Statements in java.

Control Statements in java.

Object and Classes (OOPS)

This article is about Objects and classes Through C and C++ of OOPS concept

C programming problem 15

This file contains a problem and its solution in C programming. It will help students to learn the basics of coding and programming in C. This file has problem statement to print numbers from n to 1 using do-while loop.