Sunday, 21 September 2025

VB Database Connectivity

 Dim con As ADODB.Connection

Dim rs As ADODB.Recordset


Set con = New ADODB.Connection

con.Open ("Provider=Microsoft.Jet.OLEDB.4.0;Data Source="& App.Path &amp 

&";\database\tax.mdb;Persist Security Info=False")


con.Execute (;insert into newuser values(&

Thursday, 4 September 2025

Slide - CSS

  <html>

<head>

<style>

/* Slideshow container */

.slideshow-container {

  max-width: 1000px;

  position: relative;

  margin: auto;

 }


/* Caption text */

.text {

  color: #f2f2f2;

  font-size: 15px;

  padding: 8px 12px;

  position: absolute;

  bottom: 8px;

  width: 100%;

  text-align: center;

}


/* Number text (1/3 etc) */

.numbertext {

  color: #f2f2f2;

  font-size: 12px;

  padding: 8px 12px;

  position: absolute;

  top: 0;

}


/* The dots/bullets/indicators */

.dot {

  height: 15px;

  width: 15px;

  margin: 0 2px;

  background-color: #bbb;

  border-radius: 50%;

  display: inline-block;

  transition: background-color 0.6s ease;

}

.active {

  background-color: #717171;

}


/* Fading animation */

.fade {

  -webkit-animation-name: fade;

  -webkit-animation-duration: 1.5s;

  animation-name: fade;

  animation-duration: 1.5s;

}


@-webkit-keyframes fade {

  from {opacity: .4} 

  to {opacity: 1}

}


@keyframes fade {

  from {opacity: .4} 

  to {opacity: 1}

}


/* On smaller screens, decrease text size */

@media only screen and (max-width: 300px) {

  .text {font-size: 11px}

}



</style>

</head>

<body>

<div id="slide1">

<div class="slideshow-container">


<div class="mySlides fade">

  <div class="numbertext">1 / 4</div>

  <img src="1.jpg"height="50%" width="90%">

  <div class="text">Texcity Arts and Science College</div>

</div>


<div class="mySlides fade">

  <div class="numbertext">2 / 4</div>

  <img src="2.jpg"height="50%" style="width:90%">

  <div class="text">Texcity Arts and Science College</div>

</div>


<div class="mySlides fade">

  <div class="numbertext">3 / 4</div>

  <img src="3.jpg" height="50%" style="width:90%">

  <div class="text">Texcity Arts and Science College</div>

</div>


<div class="mySlides fade">

  <div class="numbertext">4 / 4</div>

  <img src="4.jpg" height="50%" style="width:90%">

  <div class="text">Texcity Arts and Science College</div>

</div>

<br>

<div style="text-align:center">

  <span class="dot"></span> 

  <span class="dot"></span> 

  <span class="dot"></span> 

  <span class="dot"></span> 

</div>


</div>

</div>

<script>

var slideIndex = 0;

showSlides();


function showSlides() {

  var i;

  var slides = document.getElementsByClassName("mySlides");

  var dots = document.getElementsByClassName("dot");

  for (i = 0; i < slides.length; i++) {

    slides[i].style.display = "none";  

  }

  slideIndex++;

  if (slideIndex > slides.length) {slideIndex = 1}    

  for (i = 0; i < dots.length; i++) {

    dots[i].className = dots[i].className.replace(" active", "");

  }

  slides[slideIndex-1].style.display = "block";  

  dots[slideIndex-1].className += " active";

  setTimeout(showSlides, 2000); // Change image every 2 seconds

}

</script>

</body>

</html>


Sunday, 31 August 2025

Python - Assignment

 Python Assignment

----------------

1. What are the features and applications of Python? Explain

2. How to execute, Editing & save Python?

3. Define variable. How do you declare a variable in Python? Explain with examples

4. Explain input and output function & datatypes in Python? 

5. Explain Sys, math, time, dir & help functions

6. Explain Bitwise, Assignment, Membership and Identity Operators in Python

7. Explain if statements, for loop & while loop statements with example

8. Difference between break and continue

9. Explain Python Build in function & User defined function and types & scope of variable.

10. Write a Program to find factorial value using recursive function

11. Explain lambda & standard modules

12. a. RegEx, b. Simple Character matching, c. Special Characters or special Sequences

    d. Python quantifiers or meta characters, e. Character Classes, f. Match Objects

    g. Substituting (using sub()) & Splitting a string(using split()),h. Compiling regular expressio

13. Explain Exception(Error) Handling & Types with examples

14. Python File Handling & functions with examples

15. Python List,Tuples,Strings,Dictionaries & Set

16. OOP’s Concepts

     a. Features & applications of oops

     b. Concept of oops

     c. Class, object & Methods

     d. Constructor & Destructor

     e. Polymorphism

     f. Inheritance

Linux - Assignment

 1). Linux features,Uses,Applications & Linux Distrbutions(Distro)

2). Linux Architecture

3). Substitution Command, File Mask & Root in Linux

4). Linux files and directory commands 

5). Define Variable and Types of variable(Shell Variable & Environment Variable(System variable)), Rules for naming a variable

6). Explain Vi editor & Vi commands (mode of vi editor) & Different Access mode codes

