Question1 How do users get to your site, mobile app, and/or YouTube channel? How do you promote your content? Answer The user reaches my site via search engines such as Google, Bing, Yahoo, and Youtube channel also I promote my blogger posts by sharing on social media like Facebook, Twitter, and Pinterest. Question2 Have you or your site, mobile app, …
Read More »Latest Post
How to Fix Google Chrome Not Responding in Windows 10
netsh int ip reset c:\resetlog.txt netsh winsock reset ipconfig /flushdns exit
Read More »In Windows 10 how to solve (0x80070424) Error
Download Link 1 Download Link 2
Read More »There were some problems installing updates, but we’ll try again later. If you keep seeing this and want to search the web or contact support for information, this may help: (0x80070424)
What version of windows 10 are you running?Error code 0x80070424 denotes The specified service does not exist as an installed service. You could try the following steps:Download w10-wuauserv.zip, unzip and extract the contents to a folder Run the file w10-wuauserv.reg and click Yes when asked for confirmation.The registry file restores the Windows Update service registry key (wuauserv) located in the …
Read More »HOW TO FIXED PROBLEM: Windows Update service missing (not listed) in services.
On some Windows 8, 7 or Vista computers the Windows Update service may be missing from services (services.msc) due to a virus attack. When this happens the following error appears on your screen when you try to check for updates : “Windows update cannot currently check for updates, because the service is not running. You may need to restart your …
Read More »Renewable Energy MCQ (Geothermal Energy) Unit – 6 AKTU
Geothermal Energy Multiple Choice Questions & Answers focuses on Origin of Winds – 2 . Renewable Energy MCQ unit 6 – Here’s the list of chapters on the “Renewable Energy” subject covering 100+ topics. You can practice the Renewable Energy 1000+ MCQ questions chapter by chapter starting from the 1st chapter or you can jump to any chapter of your …
Read More »Renewable Energy MCQ (Biomass Energy) Unit – 5 AKTU
Wind Energy Multiple Choice Questions & Answers focuses on Origin of Winds – 2 . Renewable Energy MCQ unit 5 – Here’s the list of chapters on the “Renewable Energy” subject covering 100+ topics. You can practice the Renewable Energy 1000+ MCQ questions chapter by chapter starting from the 1st chapter or you can jump to any chapter of your …
Read More »Renewable Energy MCQ (Wind Energy) Unit – 4 AKTU
Renewable Energy MCQ unit 4 – Here’s the list of chapters on the “Renewable Energy” subject covering 100+ topics. You can practice the Renewable Energy 1000+ MCQ questions chapter by chapter starting from the 1st chapter or you can jump to any chapter of your choice. The section contains multiple choice questions and answers on winds origin and nature, wind …
Read More »How to Create Registration Form in HTML
Here in this post, we will create an HTML Registration Form HTML Registration form code <!DOCTYPE HTML> <html> <head> <title>Register Form</title> </head> <body> <form> <table border="1"> <tr> <td>Name :</td> <td><input type="text"></td> </tr> <tr> <td>Password :</td> <td><input type="password"></td> </tr> <tr> <td>Gender :</td> <td> <input type="radio" name="Gender"> Male <input type="radio" name="Gender"> Female </td> </tr> <tr> <td>Email :</td> <td><input type="email"></td> </tr> <tr> <td>Phone …
Read More »Renewable Energy MCQ (Solar Thermal System) Unit – 3 AKTU
Renewable Energy MCQ unit 3 – Here’s the list of chapters on the “Renewable Energy” subject covering 100+ topics. You can practice the Renewable Energy 1000+ MCQ questions chapter by chapter starting from the 1st chapter or you can jump to any chapter of your choice. Solar Thermal System UNIT 3 The section contains MCQs on solar collectors, solar water …
Read More »Given an array as input,find the largest number in the array.Using Javascript
let arr=[5,18,26,30,40,6]; function largest(arr) { let i; let max = arr[0]; for (i = 1; i < arr.length; i++) { if (arr[i] > max) max = arr[i]; } return max; } console.log('Max='+largest(arr));
Read More »Given an array,print the sum of the even and odd numbers in the array.Javascript Program
const number=[3,4,5,12]; let sum=0; let sum1=0; for(let i=0;i<number.length;i++) { if(number[i]%2==0) { sum=sum+number[i]; } else if(number[i]%2==1) { sum1=sum1+number[i]; } } console.log('Even Sum='+sum); console.log('Odd Sum='+sum1);
Read More »