b. tech.

How to Download and Install Java JDK

This Java Development Kit(JDK) allows you to code and run Java programs. It’s possible that you install multiple JDK versions on the same PC. But Its recommended that you install only latest version. Following are steps to install Java in Windows Step 1) Go to link. Click on Download JDK. For java latest version. Step […]

Pattern Space Pyramid Program in Java

Pattern Space Pyramid Program in Java

ASCII and Unicode

ASCII defines 128 characters, which map to the numbers 0–127. Unicode defines (less than) 221 characters, which, similarly, map to numbers 0–221 (though not all numbers are currently assigned, and some are reserved). Unicode is a superset of ASCII, and the numbers 0–127 have the same meaning in ASCII as they have in Unicode. For […]

Java Separators

In Java, there are a few characters that are used as separators. The most commonly used separator in Java is the semicolon. As you have seen, it is used to terminate statements. Symbol Name Purpose () Parentheses Used to contain lists of parameters in method definition and invocation.Also used for defining precedence in expressions, containing […]

Check whether a given word exists in a file or not Program in C

WAP to check whether a given word exists in a file or not. If yes then find the number of times it occurs.

Compare the contents of two files Program in C

WAP to compare the contents of two files and determine whether they are same or not.

Swap two elements using the concept of pointers Program in C

WAP to swap two elements using the concept of pointers.

Structure data type Program in C

Define a structure data type in C language

String Functions Program in C

WAP to implement strlen (), strcat (),strcpy () using the concept of Functions.

Sum of diagonal elements of a mxn matrix Program in C

WAP that finds the sum of diagonal elements of a mxn matrix.

1 2 3 10