7). Conditional statements (or) branching Statement

  1. if statements

     a. simple if

     b. simple if else

     c. elif ladder

     d. Nested if

  2. case..esac statements

  3. Looping statements

    a. for loop

    b. while loop

    c. until loop

  4.difference between break and continue

-----------------------------

8). Explain File listing commands & wc commands 

9). Explain Filter commands

10). Explain tee commands & Redirection commands & Pipes commands

11). Palindrome checking program

12). sum of the individual digits

13). factorial calculation program


C++ - Assignment

 Assignment Topic(submit before Nodue form) ***

------------------------------------------------------

1. Difference between C and C++

2. Features and Application of C++

3. Define Variable & Rules for naming a variable

4. General Structure of C++ Program with Example

5.Conditional statements (or) branching Statement

  1. if statements or Decision Making Statement

     a. simple if

     b. simple if else

     c. else if ladder

     d. Nested if

  2. switch statements

  3. Looping statements

     a. for loop - (Entry Control Loop)

     b. while loop - (Entry Control Loop)

     c. do while loop - (Exit Control Loop)

  4. Difference between break and continue

-----------------

OOP's

-------

1. Features, Applications & concept of Object Oriented Programming (OOP's)

2. General structure of Class in C++ with example Program

3. C++ Program to Fibonacci Series using class

4. Arrays & string function using C++(Palindrome checking)

5. Constructor & Destructor

6. Function Overloading & Operator Overloading(unary & binary)--(compiletime Polymorphism or early binding)

7. Inline function, this pointer, Scope Resolution Operator(::)

8. friend function with example

9. static variable & static function

10. Inheritance

       a. Single Inheritance

       b. Multiple Inheritance

       c. Multilevel Inheritance

       d. Hierarchical Inheritance

       e. Hybrid Inheritance 

11. virtual base class & virtual function(pure virtual function or abstract class) ---(Runtime Polymorphism or late binding)

12. NEW and DELETE Operations

13. Detailed about filestream classes


C - Assignment

 C Assignment

------------

1. Briefly explain about classification of computers.

2. Explain about the Generations of computers in briefly.  

3. Write about different types of software with example.

4. Components of computer & Differentiate RAM and ROM. 

5. Short notes on C(introduction,features & Applications)

6. Structure of C program with example Programs

7. C Header files, input and output functions

8. What do you mean by variables? How to declare variables in C?Rules for naming a variable

9. C Character set & Escape sequences,Format specifiers

10.C Tokens(Identifier,Keywords,Constant,Operators & separators)

11. Explain about the precedence(Hierarchy) & associativity of arithmetic operators in briefly. 

12. With an example, Briefly explain if and if else statements. 

13. Write down the importance of Switch statement

14. Explain for loop statement

15. difference between break and continue

16. difference between while and do while

17. What are functions? How are they defined and called in C?

18. How to pass pointers to a function in C with an example. 

19. Discuss on the concept of Recursion with suitable example. 

20. What is structure? Differentiate between Structures and Unions with examples.

21. What are pointers? When and why they are used?with examples

22. What are strings? When and why they are used?with examples(string handling function) 

23. File Concept in C 

24. Write a simple program to do the read and write operations of the file with example

25. Define Arrays & Types of arrays,How to Initialize an array? Give an example.


Programs

--------

1. Write a Program in C to generate Fibonacci sequence of given number.

2. Check Prime or not prime

3. Write a Program in C to find the factorial of given number using recursion

4. biggest in three numbers

5. find leap year or not leap year

6. find even or odd number

7. C Program To Arrange Numbers in Ascending Order(sort numbers)

8. check Palindrome or not palindrome

JAVA - Assignment

 JAVA Assignment

---------------

1. Short notes on Java(introduction,features & Applications) and WWW

2. Structure of java program with example Programs

3. Explain briefly about Java virtual machine and its architecture,JDK & API.

4. difference between c,c++ & Java

5. What is a variable? How do you declare variables in Java?Rules for naming a variable

6. Explain Java Tokens(Identifier,Keywords,Constant,Operators & Separators)

7. Explain else if ladder & switch statements with example programs

8. difference between break and continue

9. difference between while and do while

10. Discuss how to declare and create arrays & types with example. 

11. Create a program for searching a string from an array

12. Difference between String and StringBuffer


OOP'S

----

1. Briefly explain about the key elements of Object Oriented Programming & Applications. 

2. Discuss in detail about object class and its methods in Java with suitable example. 

3. Explain constructor & this operators

4. differnce between method overloading and overriding

5. Short notes on interface & static,final keyword,abstract keyword

6. Short notes on inheritance

7. Explain thread concepts(multithreading)-Life cycle & methods ***

8. Elucidate checked and unchecked exception in detail(Exception Handling)  ***

9. Explain Applet,Life cycle of applet,graphics methods ***

10. What is a stream? How is the concept of streams used in Java?

    1) Byte Stream 2) Character Stream. 

   (File Input Stream,File Output Stream, File Writer,File Reader,Random Access File)

11. Write a Java program to illustrate Mouse Events.

-----------------------------


VB Database Connectivity

 Dim con As ADODB.Connection Dim rs As ADODB.Recordset Set con = New ADODB.Connection con.Open ("Provider=Microsoft.Jet.OLEDB.4.0;Data ...