Comments padhkar jyada time mat waste karo. Jakar kuchh padhai wadhai karo, developer webloper bano. Ye rahe hare saare free courses. The Complete JavaScript Course: ruclips.net/video/9P9h5h9kBmU/видео.html The Complete React Course: ruclips.net/video/_rTCzxg6VmM/видео.html Complete Frontend Course: ruclips.net/video/fc2axTKm4ps/видео.html The Complete CSS Course: ruclips.net/video/-oEbAmSaw7g/видео.html Redux Full Course in Hindi: ruclips.net/video/Bi2A180vAVQ/видео.html
00:27 Basic concepts of HTML, CSS, and JavaScript 03:46 HTML loads first, followed by CSS and then JavaScript. Difference between elements and tags explained. 10:32 Different types of selectors in HTML and CSS 13:47 Using !important in CSS 19:56 Variables in JavaScript can be declared and initialized at the same time 23:00 JavaScript has global, local, and block scopes 28:25 Setting up HTML, CSS, and JavaScript files for an interview mock 33:09 Debugging JavaScript code for console log output 40:54 Understanding the use of return keyword and for loop in JavaScript 47:05 Striving for exact center and proficiency 54:18 Improvement Suggestions for HTML, CSS, and JavaScript 56:37 Giving more interviews will boost confidence.
If the students unable to answer the question then it should be answered by interviewer... It's very important. We can confirm that interviewer is an excellent expert one.
I learned a lot from this interview I knew things but I didn't understand how to ask about it thank you very much sir I pray from my heart may Allah bless you, keep it up its a good job yes thank you
randomly popped into my feed and my communication skills are somewhat like hers, But still, she managed to answer questions the best she could. Eventually, we will get better. Learned a lot, thank you for the video 😀
u r using word "worst" which represent a very strong emotion, some people are not confident due to some insceurities and after reading your comment they will feel more incofident, please use your words wisely. You can write motivating comments as " whoever who doesn't give interview should learn from her"!!!
Specificity order in css selectors low to high 1 * 2 is elements selector no 3 class selector then I'd selector then inline style then !important ! important
Wow sir! This video is very valuable for freshers like me! Learning web dev along with preparing for interviews is such a great thing! I'm so lucky to find this video! Thanks so heartily sir!
3:44 You mentioned that HTML loads first, then CSS, and finally JavaScript. It's true that developers typically link CSS before JavaScript in their web pages. However, the loading order depends on how the developer has linked these resources. Sometimes, JavaScript might load before CSS depending on how it's been set up. So, it's not always the case that CSS loads before JavaScript.
How to prepare throry for job interview?? Mai jis course sai web development sikh rha hu usmai theory nhi bata rhe airf practical knowlege de rhe. Should i change my course?
Thanks for this interview sir, I am very tensed for my interview prepartion and after seeing this video my all stress in clear because I have made too many projects I have get more than average knowledge, I think getting a job is easy for me
var arr = [1,2,3,4,5]; var res=0; for(var i = 0; i < arr.length; i++) { res+=arr[i]; } console.log("sum of all element of array ",res); its execute complete
Thanks for this video sir , We need more videos like this so that we know what we need to prepare for our interview. Also add interview videos for backend and full stack .Thanku ones again sir
This interview give me Confidence how to face it and how to explain it also we are strong are not it basic up only but you should face it confidence if you select or not matter if you facing confidence it matter Thank a lot for two people Your dreams come true and you will achieve big
: Declares the document type and version (HTML5). : Root element of the HTML document. : Contains meta-information about the document (e.g., title, links to stylesheets). : Provides metadata about the HTML document (e.g., character set, viewport settings). : Sets the title of the document (shown in the browser tab). : Links to external resources, like stylesheets. : Contains internal CSS styles. : Defines client-side JavaScript. : Contains the content of the document. : Defines a header section. : Defines a navigation section. : Defines the main content area. : Defines a section of content. : Defines independent content. : Defines content aside from the main content (e.g., a sidebar). : Defines a footer section. , , , , , : Define HTML headings, from largest to smallest. : Defines a paragraph. : Defines a hyperlink. : Embeds an image. : Defines an unordered (bulleted) list. : Defines an ordered (numbered) list. : Defines a list item. : Defines a table. : Defines a table row. : Defines a table data cell. : Defines a table header cell. : Defines an HTML form for user input. : Defines an input control. : Defines a multiline input control. : Defines a clickable button. : Defines a drop-down list. : Defines an option in a drop-down list. : Defines a label for an input element. : Defines a division or section in the document. : Defines a small section or inline container. : Defines strong importance (typically bold). : Defines emphasized text (typically italic). : Inserts a line break. : Defines a thematic break (horizontal rule). : Defines a single line of code. : Defines preformatted text (preserves whitespace).
The candidate has average knowledge of HTML, CSS, and JavaScript, and needs to focus on improving their understanding of fundamental concepts, especially in CSS and JavaScript. They should practice explaining concepts clearly and prepare questions to ask the interviewer. Key moments: 00:46 The interviewee introduces himself as Adi Singer, a Java developer with average knowledge of HTML, CSS, and JavaScript. The interviewer starts with theoretical questions on HTML, CSS, and JavaScript. -Adi Singer introduces himself as a Java developer with average knowledge of HTML, CSS, and JavaScript, currently undergoing training. -The interviewer plans to ask theoretical questions on HTML, CSS, and JavaScript, followed by output-based questions and a small project. -The interview starts with questions on HTML, including the full form of HTML, HTTP, and the order in which HTML, CSS, and JavaScript load on a webpage. 07:20 Understanding the differences between block and inline elements in CSS is crucial. Block elements take the width of their parent, while inline elements take the width of their content. -Explanation of block and inline elements in CSS. Block elements occupy space in a block format, while span elements are inline level elements. -Difference between block and inline elements. Block elements can occupy space in multiple rows and columns, while span elements only take space in a single line. -Discussion on CSS selectors and specificity. Understanding the order of preference: element, class, and ID selectors, based on specificity values. 14:02 Understanding CSS concepts like important, position properties, and flexbox is crucial. In JavaScript, knowing about single-threaded nature, data types, and variable creation using let, var, and const is fundamental. -Importance of CSS concepts like important, position properties, and flexbox. Knowing when to use them enhances web design skills. -Significance of understanding JavaScript's single-threaded nature, different data types, and variable creation using let, var, and const. These are foundational concepts in programming. 20:42 Variables in JavaScript have different scopes like global, local, and block scope. Understanding these scopes is crucial for defining and using variables effectively in JavaScript. -Different scopes in JavaScript include global, local, and block scope, each impacting how variables are declared and accessed. -The concept of functions in JavaScript is essential for executing specific actions based on user interactions, like displaying pop-ups or handling button clicks. -Distinguishing between parameters and arguments in functions is crucial as parameters are placeholders in function definitions, while arguments are actual values passed to functions. 27:23 The video discusses the concept of DOM (Document Object Model) and practical coding exercises in JavaScript. It emphasizes understanding DOM manipulation and output prediction through code execution. -Explaining the use of DOM for data retrieval from elements, classes, and IDs in web development. -Guiding on setting up code files, connecting JavaScript to HTML, and testing code output. -Instructing on modifying code to achieve desired output, focusing on console log statements and code adjustments. 36:25 Understanding the 'return' keyword in JavaScript functions is crucial. It dictates what the function outputs and must be used inside the function only. -Explaining the importance of the 'return' keyword in JavaScript functions and its role in determining the function's output. -Guidance on using 'for' loops in JavaScript to perform operations on arrays, like summing numbers. -Practical application of CSS by creating a box with specific dimensions and styling, then centering it on a webpage. 45:31 The speaker emphasizes the importance of understanding and explaining concepts to succeed in interviews. Practice explaining concepts as if teaching someone else to improve understanding and communication skills. -Importance of understanding and explaining concepts in interviews. Practice explaining concepts to improve communication skills. -Focus on fundamental concepts of CSS and JavaScript. Improve knowledge of semantic tags and attributes in HTML. 54:36 To improve, learn fundamental concepts beyond JavaScript, watch more videos, practice CSS, and prepare questions for interviews to enhance communication skills and confidence. -Emphasizing the importance of practicing CSS and writing code while watching lectures to enhance learning. -Highlighting the significance of preparing questions for interviews to demonstrate communication skills and confidence. -Encouraging continuous interview practice to build confidence and improve communication skills over time.
Although I was not aware of the full form of HTML at that age, I am now earning more than 4 lakhs per month. What I want to convey is that you have a lot of potential. Do not be discouraged by the comments here and demotivate yourself. You will achieve great success in life if you continue to learn and work hard.
Jinka carear abhi shuru nhi hua unke interview le rahe ho ....aise ka interview lo jo kamyab ho google jaise infosys jaise platform pe ho to kuch motivation mile
@@procodrr sir can u tell me about which language is perfect for backend for future because i learn html css and JS and i just built a normal project i mean not soo big but a its good
Thank you for this video. Ye dekh ke muje lag raha hai muje abhi bohat padhna hoga. Ye questions ke answer bhi nhi kr paungi, padha to sab h per yaad to kuch nhi. 🙇🏻♀️ padhna padegaa abbb muje
👉How to centre a div inside another 1 Margin 0 auto 2 display grid place items centre 3 display flex align-items center justify content center 4 position absulute to child elem and top 50% left 50% transform translate (-50% -50%) 5 display grid align items center justify content center
I love you❤.. Mee engineer asun software engineer banayla ghabart rahile.. tumhi engineering n krta engineer bnun dakhvl.. Huge respect 🙌.. I hope one day I can defeat my fear too🤞
Thanx alot sir, for providing some info about answers if candidates not able to... Through this, candidates also get some idea and your subscribers too... eg: like specifity, scope etc.... Thanx alot❤
Tomarrow, I am going to a software company to have an Interview(HTML, CSS and Js).Instead of revising whole of the HTML CSS and Js from video Lectures or from GPT. This video is helping me a lot. Bundle of thanks sir for providing us valueable content like this. Keep it up. Your Dedication towards education will pays you Inshallah
sir ap ka podcast me bhi ata hu thode time me abhi javascript concept shikh rha hu milte hai bhaut jald sir...ye podcast muje bhaut acha lega or bhaut kuch shikhne ko mila ..❤
Would love to see some Fresher's Python mock interviews as well, and not the fresher's who have worked on some field for multiple years, have great communication skills, looking to switch careers, but fresher's being undergraduates, or new graduates, who don't have much interview experience, and none professional experiences, so that we can relate the interview and give the interview along with them. And really love her communication skills, and the confidence.
Give me a chance to give interview...i am learning this technology since last 6 months...and now i just need confidence..which will come by given such interviews....please sir 🎉🎉
Couple of day go i got to know about you sir , before that I am searching on RUclips javascript course and learning from there . Now I am going to start from your course. Question paper is very helpful for me as I am new into programming world I also want to give interview.what i have to do???
the code is not giving output hello because it is showing console log inside (console log) so it is confusive for browser to understand that is why it show undefined
How to learn theory for job interview?? Mai jo course sai padh rha hu usmai theory nhi bata rha sirf practical knowlege de rhe. Should i change my course??
Comments padhkar jyada time mat waste karo.
Jakar kuchh padhai wadhai karo, developer webloper bano.
Ye rahe hare saare free courses.
The Complete JavaScript Course: ruclips.net/video/9P9h5h9kBmU/видео.html
The Complete React Course: ruclips.net/video/_rTCzxg6VmM/видео.html
Complete Frontend Course: ruclips.net/video/fc2axTKm4ps/видео.html
The Complete CSS Course: ruclips.net/video/-oEbAmSaw7g/видео.html
Redux Full Course in Hindi: ruclips.net/video/Bi2A180vAVQ/видео.html
Bhaiya comment padhne mai jada maja aata hai 🤭
@anchalsingh7289 Theek hai to pahle comment padh lo uske baad JavaScript padhna.
@@procodrr sir where is the link to submit form for interview ??
@@marvelliciousedits998Link in the description
or ap humara time waste nhi karo or apna ya bazar yaha nah lagao
I think she is very new in learning path 😊. So best of luck for her
00:27 Basic concepts of HTML, CSS, and JavaScript
03:46 HTML loads first, followed by CSS and then JavaScript. Difference between elements and tags explained.
10:32 Different types of selectors in HTML and CSS
13:47 Using !important in CSS
19:56 Variables in JavaScript can be declared and initialized at the same time
23:00 JavaScript has global, local, and block scopes
28:25 Setting up HTML, CSS, and JavaScript files for an interview mock
33:09 Debugging JavaScript code for console log output
40:54 Understanding the use of return keyword and for loop in JavaScript
47:05 Striving for exact center and proficiency
54:18 Improvement Suggestions for HTML, CSS, and JavaScript
56:37 Giving more interviews will boost confidence.
bhai interview hain ki pura course he sikha diya 💀💀
Bro you are great👍
don't get discouraged, give your best and practice hard. all will be good in time.
If the students unable to answer the question then it should be answered by interviewer... It's very important. We can confirm that interviewer is an excellent expert one.
She need to learn more but she is young and having enough time to learn.. its good to see she is preparing for a job at this age.
how do you know her age ?
Node js or express js pe course banao
Bro she just looks young
Bro she is in 20s
How she is younger
Bro below 25 is young st fu
Just popped on my feed. i learnt a lot with this. Thank you Guruji
Q.what is function?
a set of statements that performs a task
Appreciate the patience of interviewer
😂😂
Yeah 😁
Yeah exactly 💯
😂
interviewer says to me at the end of my interview
Good I will share your details with hr
This means?
why do we use HTTP :?
it's a protocol that allow a client to communicate with a server with request response architecture
It works on port 80. Which can be a vulnerable port as it can reveal get and post requests
I learned a lot from this interview I knew things but I didn't understand how to ask about it thank you very much sir I pray from my heart may Allah bless you, keep it up its a good job yes thank you
interviewer says to me at the end of my interview
Good I will share your details with hr
This means?
@@Shyam_1567 Job lag gyi apki
Its my daily routine to watch at least 1 video before go for sleep ❤❤
Continue this type of interview, thank you sir 😊
randomly popped into my feed and my communication skills are somewhat like hers, But still, she managed to answer questions the best she could. Eventually, we will get better.
Learned a lot, thank you for the video 😀
We should appreciate her she is so strong
Love her Confidence to give intetview thats important.
Whoever who doesnt give interview are worst than her.
Damn bro chill
@@fouzanop1208 yes bro CHILL IS MOST IMPORANT THAN INTERVIEW
Worse*
@@loveyourself-n6y 🤡🤡🤡
u r using word "worst" which represent a very strong emotion, some people are not confident due to some insceurities and after reading your comment they will feel more incofident, please use your words wisely.
You can write motivating comments as " whoever who doesn't give interview should learn from her"!!!
top: 50%
left: 50%
transform: translate(-50%,-50%)
For making any element or content in center of WebPage.
Display flea justify-content:center align items center
Is there any need of transform
Batane ka tarika thora casual hai
Bro position:absolute;😂
display:grid;
place-content:center
Specificity order in css selectors low to high 1 * 2 is elements selector no 3 class selector then I'd selector then inline style then !important
! important
Wow sir! This video is very valuable for freshers like me! Learning web dev along with preparing for interviews is such a great thing! I'm so lucky to find this video! Thanks so heartily sir!
Sir ko level pta chal jata h bachho ka isi maare questions hlke fulke kr diye great !❤
Her reaction was precious after every question that was being asked
3:44 You mentioned that HTML loads first, then CSS, and finally JavaScript. It's true that developers typically link CSS before JavaScript in their web pages. However, the loading order depends on how the developer has linked these resources. Sometimes, JavaScript might load before CSS depending on how it's been set up. So, it's not always the case that CSS loads before JavaScript.
Yes, you are right.
@procodrr I spoke the truth for the first time in my life today. 😅😅😂
@@procodrr sir now i am building my resume so can you make videos on some useful projects with free of course their source code 😪
@@procodrr can you give me all questions in file if you have written these questions anywhere in file or notebook etc
How to prepare throry for job interview??
Mai jis course sai web development sikh rha hu usmai theory nhi bata rhe airf practical knowlege de rhe. Should i change my course?
For your patience & understanding, u got a subs mr.interview. By the end of this year, I will be one interviewed by you sir.
she is look so sweet 😍...the way of she smiling just like💗..hayee ye kitna pyarai hai😻
Thanks for this interview sir, I am very tensed for my interview prepartion and after seeing this video my all stress in clear because I have made too many projects I have get more than average knowledge, I think getting a job is easy for me
Bhai dekhte hai
ho gaya interview?
Nhi bhai college ka last semester hone me time hai, uske bad apply hi krne walal hu sidha. @@kunal4536
You are doing great, Aditi. Keep it up. One day, you will rock.✌✌
Bahut badhiya learning about web developer job
your video helped me a lot in frame the answers.
Thank you sir.
Need some more Interview videos on backend.
What is semantic tag ?
That tags define the meaning of the content they contain. For example , ,
var arr = [1,2,3,4,5];
var res=0;
for(var i = 0; i < arr.length; i++)
{
res+=arr[i];
}
console.log("sum of all element of array ",res); its execute complete
Thanks for this video sir , We need more videos like this so that we know what we need to prepare for our interview.
Also add interview videos for backend and full stack .Thanku ones again sir
I also have filled the form. Comfortable in C, C++, HTML, CSS, Javascript and Angular.
let arr =[ 1,2 ,3,4,5,6]
let sum=0;
for( num of arr){
sum+=num};
document.write(sum)
Thank you so much Sir for this kind of free interview
We need this type of video❤
Thanks for making such important videos, I really like such information videos, I appreciate to your work and knowledge thank you.
This interview give me Confidence how to face it and how to explain it also we are strong are not it basic up only but you should face it confidence if you select or not matter if you facing confidence it matter Thank a lot for two people Your dreams come true and you will achieve big
let sum = 0;
[1,2,3,4,5].forEach((value, index)=>sum += value);
! Important keyword have the highest priority for styling an element or we can say that style must be applied
: Declares the document type and version (HTML5).
: Root element of the HTML document.
: Contains meta-information about the document (e.g., title, links to stylesheets).
: Provides metadata about the HTML document (e.g., character set, viewport settings).
: Sets the title of the document (shown in the browser tab).
: Links to external resources, like stylesheets.
: Contains internal CSS styles.
: Defines client-side JavaScript.
: Contains the content of the document.
: Defines a header section.
: Defines a navigation section.
: Defines the main content area.
: Defines a section of content.
: Defines independent content.
: Defines content aside from the main content (e.g., a sidebar).
: Defines a footer section.
, , , , , : Define HTML headings, from largest to smallest.
: Defines a paragraph.
: Defines a hyperlink.
: Embeds an image.
: Defines an unordered (bulleted) list.
: Defines an ordered (numbered) list.
: Defines a list item.
: Defines a table.
: Defines a table row.
: Defines a table data cell.
: Defines a table header cell.
: Defines an HTML form for user input.
: Defines an input control.
: Defines a multiline input control.
: Defines a clickable button.
: Defines a drop-down list.
: Defines an option in a drop-down list.
: Defines a label for an input element.
: Defines a division or section in the document.
: Defines a small section or inline container.
: Defines strong importance (typically bold).
: Defines emphasized text (typically italic).
: Inserts a line break.
: Defines a thematic break (horizontal rule).
: Defines a single line of code.
: Defines preformatted text (preserves whitespace).
The candidate has average knowledge of HTML, CSS, and JavaScript, and needs to focus on improving their understanding of fundamental concepts, especially in CSS and JavaScript. They should practice explaining concepts clearly and prepare questions to ask the interviewer.
Key moments:
00:46 The interviewee introduces himself as Adi Singer, a Java developer with average knowledge of HTML, CSS, and JavaScript. The interviewer starts with theoretical questions on HTML, CSS, and JavaScript.
-Adi Singer introduces himself as a Java developer with average knowledge of HTML, CSS, and JavaScript, currently undergoing training.
-The interviewer plans to ask theoretical questions on HTML, CSS, and JavaScript, followed by output-based questions and a small project.
-The interview starts with questions on HTML, including the full form of HTML, HTTP, and the order in which HTML, CSS, and JavaScript load on a webpage.
07:20 Understanding the differences between block and inline elements in CSS is crucial. Block elements take the width of their parent, while inline elements take the width of their content.
-Explanation of block and inline elements in CSS. Block elements occupy space in a block format, while span elements are inline level elements.
-Difference between block and inline elements. Block elements can occupy space in multiple rows and columns, while span elements only take space in a single line.
-Discussion on CSS selectors and specificity. Understanding the order of preference: element, class, and ID selectors, based on specificity values.
14:02 Understanding CSS concepts like important, position properties, and flexbox is crucial. In JavaScript, knowing about single-threaded nature, data types, and variable creation using let, var, and const is fundamental.
-Importance of CSS concepts like important, position properties, and flexbox. Knowing when to use them enhances web design skills.
-Significance of understanding JavaScript's single-threaded nature, different data types, and variable creation using let, var, and const. These are foundational concepts in programming.
20:42 Variables in JavaScript have different scopes like global, local, and block scope. Understanding these scopes is crucial for defining and using variables effectively in JavaScript.
-Different scopes in JavaScript include global, local, and block scope, each impacting how variables are declared and accessed.
-The concept of functions in JavaScript is essential for executing specific actions based on user interactions, like displaying pop-ups or handling button clicks.
-Distinguishing between parameters and arguments in functions is crucial as parameters are placeholders in function definitions, while arguments are actual values passed to functions.
27:23 The video discusses the concept of DOM (Document Object Model) and practical coding exercises in JavaScript. It emphasizes understanding DOM manipulation and output prediction through code execution.
-Explaining the use of DOM for data retrieval from elements, classes, and IDs in web development.
-Guiding on setting up code files, connecting JavaScript to HTML, and testing code output.
-Instructing on modifying code to achieve desired output, focusing on console log statements and code adjustments.
36:25 Understanding the 'return' keyword in JavaScript functions is crucial. It dictates what the function outputs and must be used inside the function only.
-Explaining the importance of the 'return' keyword in JavaScript functions and its role in determining the function's output.
-Guidance on using 'for' loops in JavaScript to perform operations on arrays, like summing numbers.
-Practical application of CSS by creating a box with specific dimensions and styling, then centering it on a webpage.
45:31 The speaker emphasizes the importance of understanding and explaining concepts to succeed in interviews. Practice explaining concepts as if teaching someone else to improve understanding and communication skills.
-Importance of understanding and explaining concepts in interviews. Practice explaining concepts to improve communication skills.
-Focus on fundamental concepts of CSS and JavaScript. Improve knowledge of semantic tags and attributes in HTML.
54:36 To improve, learn fundamental concepts beyond JavaScript, watch more videos, practice CSS, and prepare questions for interviews to enhance communication skills and confidence.
-Emphasizing the importance of practicing CSS and writing code while watching lectures to enhance learning.
-Highlighting the significance of preparing questions for interviews to demonstrate communication skills and confidence.
-Encouraging continuous interview practice to build confidence and improve communication skills over time.
Don't worry sister... You are going to rock... Just keep practicing keep learning
14:45 default value of position property is
--- static
Can i right sir ❤
Although I was not aware of the full form of HTML at that age, I am now earning more than 4 lakhs per month. What I want to convey is that you have a lot of potential. Do not be discouraged by the comments here and demotivate yourself. You will achieve great success in life if you continue to learn and work hard.
💯 percent true.
If you don't know something today doesn't mean that you'll never know.
Just keep learning 👍
Which company you are working? Which technology? Experience ?
@@Sumeshkumarback Working in Mphasis with over 5.5 years of experience, Full stack developer React + Node +Java
@bolegauser-vj8vl8yt6q
Ab nahi bolega vo
the main thing ..still u watch like this video i cant undrestand you mhaaan...😂
after watching this my confidence is on space
Same here
Salute for your patience and calmness
Jinka carear abhi shuru nhi hua unke interview le rahe ho ....aise ka interview lo jo kamyab ho google jaise infosys jaise platform pe ho to kuch motivation mile
i m glad to see tht u can reply all the student questions good very good
Thank you 😊
@@procodrr sir can u tell me about which language is perfect for backend for future because i learn html css and JS and i just built a normal project i mean not soo big but a its good
Node.js or Java
@@procodrr Thanks Boss🫡🫡🫡🫡🫡🫡Thanks a lot i became a fan of you❤❤❤❤
Bhai ldki m himmat jo yaha aakr interview diya baki log to bolte rhege but face krna bht mushkil hai
Thanks for supporting her
Thank you for this video. Ye dekh ke muje lag raha hai muje abhi bohat padhna hoga. Ye questions ke answer bhi nhi kr paungi, padha to sab h per yaad to kuch nhi. 🙇🏻♀️ padhna padegaa abbb muje
I'm glad this video was helpful 😊
Same 😢 Html k que to palle pade h but CSS se samjh hi na aaya 😢 ..bhut pichhe hai 😢
They are so helpful Sir! Thank you so much!
👉How to centre a div inside another
1 Margin 0 auto
2 display grid place items centre
3 display flex align-items center justify content center
4 position absulute to child elem and top 50% left 50% transform translate (-50% -50%)
5 display grid align items center justify content center
4th one should be translate(-50%,-50%);
in sb k liye parent ko ek enough height required hai , other wise koi sa bhi kaam nahi karega
@@Lit-1t1 ha position k sath karega
sistor koi na you done well and definetly you will improve yourself
best of luck 👍🏻
Sir im from Pk and truly learned alot
thankyou for uploading this type of content
I Rate her 5/10 ❤ Appreciated.
Sir aap yesa hi interview ke video upload krte rahiye bhut kuch sikhno ko milta hai
Waise mai programming background se nhi hu fir bhi video acha lg rha hai😂😂😂
I love you❤.. Mee engineer asun software engineer banayla ghabart rahile.. tumhi engineering n krta engineer bnun dakhvl.. Huge respect 🙌.. I hope one day I can defeat my fear too🤞
Hello sir 🙏
Google form link closed ho gya h
Please active kre
Hme bhi part lene de
Ye video to viral m jayegi gurudev ❤❤
Samjh raho samjh rahe ho na😂
@@tariqahmed2526 😎😎
ho gai arvaz bhai 😂
why do we use html
to describe documents to the browser
Thanx alot sir, for providing some info about answers if candidates not able to...
Through this, candidates also get some idea and your subscribers too... eg: like specifity, scope etc....
Thanx alot❤
Her confidence 🙌❤️💯
1. !important
2. inline
3. id
4. class
5. tag this is the specificity rule in css from top to bottom in highest priority
display: flex;
justify-content: center;
align-items: center;
margin: 0 auto;
Whats the advantage of these interviews? Do we get placement assistance? Or its kind of mock interviews only
It was easy for me despite I left frontend practicing around 1year ago.
bhai kya soch ke ye video uplod kiye h sir app... chalo hamara man to khus huwa madam ko dekh ke,,
Tomarrow, I am going to a software company to have an Interview(HTML, CSS and Js).Instead of revising whole of the HTML CSS and Js from video Lectures or from GPT. This video is helping me a lot. Bundle of thanks sir for providing us valueable content like this. Keep it up. Your Dedication towards education will pays you Inshallah
Hey can you pls share your experience
sir ap ka podcast me bhi ata hu thode time me abhi javascript concept shikh rha hu milte hai bhaut jald sir...ye podcast muje bhaut acha lega or bhaut kuch shikhne ko mila ..❤
Zaroor aana, waise ye podcast nahi interview hai.
yes sir i know @@procodrr
Kya interview Hindi me nhi ho skta hai
She don't know much about web development, where ever she stuck or confused she blushed 😅
Sir, how can i enroll myself for mock interview?
Beautiful front end hai bhai 😅😅😅
Would love to see some Fresher's Python mock interviews as well, and not the fresher's who have worked on some field for multiple years, have great communication skills, looking to switch careers, but fresher's being undergraduates, or new graduates, who don't have much interview experience, and none professional experiences, so that we can relate the interview and give the interview along with them.
And really love her communication skills, and the confidence.
wow this was awesome
it feels more like a quiz than a interview. But got my knowledge and concept revised.
I'd like to do Nodejs backend mock interview just to get some refresher based on my knowledge and learn more
tq for showing information . its gives a lot of information to me
Because of this video i am feeling genius 😂
bhai frontened devlopment ke liye itna hee hota hai kya shirf fresher ke liye
We use meta tag to make web page more visible ❤
what a confidence......didi
bhaii eyes k niche dark spots dekho ,, diidi ne raat bhr mehnat kiihh
Is ladki kaa interview dekhne k bad mere confidence duggna hogya hau 😇
😅
Sir can you add subtibles in upcoming interviews. helps to understand more.
Alright, I'll try.
Give me a chance to give interview...i am learning this technology since last 6 months...and now i just need confidence..which will come by given such interviews....please sir 🎉🎉
Bhaiya ji Bhaiya, Anurag Bhaiyaa, Super Bhaiyaa
Arey Yuvaraj kaise ho 😀
Sir in real interviews for internship we have to make complex projects
no
I can answer 80% in this interview asksd...even I'm 5th semester of my BCA program.
Kitni pyari h🥰
Her dark circles reveal her hard work
Nope it also reveals that she uses too much media or doesn't sleep well
Couple of day go i got to know about you sir , before that I am searching on RUclips javascript course and learning from there . Now I am going to start from your course. Question paper is very helpful for me as I am new into programming world I also want to give interview.what i have to do???
Sir knowledge ka kya hai aata jata rahta hai but larki ka dil nhi todna chahiye tha 💔.
It's break of heart also me
Yes bro but english not englishing bro 😵💫
bhai tera dil kaise tut gya ye to bta. waise bat to tumne thik hi kaha hai.
@@kingkong3086 bro end me dekho ladki kitni nervousness feel kr rahi thi
i think she is very new learning dont able to give the answer of anyone question
ye to badre basic h agar itne basic hote questions to sab ki job lagri hoti
Kya interview english language me hota ha please 🙏 reply sir
the code is not giving output hello because it is showing console log inside (console log) so it is confusive for browser to understand that is why it show undefined
Hello sir, what types of exact questions do interviewers ask in in-camp job interviews.
How to learn theory for job interview??
Mai jo course sai padh rha hu usmai theory nhi bata rha sirf practical knowlege de rhe. Should i change my course??