Java Full stack Training Institutes in Hyderabad |Programming Concepts

Pubblicato il: 13 settembre 2022
sul canale di: Full Stack Java Developer Training
66
1

Full Stack Java
---------------
Core Java / Java SE = Standard Edition = used to develop standalone/desktop applications
Web Technologies / UI Design
HTML
CSS
JavaScript
TypeScript
XML
JSON
Angular
Advance Java / Java EE = Enterprise Edition = used to develop web applications
Frameworks
Hibernate Framework
Web Services
Spring Framework
Spring Core/Bean Module
Spring DAO Module
Spring JDBC
Spring ORM (Hibernate)
Spring Data
Spring MVC Module
Spring Boot Module
Spring REST Module
Micro services
Real time tools

Duration : 55 hours
Time : Mon to Fri @7PM (IST) - 1 hour

Programming Concepts
--------------------
Program
-------
A program is a set of instructions given to a computer to perform a task

Comments
--------
Comments are used to document a program and ignored by the programming language

Types of comments
-----------------
Single Line Comment (//)
Multiline comment (/* ... */)

Ex:
//to find area of a rectangle

Ex:
/*
to find gross salary and
net salary of an
employee
*/

Keyword
-------
A keyword is a reserved word whose meaning is known to the programming language
directly

Ex:
class, if, while, do, for, break, continue, public, private etc

Variable
--------
A variable is an identifier which allocates some memory space

Ex:
rollNum
student_Name
netSalary
customer_Address

Datatype
--------
Type of data the variable holds is called as data type

Ex:
int, char, float, String

Declaration of variable
-----------------------
In order to allocate memory space for variable we need to declare the variable

syntax (rules of a language)
------
datatype var1, var2, ..., varn;

Ex:
int a,b;
float f;

Function/Method
---------------
A function is a sub program which is used to do a specific task

syntax
------
Return_Type method_name(arguments)
{
st-1;
st-2;
...
st-n;
return ...;
}


Ex:
//Defining the method
int areaRect(int length, int breadth) //arguments or parameters
{
int area;
area = length * breadth;
return area;
}

//Calling the method
int area = areaRect(10,5);
print(area);//50


void areaRect(int length, int breadth) //arguments or parameters
{
int area;
area = length * breadth;
print(area);
}

void = means no return type


In questa pagina del sito puoi guardare il video online Java Full stack Training Institutes in Hyderabad |Programming Concepts della durata di ore minuti seconda in buona qualità , che l'utente ha caricato Full Stack Java Developer Training 13 settembre 2022, condividi il link con amici e conoscenti, su youtube questo video è già stato visto 66 volte e gli è piaciuto 1 spettatori. Buona visione!