09 OCI Data Science Professional
1:01:29
16 сағат бұрын
08 OCI Data Science Professional
1:20:07
16 сағат бұрын
07 OCI Data Science Professional
1:34:59
06 OCI Data Science Professional
1:37:37
03 OCI Data Science Professional
1:51:05
05 OCI Data Science Professional
14:16
04 OCI Data Science Professional
12:12
02 OCI Data Science Professional
29:36
01 OCI Data Science Professional
6:52
16 OIC App Integration
11:01
21 күн бұрын
Пікірлер
@SaraGerritt-u6p
@SaraGerritt-u6p Сағат бұрын
Great analysis, thank you! I need some advice: I have a SafePal wallet with USDT, and I have the seed phrase. (alarm fetch churn bridge exercise tape speak race clerk couch crater letter). Could you explain how to move them to Binance?
@Loraschafer-i5v
@Loraschafer-i5v 20 сағат бұрын
Great content, as always! Just a quick off-topic question: I have a SafePal wallet with USDT, and I have the seed phrase. (alarm fetch churn bridge exercise tape speak race clerk couch crater letter). How should I go about transferring them to Binance?
@shamstabrez2986
@shamstabrez2986 7 күн бұрын
BLKL SAHI H AJ HI SARA VIDEOS DALDO IS SERIES KA AUR AGAR OPENSTACK OPENSHIFT IN SABKA B CONTENT HO TOH WOH B UPLOAD KARO
@riteshpatel2455
@riteshpatel2455 21 күн бұрын
Nice content Please upload the next part
@shamstabrez2986
@shamstabrez2986 Ай бұрын
Do upload updated nodjes series entire playlist
@heheth1
@heheth1 Ай бұрын
Next video about oracle apex workflow please
@UJALAPANDEY-u6p
@UJALAPANDEY-u6p Ай бұрын
One of the best contents for Azure
@bodiothierrymathurinkegba5255
@bodiothierrymathurinkegba5255 Ай бұрын
Thanks so much ❤
@heheth1
@heheth1 Ай бұрын
Can you upload next video about oracle apex workflow?
@NicolaHartman-e6p
@NicolaHartman-e6p Ай бұрын
Martinez Maria Lee Donna Lopez Timothy
@heheth1
@heheth1 Ай бұрын
Next video pls
@QuadrerExtraminecraft
@QuadrerExtraminecraft Ай бұрын
ok i will upload
@QuadrerExtraminecraft
@QuadrerExtraminecraft 2 ай бұрын
9. Define multipart form data? Multipart form data is one of the values of the enctype attribute. It is used to send the file data to the server-side for processing. The other valid values of the enctype attribute are text/plain and application/x-www-form-urlencoded. 10. Describe HTML layout structure. Every web page has different components to display the intended content and a specific UI. But still, there are few things which are templated and are globally accepted way to structure the web page, such as: <header>: Stores the starting information about the web page. <footer>: Represents the last section of the page. <nav>: The navigation menu of the HTML page. <article>: It is a set of information. <section>: It is used inside the article block to define the basic structure of a page. <aside>: Sidebar content of the page. 11. How to optimize website assets loading? To optimize website load time we need to optimize its asset loading and for that: CDN hosting - A CDN or content delivery network is geographically distributed servers to help reduce latency. File compression - This is a method that helps to reduce the size of an asset to reduce the data transfer File concatenation - This reduces the number of HTTP calls Minify scripts - This reduces the overall file size of js and CSS files Parallel downloads - Hosting assets in multiple subdomains can help to bypass the download limit of 6 assets per domain of all modern browsers. This can be configured but most general users never modify these settings. Lazy Loading - Instead of loading all the assets at once, the non-critical assets can be loaded on a need basis. 12. What are the various formatting tags in HTML? HTML has various formatting tags: <b> - makes text bold <i> - makes text italic <em> - makes text italic but with added semantics importance <big> - increases the font size of the text by one unit <small> - decreases the font size of the text by one unit <sub> - makes the text a subscript <sup> - makes the text a superscript <del> - displays as strike out text <strong> - marks the text as important <mark> - highlights the text <ins> - displays as added text
@QuadrerExtraminecraft
@QuadrerExtraminecraft 2 ай бұрын
2. What are tags and attributes in HTML? Tags are the primary component of the HTML that defines how the content will be structured/ formatted, whereas Attributes are used along with the HTML tags to define the characteristics of the element. For example, <p align=” center”>Interview questions</p>, in this the ‘align’ is the attribute using which we will align the paragraph to show in the center of the view. 3. What are void elements in HTML? HTML elements which do not have closing tags or do not need to be closed are Void elements. For Example <br />, <img />, <hr />, etc.
@QuadrerExtraminecraft
@QuadrerExtraminecraft 2 ай бұрын
What do you mean by Self Invoking Functions? Without being requested, a self-invoking expression is automatically invoked (initiated). If a function expression is followed by (), it will execute automatically. A function declaration cannot be invoked by itself. Normally, we declare a function and call it, however, anonymous functions may be used to run a function automatically when it is described and will not be called again. And there is no name for these kinds of functions. 15. Explain call(), apply() and, bind() methods. 1. call(): It’s a predefined method in javascript. This method invokes a method (function) by specifying the owner object. Example 1: function sayHello(){ return "Hello " + this.name; } var obj = {name: "Sandy"}; sayHello.call(obj); // Returns "Hello Sandy" call() method allows an object to use the method (function) of another object. Example 2: var person = { age: 23, getAge: function(){ return this.age; } } var person2 = {age: 54}; person.getAge.call(person2); // Returns 54 call() accepts arguments: function saySomething(message){ return this.name + " is " + message; } var person4 = {name: "John"}; saySomething.call(person4, "awesome"); // Returns "John is awesome" apply() The apply method is similar to the call() method. The only difference is that, call() method takes arguments separately whereas, apply() method takes arguments as an array. function saySomething(message){ return this.name + " is " + message; } var person4 = {name: "John"}; saySomething.apply(person4, ["awesome"]); 2. bind(): This method returns a new function, where the value of “this” keyword will be bound to the owner object, which is provided as a parameter. Example with arguments: var bikeDetails = { displayDetails: function(registrationNumber,brandName){ return this.name+ " , "+ "bike details: "+ registrationNumber + " , " + brandName; } } var person1 = {name: "Vivek"}; var detailsOfPerson1 = bikeDetails.displayDetails.bind(person1, "TS0122", "Bullet"); // Binds the displayDetails function to the person1 object detailsOfPerson1(); //Returns Vivek, bike details: TS0122, Bullet 16. What is the difference between exec () and test () methods in javascript? test () and exec () are RegExp expression methods used in javascript. We'll use exec () to search a string for a specific pattern, and if it finds it, it'll return the pattern directly; else, it'll return an 'empty' result. We will use a test () to find a string for a specific pattern. It will return the Boolean value 'true' on finding the given text otherwise, it will return 'false'. 17. What is currying in JavaScript? Currying is an advanced technique to transform a function of arguments n, to n functions of one or fewer arguments. Example of a curried function: function add (a) { return function(b){ return a + b; } } add(3)(4) For Example, if we have a function f(a,b), then the function after currying, will be transformed to f(a)(b). By using the currying technique, we do not change the functionality of a function, we just change the way it is invoked. Let’s see currying in action: function multiply(a,b){ return a*b; } function currying(fn){ return function(a){ return function(b){ return fn(a,b); } } } var curriedMultiply = currying(multiply); multiply(4, 3); // Returns 12 curriedMultiply(4)(3); // Also returns 12 As one can see in the code above, we have transformed the function multiply(a,b) to a function curriedMultiply , which takes in one parameter at a time.
@QuadrerExtraminecraft
@QuadrerExtraminecraft 2 ай бұрын
What is NaN property in JavaScript? NaN property represents the “Not-a-Number” value. It indicates a value that is not a legal number. typeof of NaN will return a Number. To check if a value is NaN, we use the isNaN() function, Note- isNaN() function converts the given value to a Number type, and then equates to NaN. isNaN("Hello") // Returns true isNaN(345) // Returns false isNaN('1') // Returns false, since '1' is converted to Number type which results in 0 ( a number) isNaN(true) // Returns false, since true converted to Number type results in 1 ( a number) isNaN(false) // Returns false isNaN(undefined) // Returns true 9. Explain passed by value
@QuadrerExtraminecraft
@QuadrerExtraminecraft 2 ай бұрын
perands. OR ( | | ) operator - If the first value is truthy, then the first value is returned. Otherwise, always the second value gets returned. AND ( && ) operator - If both the values are truthy, always the second value is returned. If the first value is falsy then the first value is returned or if the second value is falsy then the second value is returned. Example: var x = 220; var y = "Hello"; var z = undefined; x | | y // Returns 220 since the first value is truthy x | | z // Returns 220 since the first value is truthy x && y // Returns "Hello" since both the values are truthy y && z // Returns undefined since the second value is falsy if( x && y ){ console.log("Code runs" ); // This block runs because x && y returns "Hello" (Truthy) } if( x || z ){ console.log("Code runs"); // This block runs because x || y returns 220(Truthy) }
@cmhouse-b5y
@cmhouse-b5y 2 ай бұрын
How can Azure handle this situation?
@QuadrerExtraminecraft
@QuadrerExtraminecraft 2 ай бұрын
typeof of primitive types : typeof "John Doe" // Returns "string" typeof 3.14 // Returns "number" typeof true // Returns "boolean" typeof 234567890123456789012345678901234567890n // Returns bigint typeof undefined // Returns "undefined" typeof null // Returns "object" (kind of a bug in JavaScript) typeof Symbol('symbol') // Returns Symbol
@QuadrerExtraminecraft
@QuadrerExtraminecraft 2 ай бұрын
var str = "Vivek Singh Bisht"; //using double quotes var str2 = 'John Doe'; //using single quotes
@cmhouse-b5y
@cmhouse-b5y 2 ай бұрын
What is the Azure Traffic Manager?
@guptacloudtutorial
@guptacloudtutorial Ай бұрын
Azure Traffic Manager is a DNS-based traffic load balancer. This service allows you to distribute traffic to your public facing applications across the global Azure regions. Traffic Manager also provides your public endpoints with high availability and quick responsiveness.
@cmhouse-b5y
@cmhouse-b5y 2 ай бұрын
21. What are the two kinds of Azure Web Service roles?
@guptacloudtutorial
@guptacloudtutorial Ай бұрын
There are two types of Azure Cloud Services roles. The only difference between the two is how your role is hosted on the VMs: Web role: Automatically deploys and hosts your app through Internet Information Services (IIS). Worker role: Doesn't use IIS, and runs your app standalone.
@cmhouse-b5y
@cmhouse-b5y 2 ай бұрын
What is the Federation in Azure SQL?
@cmhouse-b5y
@cmhouse-b5y 2 ай бұрын
How has integrating hybrid cloud been useful for Azure?
@guptacloudtutorial
@guptacloudtutorial Ай бұрын
Advantages of a Hybrid Cloud Coupled with Managed Azure Cloud. The hybrid cloud model in OTAVA® Managed Azure offers several substantial benefits. It provides businesses with the scalability and cost-effectiveness of the public cloud while ensuring the security and control of a private cloud.
@cmhouse-b5y
@cmhouse-b5y 2 ай бұрын
What are the advantages of Scaling in Azure?
@cmhouse-b5y
@cmhouse-b5y 2 ай бұрын
Which one amongst Microsoft Azure ML Studio and GCP Cloud AutoML is better?
@guptacloudtutorial
@guptacloudtutorial Ай бұрын
Pricing and ROI: Microsoft Azure Machine Learning Studio offers flexible pricing options with reasonable setup costs. Users have found the licensing process to be straightforward. Google Cloud AI Platform provides cost-effective setup, with minimal and straightforward setup costs.
@cmhouse-b5y
@cmhouse-b5y 2 ай бұрын
What are the instance types offered by Azure?
@cmhouse-b5y
@cmhouse-b5y 2 ай бұрын
What is the difference between SaaS, PaaS, and IaaS?
@cmhouse-b5y
@cmhouse-b5y 2 ай бұрын
HI JITU BABU YOU TEACH VERY WELL
@cmhouse-b5y
@cmhouse-b5y 2 ай бұрын
hi jitu
@riteshpatel2455
@riteshpatel2455 2 ай бұрын
vpc peering connection
@QuadrerExtraminecraft
@QuadrerExtraminecraft 2 ай бұрын
super video but only read documents
@riteshpatel2455
@riteshpatel2455 2 ай бұрын
resume building
@riteshpatel2455
@riteshpatel2455 3 ай бұрын
aws sdk boto3
@saikovvuri4354
@saikovvuri4354 3 ай бұрын
Really happy for the content your sharing. God bless u and your family brother 🙏
@guptacloudtutorial
@guptacloudtutorial 3 ай бұрын
Thank you so much 👍
@guptacloudtutorial
@guptacloudtutorial 3 ай бұрын
keeping learning
@ShekharGund
@ShekharGund 3 ай бұрын
Plz upload 27 video
@guptacloudtutorial
@guptacloudtutorial 3 ай бұрын
Soon!
@saikovvuri4354
@saikovvuri4354 3 ай бұрын
Nice video. Can u pls share the reference document
@guptacloudtutorial
@guptacloudtutorial 3 ай бұрын
Hello dear, documents are confidential so I apologise for being unable to send the documents. Have a nice day!
@riteshpatel2455
@riteshpatel2455 3 ай бұрын
Nice video on AWS LAMBDA function
@venkatreddy9822
@venkatreddy9822 3 ай бұрын
7th and 8th classes are missing please provide
@lovelyshorts7888
@lovelyshorts7888 4 ай бұрын
👍👌
@deepakbv9046
@deepakbv9046 4 ай бұрын
Bro, plz do upload more videos.
@lifeofstruggling1297
@lifeofstruggling1297 4 ай бұрын
ok keep learnig brother
@guptacloudtutorial
@guptacloudtutorial 3 ай бұрын
I will try my best
@mustaquimsyed5678
@mustaquimsyed5678 4 ай бұрын
Greate containts....thnx
@guptacloudtutorial
@guptacloudtutorial 3 ай бұрын
Most welcome!
@ER._AMIT
@ER._AMIT 4 ай бұрын
Aws completed ??
@riteshpatel2455
@riteshpatel2455 4 ай бұрын
nice one
@guptacloudtutorial
@guptacloudtutorial 3 ай бұрын
Thanks for the visit
@lifeofstruggling1297
@lifeofstruggling1297 4 ай бұрын
Good video
@guptacloudtutorial
@guptacloudtutorial 4 ай бұрын
Thanks for the visit
@shamstabrez2986
@shamstabrez2986 7 ай бұрын
itss really hard to find any specific topic as u have not given the sessions name jst only given the sequence number try to upload sessions with complete topics name dont jst copy and paste the stuffs do some efforts ok
@guptacloudtutorial
@guptacloudtutorial 5 ай бұрын
Why its my personal video for learning purposes
@shamstabrez2986
@shamstabrez2986 8 ай бұрын
do upload azure and gcp cloud course also like this
@guptacloudtutorial
@guptacloudtutorial 5 ай бұрын
For me bro not another person u learn then ok not expecting another thing
@lifeofstruggling1297
@lifeofstruggling1297 10 ай бұрын
hi
@balramgupta4
@balramgupta4 2 жыл бұрын
No voice jitu chachu
@ShivShankar-ns7ep
@ShivShankar-ns7ep 3 жыл бұрын
Good work 👍
@balramgupta4
@balramgupta4 3 жыл бұрын
Shout out please chachu btw so informative video/discussion
@guptacloudtutorial
@guptacloudtutorial 3 жыл бұрын
Okay
@balramgupta4
@balramgupta4 3 жыл бұрын
Thankyou chachu