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

Please Complete this C Code using the gcc compiler. Please include comments to explain each added...
Please Complete this C Code using the gcc compiler. Please include comments to explain each added line. /*This program computes the Intersection over Union of two rectangles as a percent: IoU = [Area(Intersection of R1 and R2) * 100 ] / [Area(R1) + Area(R2) - Area(Intersection of R1 and R2)] The answer will be specified as a percent: a number between 0 and 100. For example, if the rectangles do not overlap, IoU = 0%. If they are at the...
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++ do add comments for better understanding Lapindrome is defined as a string which when split...
c++ do add comments for better understanding Lapindrome is defined as a string which when split in the middle, gives two halves having the same characters and same frequency of each character. If there are odd number of characters in the string, we ignore the middle character and check for lapindrome. For example gaga is a lapindrome, since the two halves ga and ga have the same characters with same frequency. Also, abccab, rotor and xyzxy are a few examples...
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;       ...
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.
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...
#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;...
If answer can be shown using a c++ program and leave comments it will be very...
If answer can be shown using a c++ program and leave comments it will be very appreciated!!! A bank charges $10 per month plus the following check fees for a commercial checking account: $0.10 each for fewer than 20 checks $0.08 each for 20-39 checks $0.06 each for 40-59 checks $0.04 each for 60 or more checks The bank also charges an extra $15.00 if the balance of the account falls below $400 (before any check fees are applied). Write...
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT