Your crt monitor flickers. what should you do
A bookmarking site is a website that enables members to manage and share media such as photos, videos, and music. true or false
a personal naratiation is like a autobiography in that it
A tells your whole life story, from birth to present
B is a story about something in the author life written by the author
C is written in third person
D is a story about a person written by another person
Given : an int variable k, an int array currentmembers that has been declared and initialized , an int variable nmembers that contains the number of elements in the array , an int variable memberid that has been initialized , and a bool variable isamember, write code that assigns true to isamember if the value of memberid can be found in currentmembers, and that assigns false to isamember otherwise. use only k, currentmembers, nmembers, and isamember.
Final answer:
To check if the value of memberid exists in the currentmembers array, you can use a loop to compare each element with memberid and assign true to isamember if a match is found.
Explanation:
One way to check if the value of memberid can be found in currentmembers array is by using a loop. You can iterate through each element in the array and compare it with the value of memberid. If a match is found, you can assign true to isamember and break out of the loop. Otherwise, after the loop ends, you can assign false to isamember.
bool isamember = false;
for (int i = 0; i < nmembers; i++) {
if (currentmembers[i] == memberid) {
isamember = true;
break;
}
}
In this code, we are using a for loop to iterate from the first index (0) to the last index (nmembers - 1) of the currentmembers array. We check if the value at each index is equal to memberid, and if so, we assign true to isamember and break out of the loop.
The internet connects millions of computers connected through millions of ____ worldwide.
The internet connects millions of computers using millions of network links worldwide, which can be either physical or wireless. Devices communicate through agreed protocols, facilitating efficient information sharing. This vast network includes a diverse range of devices and is integral to global communication.
The Internet :.
These network links can be either physical cables, such as undersea cables connecting continents, or wireless connections like Wi-Fi and satellite links.
Devices such as servers, personal computers, and even cars and domestic appliances are part of this vast network, communicating with each other using protocols such as TCP/IP to efficiently share information.
Therefore,
The internet connects millions of computers through millions of network links worldwide.
Assigning ____ to a field means that no other classes can access the field’s values.
What is the name of a popular high-level computer programming and scripting language that is the name of a snake?
Can't expand stack segment by 8 bytes to 524288 bytes.
Final answer:
The message “Can’t expand stack segment by 8 bytes to 524288 bytes” suggests a stack overflow issue in a program that has reached the maximum size limit for the stack memory allocated by the operating system.
Explanation:
In the context of programming and software development, encountering an error message such as “Can’t expand stack segment by 8 bytes to 524288 bytes” usually indicates that the program is attempting to use more stack memory than is allowed. The stack is a region of memory used for the temporary storage of variables, return addresses, and for managing function calls. This type of error is often termed a stack overflow, which occurs when there is an attempt to push more onto the stack than it can handle. This could be due to excessive or infinite recursion, allocating too much space for variables on the stack, or a lack of proper memory management in the code. To resolve this issue, a programmer would need to review the code for functions that may be using excessive stack space, and modify the code to use the stack more efficiently or allocate memory on the heap instead.
A _____ is a search engine that combines internet technology with traditional library methods of cataloguing and assessing data.
Powerpoint increased the weight of a line in ____ increments.
your grandmother tells you a dollar doesn’t go as far as it used to. She says the “purchasing power” of a dollar is much less than it used to be. Explain what she means. Try to use and explain terms like inflation and deflation in your answer.
What is the main scientific weakness in watson and crick's paper?
A group of eight bits is called a _______. a. numeric data b. byte c. megabit d. binary
Which of the following statements is the least abstraction of the World Wide Web?
A. a bunch of Web pages
B.documents, images, and other data you can access by providing a URL (Web address)
C.the Internet
D.Wikipedia, Facebook, and other cool sites
import java.util.Scanner;
public class Grade
{
public static void main (String[] args)
{
// Declare constants
final double IN_WEIGHT = 0.6; // in-class weight is 60%
final double OUT_WEIGHT = 0.4; // out-of-class weight is 40%
// Declare variables
int preLabPts; //number of points earned on the pre-lab assignment
int preLabMax; //maximum number of points possible for pre-lab
int labPts; //number of poitns earned on the lab
int labMax; //maximum number of points possible for lab
int postLabPts; //number of points earned on the post-lab assignment
int postLabMax; //maximum number of points possible for the post-lab
int outClassAvg; //average on the out of class (pre and post) work
int inClassAvg; //average on the in-class work
double labGrade; //final lab grade
Scanner scan = new Scanner(System.in);
// Get the input
System.out.println("\nWelcome to the Grade Calculator\n");
System.out.print("Enter the number of points you earned on the pre-lab: ");
preLabPts = scan.nextInt();
System.out.print("What was the maximum number of points you could have earned? ");
preLabMax = scan.nextInt();
System.out.print("Enter the number of points you earned on the lab: ");
labPts = scan.nextInt();
System.out.print("What was the maximum number of points for the lab? ");
labMax = scan.nextInt();
System.out.print("Enter the number of points you earned on the post-lab: ");
postLabPts = scan.nextInt();
System.out.print("What was the maximum number of points for the post-lab? ");
postLabMax = scan.nextInt();
System.out.println();
// Calculate the average for the out of class work
outClassAvg = (preLabPts + postLabPts) / (preLabMax + postLabMax) * 100;
// Calculate the average for the in-class work
inClassAvg = labPts / labMax * 100;
// Calculate the weighted average taking 40% of the out-of-class average
// plus 60% of the in-class
labGrade = OUT_WEIGHT * outClassAvg + IN_WEIGHT * inClassAvg;
// Print the results
System.out.println("Your average on out-of-class work is " + outClassAvg + "%");
System.out.println("Your average on in-class work is " + inClassAvg + "%");
System.out.println("Your lab grade is " + labGrade + "%");
System.out.println();
}
}
can anyone help fix this code?
package Hello;
import java.util.Scanner;
public class NewClass1 {
public static void main (String[] args)
{
// Declare constants
final double IN_WEIGHT = 0.6; // in-class weight is 60%
final double OUT_WEIGHT = 0.4; // out-of-class weight is 40%
// Declare variables
int preLabPts; //number of points earned on the pre-lab assignment
int preLabMax; //maximum number of points possible for pre-lab
int labPts; //number of poitns earned on the lab
int labMax; //maximum number of points possible for lab
int postLabPts; //number of points earned on the post-lab assignment
int postLabMax; //maximum number of points possible for the post-lab
int outClassAvg; //average on the out of class (pre and post) work
int inClassAvg; //average on the in-class work
double labGrade; //final lab grade
Scanner scan = new Scanner(System.in);
// Get the input
System.out.println("\nWelcome to the Grade Calculator\n");
System.out.print("Enter the number of points you earned on the pre-lab: ");
preLabPts = scan.nextInt();
System.out.print("What was the maximum number of points you could have earned? ");
preLabMax = scan.nextInt();
System.out.print("Enter the number of points you earned on the lab: ");
labPts = scan.nextInt();
System.out.print("What was the maximum number of points for the lab? ");
labMax = scan.nextInt();
System.out.print("Enter the number of points you earned on the post-lab: ");
postLabPts = scan.nextInt();
System.out.print("What was the maximum number of points for the post-lab? ");
postLabMax = scan.nextInt();
System.out.println();
// Calculate the average for the out of class work
outClassAvg = (preLabPts + postLabPts) / (preLabMax + postLabMax) * 100;
// Calculate the average for the in-class work
inClassAvg = labPts / labMax * 100;
// Calculate the weighted average taking 40% of the out-of-class average
// plus 60% of the in-class
labGrade = OUT_WEIGHT * outClassAvg + IN_WEIGHT * inClassAvg;
// Print the results
System.out.println("Your average on out-of-class work is " + outClassAvg + "%");
System.out.println("Your average on in-class work is " + inClassAvg + "%");
System.out.println("Your lab grade is " + labGrade + "%");
System.out.println();
}
}
Is a computer network that spans a relatively small area, allowing all computer users to connect with each other to share data and peripheral devices, such as printers. enterprise network wide area network campus area network local area network value-added network?
To change the overall design of an entire document to include colors, fonts, and effects, a user should apply a?
Answer:
Theme
Explanation:
To change the overall design of an entire document to include colors, fonts, and effects, you should apply a theme. Theme comprise of color, fonts and effects.
Cheers.
He smallest network is a ______________________, which is a network of personal devices, such as the network you use when you sync your cell phone and your computer.
Anti-bullying laws in most states are designed to provide
A. guidelines for appropriate online behavior.
B. reasons for why people bully others online.
C. schools with ways to punish online bullying.
D. advice for preventing online bullying.
The motherboard is considered the "brain” of a computer because it controls
a computer’s speed.
performs specific tasks.
connects a system’s components.
processes stored information.
Answer:Its connect a system’s components .
Explanation:
took test on edge 2020
What command is used to request the name and address information from a dns server?
What command should you use to determine the fqdn of a computer with ip address 172.31.209.5?
The ASE certification system uses _______ testing and an evaluation of on-the-job experience to confirm that a technician meets professional standards of excellence
A. mandatory
B. voluntary
C. specialized
D. professional
The ASE certification is a voluntary credential that signifies a technician's competency and adherence to professional standards, achieved through testing and practical experience. option B) which is voluntary is the correct answer.
The ASE certification system uses voluntary testing and an evaluation of on-the-job experience to confirm that a technician meets professional standards of excellence. A certification is awarded by a professional organization or other nongovernmental body and is not legally required in order to work in an occupation.
It requires demonstrating competency to do a specific job, often through an examination process. This system helps ensure that individuals have the necessary skills and knowledge to perform in their respective fields. option B) is the correct answer.
Is a small file that a web server writes to the disk drive of the client computer, containing information about the user?
Which type of software is created and updated by a worldwide community of programmers and is available for free?
What feature sets Macs apart from other operating systems?
desktop
Finder
mouse
GUI
You can block logical ports from invaders and make your computer invisible to others on the internet by installing ________. a firewall a packet sniffer antivirus software a packet filter
A(n) ________ device facilitates file sharing and data backup.
Your computer is configured to obtain an ipv4 address and dns server address automatically. you are concerned that the ipv4 routing table is incorrect. what utility will display the ipv4 routing table
To apply a style to one or more elements on a web page, configure a css ________.