Dirty bit is used to show | UGC NET
UGC NET 2018: Dirty bit is used to show the __________________ (a) page with low frequency occurrence (b) wrong page (c) page that is modified … Read more
UGC NET 2018: Dirty bit is used to show the __________________ (a) page with low frequency occurrence (b) wrong page (c) page that is modified … Read more
UGC NET 2018 : ________ command is used to remove a relation from an SQL database. (a) Remove table (b) Delete table (c) Update table … Read more
CSS for Horizontal and Vertical scroll bar Horizontal scroll bar #boxJys { width:100%; height:fit-content; word-wrap:normal; background-color: black; overflow-x:scroll; } Vertical scroll bar <style> div.jysVScroll { … Read more
Differentiate between Database approach v/s Traditional file accessing approach. (RGPV Nobember 2019) Database Approach Traditional File Approach All Application shares a pool … Read more
VB.Net code to do data base connection with MS Access 2010 Private Sub btnSave_Click(sender AsSystem.Object, e AsSystem.EventArgs) HandlesbtnSave.Click MsgBox(“Sure! Save permanently in database”, MsgBoxStyle.Information, … Read more
In C programming language, semicolon (;) is used to terminate a statement. However, it is possible to use the printf() function without using semicolon by … Read more
Explanation In this program, we first declare two integer variables a and b. Then we ask the user to input two numbers using the scanf() … Read more
In C programming language, the nth term of an arithmetic progression can be calculated using the following formula: an = a1 + (n-1)d where an … Read more
The sum of the first n even positive numbers can be calculated using the following formula: sum = n * (n + 1) Here is … Read more
C program to calculate sum of first n even numbers between 0 and n.? Take n as input from user? Sol. Input : n = … Read more