Question

In: Computer Science

By default, if we do not include comments with the /C switch when using the Shutdown...

By default, if we do not include comments with the /C switch when using the Shutdown command, the Pop-up message will include the time available (countdown) before the shutdown occurs. TRUE OR FALSE

When we use the NSLOOKUP command and see the result displays a "Non-authoritative answer", this means the information is inaccurate. TRUE OR FALSE

Not only can we use the ROBOCOPY command to copy files and directories, we can also use it to move files and directories. TRUE OR FALSE

When we use the COLOR or PROMPT command to customize our Command Prompt, it is a permanent change unless we explicitly change them again with the COLOR or PROMPT command. TRUE OR FALSE

Solutions

Expert Solution

First statement is false

When you no used /C switch in shutdown command the no pop-up massage is display

Hence second statement is false

@Second statement is true@

Because Non-authoritive name server do not contain original source files of Romain's zone

Ex we query for DNS records of domain tecadmin.net and Google open DNS server 9.9.9.9 respond for this query which doesn't contain domain's original zone fiels. This answer is known a Non-authoritive answer.

Server: 9.9.9.9

Address. 8.8.8.8#53

Non-authoritive answer:

Name : tecadmin.net

Address : 104.27.189.217

Name : tecadmin.net

Address : 104.27.188.217

Hence second statement is TRUE

Third statement is TRUE

ROBOCOPY command is used both copy and move fiels and directories

Syntax for copy the file by using ROBOCOPY

ROBOCOPY /S /E D:\dir1\data E:\backup\data

Syntax for move the file by using ROBOCOPY

You can add /MOV switch to delete fiels from source files

Robocopy /MOV /S /E D:\dir1\data E:\backup\data

You delete both switching fiels and directories from source files

Robocopy /MOVE /S /E D:\dir1\data E:\backup\data

Hence above statement is True

Robocopy is used copy as well as move the files

Fourth statement is False

COLOR or PROMPT command effect is a available until command prompt is open , once if you close command prompt , effect of the COLOUR OR PROMPT effect is finished

Syntax COLOR COMMAND

COLOR xy

'x' represent the color of the Terminal background, whereas,

'y' represent the color of the font on the Command Prompt Terminal.

Hence above statement is False


Related Solutions

Why do we need to increase the flow rate of air-acetylene flame when we switch over...
Why do we need to increase the flow rate of air-acetylene flame when we switch over to nitrous oxide flame in AAS?
C++ Download the attached program and complete the functions. (Refer to comments) main.cpp ~ #include #include...
C++ Download the attached program and complete the functions. (Refer to comments) main.cpp ~ #include #include #define END_OF_LIST -999 using namespace std; /* * */ int exercise_1() { int x = 100; int *ptr; // Assign the pointer variable, ptr, to the address of x. Then print out // the 'value' of x and the 'address' of x. (See Program 10-2) return 0; } int exercise_2() { int x = 100; int *ptr; // Assign ptr to the address of...
C++ existing code #include "ArrayBag.hpp" #include <iostream> /****************************************************** Public Methods *****************************************************/ /* Default Constructor */ template...
C++ existing code #include "ArrayBag.hpp" #include <iostream> /****************************************************** Public Methods *****************************************************/ /* Default Constructor */ template <typename ItemType> ArrayBag<ItemType>::ArrayBag() : item_count_(0) { // initializer list } // end default constructor template <typename ItemType> int ArrayBag<ItemType>::getCurrentSize() const { return item_count_; } template <typename ItemType> bool ArrayBag<ItemType>::isEmpty() const { return item_count_ == 0; } template <typename ItemType> bool ArrayBag<ItemType>::add(const ItemType &new_entry) {    bool has_room_to_add = (item_count_ < DEFAULT_CAPACITY); if (has_room_to_add) { items_[item_count_] = new_entry; item_count_++; } // end if return has_room_to_add;...
Please comments this C++ code and show screenshots of the outputs main.cpp #include<iostream> #include<vector> #include<string> #include"BST.h"...
Please comments this C++ code and show screenshots of the outputs main.cpp #include<iostream> #include<vector> #include<string> #include"BST.h" #include"BST.cpp" using namespace std; std::vector<std::string> tokenize(char line[]) {    std::vector<std::string> tok;        std::string word = "";        for (int i = 0; i < strlen(line); i++)        {            if (i == strlen(line) - 1)            {                word += line[i];                tok.push_back(word);                return tok;       ...
A. Write a C++ with a menu (using switch) that asks the user to select one...
A. Write a C++ with a menu (using switch) that asks the user to select one of the following choices to the user: 1. Options ‘S’ or ‘s’ 2. Option ‘T’ or ‘t 3. Options ‘P’ or ‘p’ 4. print in the Matrix format B. When 1 is selected, prompt the user to enter the starting value st (int value). Use a single FOR loop to count numbers from 1 to st. When the loop is finished, find the average...
Explain when a basis adjustment for loss property is taken. Include in your answer the default...
Explain when a basis adjustment for loss property is taken. Include in your answer the default application and election available to Corporation/Shareholder. Discuss when it would make sense to use the election. Include in your answer an example to illustrate your analysis.
#include <iostream> #include <string> #include <vector> using namespace std; class Song{ public: Song(); //default constructor Song(string...
#include <iostream> #include <string> #include <vector> using namespace std; class Song{ public: Song(); //default constructor Song(string t, string a, double d); //parametrized constructor string getTitle()const; // return title string getAuthor()const; // return author double getDurationMin() const; // return duration in minutes double getDurationSec() const; // return song's duration in seconds void setTitle(string t); //set title to t void setAuthor(string a); //set author to a void setDurationMin(double d); //set durationMin to d private: string title; //title of the song string author;...
When do you switch from spreadsheets to other technologies? discuss
When do you switch from spreadsheets to other technologies? discuss
Using c# , Write a program using a switch statement that takes one character value from...
Using c# , Write a program using a switch statement that takes one character value from the user and checks whether the entered value is an arithmetic operator (+, -, * , /) If not the program display a message that it not of the operators ( (+, -, * , /) .
C++ CODE ONLY Using the following code. #include <iostream> #include <string> #include <climits> #include <algorithm> using...
C++ CODE ONLY Using the following code. #include <iostream> #include <string> #include <climits> #include <algorithm> using namespace std; // M x N matrix #define M 5 #define N 5 // Naive recursive function to find the minimum cost to reach // cell (m, n) from cell (0, 0) int findMinCost(int cost[M][N], int m, int n) {    // base case    if (n == 0 || m == 0)        return INT_MAX;    // if we're at first cell...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT