Computer Programming Languages

how to connect php with mysql in xampp

Here is the code and steps in the video you can refer the solution for your problem on how to connect php with mysql using Xampp Server. We use phpMyAdmin as a database administrative tool to sync with mysql and php which bridge connection between web client and server. What is Xampp? Xampp is an …

how to connect php with mysql in xampp Read More »

bscit syllabus

Bsc IT Syllabus Mumbai University 2021-22

As per the Mumbai University syllabus update for Bsc IT has been jotted below. The new syllabus is aimed to achieve the objectives of the student’s perspective. The BSc IT Syllabus Mumbai University 2021-22 syllabus spanning three years covers the industry relevant courses . The syllabus for College Academic Students pursuing B.Sc Information Technology Course under the affiliation …

Bsc IT Syllabus Mumbai University 2021-22 Read More »

practical important questions for java

Practical Important Programs Questions Java

Important Programs Questions for java that to be done for Practical exams for  academics of B.Sc Computer Science and B.Sc.IT students University Exams. Below is some important practical java programming questions for particular University Exams. Q1. Write a Java Program to display a welcome Message? Q2. Write a Java Program to add two numbers and …

Practical Important Programs Questions Java Read More »

C Programming Basics Notes for Beginners

C Programming Basics Notes for beginners C Programming Basics What is C Language ? C is a general purpose programming language and it was developed by Dennis Ritchie in 1972. These Programs are simply set of instructions given by a programmer to the computer in high level language. The program execution process consists of two steps …

C Programming Basics Notes for Beginners Read More »

Basics of Java

Java is a platform independent programming language developed in 1991 named as OAK. Then later standarized as java in 1995. It follows oops..Features of Java Simple Object-Oriented Programming Language Robust Platform-Independent Secure Multi-threading Portable Architectural Neutral High Performance Distributed Multi-Tasking Interpreted Dynamic Java applications are typically compiled to convert bytecode to classcode with help of Java …

Basics of Java Read More »

C Language Practical Programs For Beginners

Important practical programs for C Language C language practical programs for beginners. 1. C Program To Find a Factorial of a number  #include<stdio.h> int main()     {     int i,fact=1,number;     printf(“Enter a number: “);     scanf(“%d”,&number);     for(i=1;i<=number;i++) {     fact=fact*i;     } printf(“Factorial of %d is: %d”,number,fact);     return 0;   }  Output: Enter a number: 5 Factorial of 5 is: 120 2. C Program To Find a Factorial of a …

C Language Practical Programs For Beginners Read More »