Java Hyd Team
Will update you with one more amazing analysis freelancing job that can pay nearly 300-1200 per hour let me explore it's ethical or not then will update you
I didn't explored more will update in 2-3 day's
Course outline
Data Structures
1. To teach efficient storage mechanisms of data for an easy access.
2. To design and implementation of various basic and advanced data structures.
3. To introduce various techniques for representation of the data in the real world.
4. To develop application using data structures.
5. To teach the concept of protection and management of data.
6. To improve the efficiency of algorithm by using suitable data structure.
Profile photo
Dr. J. Indumathi, Professor
Anna University, Chennai
She has a teaching and research experience for more than three decades; her interdisciplinary, expertise is outstanding, spanning diverse subject areas including the latest cutting-edge technologies. She has a zeal for investigation, research and has innovated and improvised expansively projects which have made a mile stone in the perfection of life style of the human kind. Being a privacy researcher and activist, she has received many awards and accolades from the various organizations, varsities and institutions quantifying to more than 65 awards. She has published more than 200 scientific papers published in reputed publications, 4 granted patents and authored 7 books. Most of her journal publications are indexed in Scopus and Web of Science. She has delivered several technical invited talks, keynote/plenary speeches and has chaired several sessions in conferences worldwide. She is a good integrator, multitasker, and possessing exceptional leadership capability, with proven strength, more visible in the areas of technical expertise, professional expertise, and strategic perspective. She has created an atmosphere of continual improvement and have done everything possible to achieve the goals; get others to go yonder what they initially thought impossible; energize others to take on perplexing goals.
COURSE TYPE
Core
COURSE LEVEL
Undergraduate/Postgraduate
COURSE LAYOUT
Week 1
Introduction to List
Array and Linked List - Stack Implementation using array and linked list - Applications of Stack
Week 2
Queue Implementation - Application of Queues
Trees and Terminologies - Tree Traversals
Week 3
In order Traversal-Binary Search Tree - Implementation of Search Algorithm
Week 4
AVL Tree Insertion, Deletion
Week 5
Graph representation, Shortest Path Algorithm
Week 6
Sorting, Heap Techniques, Hashing
Week 7
Sorting Algorithms, Divide and Conquer algorithms
Selection Sort, Brute force sort, Bubble Sort
Week 8
Insertion Sort, Quick sort applications
Prim's Algorithm, Kruskal's Algorithm
Week 9
Bucket Sorting, Radix Sort, Merge Sort
Week 10
Directories and Contiguous allocation, File maintenance
Week 11
External Sorting, Cascade Merge Sort
Week 12
B + Tree maintenance and efficiency, Construction of B-tree, B+tree insertion and deletion
Data Structures
1. To teach efficient storage mechanisms of data for an easy access.
2. To design and implementation of various basic and advanced data structures.
3. To introduce various techniques for representation of the data in the real world.
4. To develop application using data structures.
5. To teach the concept of protection and management of data.
6. To improve the efficiency of algorithm by using suitable data structure.
Profile photo
Dr. J. Indumathi, Professor
Anna University, Chennai
She has a teaching and research experience for more than three decades; her interdisciplinary, expertise is outstanding, spanning diverse subject areas including the latest cutting-edge technologies. She has a zeal for investigation, research and has innovated and improvised expansively projects which have made a mile stone in the perfection of life style of the human kind. Being a privacy researcher and activist, she has received many awards and accolades from the various organizations, varsities and institutions quantifying to more than 65 awards. She has published more than 200 scientific papers published in reputed publications, 4 granted patents and authored 7 books. Most of her journal publications are indexed in Scopus and Web of Science. She has delivered several technical invited talks, keynote/plenary speeches and has chaired several sessions in conferences worldwide. She is a good integrator, multitasker, and possessing exceptional leadership capability, with proven strength, more visible in the areas of technical expertise, professional expertise, and strategic perspective. She has created an atmosphere of continual improvement and have done everything possible to achieve the goals; get others to go yonder what they initially thought impossible; energize others to take on perplexing goals.
COURSE TYPE
Core
COURSE LEVEL
Undergraduate/Postgraduate
COURSE LAYOUT
Week 1
Introduction to List
Array and Linked List - Stack Implementation using array and linked list - Applications of Stack
Week 2
Queue Implementation - Application of Queues
Trees and Terminologies - Tree Traversals
Week 3
In order Traversal-Binary Search Tree - Implementation of Search Algorithm
Week 4
AVL Tree Insertion, Deletion
Week 5
Graph representation, Shortest Path Algorithm
Week 6
Sorting, Heap Techniques, Hashing
Week 7
Sorting Algorithms, Divide and Conquer algorithms
Selection Sort, Brute force sort, Bubble Sort
Week 8
Insertion Sort, Quick sort applications
Prim's Algorithm, Kruskal's Algorithm
Week 9
Bucket Sorting, Radix Sort, Merge Sort
Week 10
Directories and Contiguous allocation, File maintenance
Week 11
External Sorting, Cascade Merge Sort
Week 12
B + Tree maintenance and efficiency, Construction of B-tree, B+tree insertion and deletion
Course Status : Upcoming
Course Type : Core
Duration : 12 weeks
Start Date : 23 Jan 2023
End Date : 30 Apr 2023
Exam Date : 15 May 2023 IST
Enrollment Ends : 28 Feb 2023
Category :
Computer Science and Engineering
Credit Points : 4
Level : Undergraduate/Postgraduate
Course Type : Core
Duration : 12 weeks
Start Date : 23 Jan 2023
End Date : 30 Apr 2023
Exam Date : 15 May 2023 IST
Enrollment Ends : 28 Feb 2023
Category :
Computer Science and Engineering
Credit Points : 4
Level : Undergraduate/Postgraduate
𝗪𝗵𝗮𝘁 𝗶𝘀 𝗖𝗿𝗼𝘀𝘀-𝗢𝗿𝗶𝗴𝗶𝗻 𝗥𝗲𝘀𝗼𝘂𝗿𝗰𝗲 𝗦𝗵𝗮𝗿𝗶𝗻𝗴 (𝗖𝗢𝗥𝗦)?
Browsers use CORS, a method, to prevent websites from requesting data from different URLs. A request from a browser includes an origin header in the request message. The browser allows it if it gets to the server of the exact origin; if not, the browser blocks it.
We can deal with CORS issues on the backend. Cross-origin requests require that the values for origin and 𝗔𝗰𝗰𝗲𝘀𝘀-𝗖𝗼𝗻𝘁𝗿𝗼𝗹-𝗔𝗹𝗹𝗼𝘄-𝗢𝗿𝗶𝗴𝗶𝗻 in the response headers match and it is set by the server. When you add an origin to the backend code, the CORS middleware only permits this URL to communicate with other origins and utilize it for cross-origin resource requests.
There are two ways to fix CORS issues:
𝟭. 𝗖𝗼𝗻𝗳𝗶𝗴𝘂𝗿𝗲 𝘁𝗵𝗲 𝗕𝗮𝗰𝗸𝗲𝗻𝗱 𝘁𝗼 𝗔𝗹𝗹𝗼𝘄 𝗖𝗢𝗥𝗦
Server can let all domains with 𝗔𝗰𝗰𝗲𝘀𝘀-𝗖𝗼𝗻𝘁𝗿𝗼𝗹-𝗔𝗹𝗹𝗼𝘄-𝗢𝗿𝗶𝗴𝗶𝗻: *. This actually turns off same-origin policy, which is not recommended. Another option would be only to allow particular domain, which is better option, e.g., 𝗔𝗰𝗰𝗲𝘀𝘀-𝗖𝗼𝗻𝘁𝗿𝗼𝗹-𝗔𝗹𝗹𝗼𝘄-𝗢𝗿𝗶𝗴𝗶𝗻: 𝗵𝘁𝘁𝗽𝘀://𝘀𝗼𝗺𝗲𝗱𝗼𝗺𝗮𝗶𝗻.𝗰𝗼𝗺.
𝟮. 𝗨𝘀𝗲 𝗮 𝗣𝗿𝗼𝘅𝘆 𝗦𝗲𝗿𝘃𝗲𝗿
We can use a proxy server to call external API. It acts as a middleware between client and the server. If server doesn't return proper headers defined by CORS, we can add then in the proxy.
#softwareengineering #programming #api #apidesign
Browsers use CORS, a method, to prevent websites from requesting data from different URLs. A request from a browser includes an origin header in the request message. The browser allows it if it gets to the server of the exact origin; if not, the browser blocks it.
We can deal with CORS issues on the backend. Cross-origin requests require that the values for origin and 𝗔𝗰𝗰𝗲𝘀𝘀-𝗖𝗼𝗻𝘁𝗿𝗼𝗹-𝗔𝗹𝗹𝗼𝘄-𝗢𝗿𝗶𝗴𝗶𝗻 in the response headers match and it is set by the server. When you add an origin to the backend code, the CORS middleware only permits this URL to communicate with other origins and utilize it for cross-origin resource requests.
There are two ways to fix CORS issues:
𝟭. 𝗖𝗼𝗻𝗳𝗶𝗴𝘂𝗿𝗲 𝘁𝗵𝗲 𝗕𝗮𝗰𝗸𝗲𝗻𝗱 𝘁𝗼 𝗔𝗹𝗹𝗼𝘄 𝗖𝗢𝗥𝗦
Server can let all domains with 𝗔𝗰𝗰𝗲𝘀𝘀-𝗖𝗼𝗻𝘁𝗿𝗼𝗹-𝗔𝗹𝗹𝗼𝘄-𝗢𝗿𝗶𝗴𝗶𝗻: *. This actually turns off same-origin policy, which is not recommended. Another option would be only to allow particular domain, which is better option, e.g., 𝗔𝗰𝗰𝗲𝘀𝘀-𝗖𝗼𝗻𝘁𝗿𝗼𝗹-𝗔𝗹𝗹𝗼𝘄-𝗢𝗿𝗶𝗴𝗶𝗻: 𝗵𝘁𝘁𝗽𝘀://𝘀𝗼𝗺𝗲𝗱𝗼𝗺𝗮𝗶𝗻.𝗰𝗼𝗺.
𝟮. 𝗨𝘀𝗲 𝗮 𝗣𝗿𝗼𝘅𝘆 𝗦𝗲𝗿𝘃𝗲𝗿
We can use a proxy server to call external API. It acts as a middleware between client and the server. If server doesn't return proper headers defined by CORS, we can add then in the proxy.
#softwareengineering #programming #api #apidesign
Forwarded from Aman Raj
Elements :- it is a javascript object
it is used in the document that are represented Html tags <p> , <div> <span>
attributes :- properties of elements which can be manipulated or accessed ex:- id class style or src
span tag:- inline container
used to markup text , documents
manipulation of css with the help of javascript
outline css :-it is used to create line around html elements
syntax :- element {outline :<outline-style><outline-width><outline-color>;}
div {outline :solid 10px #000000;}
inline css:- style attributes of html elements
used to apply unique styling to a single elements
it is used to directly define within the start tag
example :- <p style ="color:red; font-size :10px ;width:20px"> This is a paragraph </p>
Html tags :- define the structure & content of web-page
<html>
<head>
<title> My webpage </title>
</head>
<body>
<h1> welcome to my webpage </h1>
<p> welcome to my webpage </p>
<ul>
<li> first item </li>
<li> Second item </li>
</ul>
<a href ="http://www.example.com">Link to another page </a>
</body>
</html>
selectors in css ?
used to select html elements that you want to style
or you can say patterns used to identify the elements you want to style
id selctors :- can be used only on tags defined with id attributes
class selectors :- can be used only on tags defined with class attributes
universal selectors :- can be used on all elements on the defined page
this keyword in javascript?
refer the object it belongs to
it can be used inside the function
it can be used to access the objects properties and methods
let and var keyword difference
var is function scoped (this means var can be accessed outside the block it is declared in )VARIABLE HOISTING
let is block scoped ( this means let can be accessed inside the block it is decalred in ) NOT ALLOWED VARIABLE HOISTING
Components :- it is a building block of react application
these are reusable piece of code that can be composed to create complex user interface
for-of :- looping construct used to iterate over an iterable object
such as array , string , set
var String =
for(const letter of string){
console.log(letter);
}
for-each :- looping construct used to iterate over an collection of object
it is used to iterate on each collection
example:- var array =[1,2,3,4,5];
array.forEach(function(item){
console.log(item);
}
forms in html is used to take input from user
it consists of checkbox , radio buttons or select buttons
action
method
target response coming from server will be displayed
enctype type of encoding used to submit the form data
autocomplete whether or not form data will be saved by browser or not
novalidate whether or not form data will be validated by browser or not
accept-charset it will specify the character encoding used to submit form data
DOM :- it is a library
it gives specific methods
it is the entry point for working with dom in react
it reduces the amount of time used to render for a page
when we want to switch from one statement or to break the loop or label the statement
example for(let i = 0; i<100;i++){
if (i===5){
break;}
console.log(i)}
// output : 0,1,2,3,4
it is used in the document that are represented Html tags <p> , <div> <span>
attributes :- properties of elements which can be manipulated or accessed ex:- id class style or src
span tag:- inline container
used to markup text , documents
manipulation of css with the help of javascript
outline css :-it is used to create line around html elements
syntax :- element {outline :<outline-style><outline-width><outline-color>;}
div {outline :solid 10px #000000;}
inline css:- style attributes of html elements
used to apply unique styling to a single elements
it is used to directly define within the start tag
example :- <p style ="color:red; font-size :10px ;width:20px"> This is a paragraph </p>
Html tags :- define the structure & content of web-page
<html>
<head>
<title> My webpage </title>
</head>
<body>
<h1> welcome to my webpage </h1>
<p> welcome to my webpage </p>
<ul>
<li> first item </li>
<li> Second item </li>
</ul>
<a href ="http://www.example.com">Link to another page </a>
</body>
</html>
selectors in css ?
used to select html elements that you want to style
or you can say patterns used to identify the elements you want to style
id selctors :- can be used only on tags defined with id attributes
class selectors :- can be used only on tags defined with class attributes
universal selectors :- can be used on all elements on the defined page
this keyword in javascript?
refer the object it belongs to
it can be used inside the function
it can be used to access the objects properties and methods
let and var keyword difference
var is function scoped (this means var can be accessed outside the block it is declared in )VARIABLE HOISTING
let is block scoped ( this means let can be accessed inside the block it is decalred in ) NOT ALLOWED VARIABLE HOISTING
Components :- it is a building block of react application
these are reusable piece of code that can be composed to create complex user interface
for-of :- looping construct used to iterate over an iterable object
such as array , string , set
var String =
hello; for(const letter of string){
console.log(letter);
}
for-each :- looping construct used to iterate over an collection of object
it is used to iterate on each collection
example:- var array =[1,2,3,4,5];
array.forEach(function(item){
console.log(item);
}
forms in html is used to take input from user
it consists of checkbox , radio buttons or select buttons
action
method
target response coming from server will be displayed
enctype type of encoding used to submit the form data
autocomplete whether or not form data will be saved by browser or not
novalidate whether or not form data will be validated by browser or not
accept-charset it will specify the character encoding used to submit form data
DOM :- it is a library
it gives specific methods
it is the entry point for working with dom in react
it reduces the amount of time used to render for a page
when we want to switch from one statement or to break the loop or label the statement
example for(let i = 0; i<100;i++){
if (i===5){
break;}
console.log(i)}
// output : 0,1,2,3,4
👍1