Posts

virtual lab chemistry

 https://ee1-nitk.vlabs.ac.in/exp/determination-of-ph/index.html  https://inoc-amrt.vlabs.ac.in/exp/acid-base-titration/index.html  https://docs.google.com/forms/d/e/1FAIpQLSdxwWdAsGmd_sZRVFkaVTdf-KHQtWUsMbrC6_Q9TdQhFObEuQ/viewform

JAVA PROGRAMS

 2(c). JAVA program that demonstrates how to use StringBuffer to delete and remove characters. public class StringBufferExample {     public static void main(String[] args) {         // Create a StringBuffer object         StringBuffer sb = new StringBuffer("Hello, World!");         System.out.println("Original StringBuffer content: " + sb);         // Delete characters from index 5 to 7         sb.delete(5, 7);         System.out.println("After deleting characters from index 5 to 7: " + sb);         // Delete a character at index 5         sb.deleteCharAt(5);         System.out.println("After deleting character at index 5: " + sb);     } } This program: 1. Creates a StringBuffer object with the string "Hello, World!". 2. Prints the original content of the StringBuffer. 3. Uses the del...

IT Workshop

Image
Experiments

AI

 AI notes

DS LAB

DS lab programs
 DS NOTES

ds previous

Image