014.01.40.6. Describe the characteristics of TCP as a transport layer protocol and explain its popularity in networking applications. What are the key responsibilities of an application process using…
014.01.40.5. What is the purpose of the /etc/services file in relation to well-known port numbers, and how does it translate these port numbers into names?
014.01.40.4. How can you identify and view the open TCP connections on a Linux machine using the netstat command? Provide an example of interpreting netstat output related to TCP connections.
Basically Storage class are Part of declaration Specifier that control the Linkage, Storage Duration and Memory Location.
There are basically four type of storage classautoexternregisterstaticAs all…
This is an example of code that uses the friend function to make the (d3 = 10.1 + d1) '+' operator overloading permissible.
#include
class MyClass {private: double value;
public: MyC…
A virtual function is a member function declared in a base class and redefined (overridden) by a derived class. When referencing a derived class object using a pointer or reference to the base class,…
Iam inserting a node in the tree, while inserting , after n = 1, no further allocation is being done rather the previously allocated nodes are getting overwritten.
Below is the code:-#include"h…
I'm facing a glibc error in my C program while creating a binary tree. The issue occurs during the allocation of memory for a node in creatNode.c. The error points to malloc.c:2593 and includes …
In the project "Client-Server Communication using IPC and Threads", before the Vendor sends the latest result to the shared memory, the processRequest() function reads the result as if the …
In the LMS Project, after inserting an entry into the Book class, if I am updating the count by moving the offset to the beginning, reading the current count, and then overwriting the updated value o…
Pipe :
Purpose: Inter-process communication (IPC) within the same system.Functionality: Unidirectional data flow, like a virtual pipeline.Descriptors: Two file descriptors, one for reading and one fo…
In C programming, strcpy() and strncpy() are both functions used for string manipulation, but they have some key differences:
strcpy(destination, source):
Copies the entire source string to the desti…
After implementing thread in server.c to call the process request(), My server is now unable to open process request() . Here is the code reference:while(1) { ret = pthread_cre…
NULL is a macro, which is typically defined as (void *(0)), and it is used to represent a null pointer by assigning the literal 0. However, one drawback of using NULL is that it is not type-safe. In …
After converting adder() into thread function, followed by reading the request from pipe, I have to release the thread semaphore created inside the auxiliary shared memory using the sem_post but I am…
Members of a structure in C have public visibility by default while in C++ they have private visibility by default.
Apart from that, are there any more differences in structure between C and C++? If …
using namespace std;class MyCounter{ private: int count; public: MyCounter(); MyCounter(int); int display(); MyCounter operator++(); // PreFix version …
In C++, we can use references to pass and return values from functions. Let's explore this concept with an example:#include using namespace std;int& fun(int &a){ cout
Q. Is it always necessary that makefile should be saved as by the name "Makefile" in the directory? If try to save it with a different name, throws an error "make: Nothing to be done f…
I declared variable int count as "static" in declarations.h file, Now on creating each Node in a LinkList I am incrementing the value of count in the creatNode() and the incremented count i…
Race Condition: A race condition is realized when more than one thread tries to write to the same variable simultaneously. Since we don't know which thread will access the variable first, we ca…
Let us try to understand that why we need Smart Pointers...
Consider the following codes given below :
Code-1 (Using Raw Pointer):
#include
void allocateMemory(int*& rawPtr){ // Allocate mem…
Ioctl refers to input output control, in driver we have created a routine for different ioctl command, which involve operations such as : DEVRESET, GETREGSIZE, GETDEVICESIZE, GETDATASIZE .
Any query, suggestion, discussion related to following topics... are welcome here...Measuring-CPU-TimeResources-MonitoringAdjusting-Process-PrioritiesMeasuring-CPU-Performance-with-Load-AveragesMonit…
home/ayaz/cdd_01/initFunc.c:8:23: error: conflicting types for ‘fops’; have ‘struct file_operation’ 8 | struct file_operation fops; | ^~~~In file included from /home/aya…
When we execute an elf (executable and linkable format) file which is stored in secondary storage, it is brought into the main memory (RAM) by an OS component called Loader. When a program comes into…
ls: cannot access '*.h,v': No such file or directory
I am not able to understand what causing this error
below is my script
#! /bin/bash
checkIn()
{
for file in $(ls *.h) $(ls…
Why I am getting this error while opening the file in vim editor?
E325: ATTENTIONFound a swap file by the name ".long.c.swp"
owned by: akash dated: Thu Jul 13 23:15:20 2023
…
warning: implicit declaration of function ‘firstArray’; did you mean ‘getArray’? [-Wimplicit-function-declaration] 9 | ptr1=firstArray(); | ^~~~~~~~~~
what this warning …
Q- What is process context? Describe it and associated task structure in detail.Ans- Process context consists of 4 segments mainly which are:-The process starts from a low address (greater than NULL)…
Q- What is process context? Describe it and associated task structure in detail.Ans- Process context consists of 4 segments mainly which are:-
The process starts from a low address (greater than NUL…
I was executing a program given in the notes, this was the error that occured:-Below is the code:-#include
using namespace std;
class B{
public:
virtual void m1()
{
cout
This is the error encountered:-parameterisedConstructor.cpp: In constructor ‘Time::Time(int, int, int, int, int, int)’:
parameterisedConstructor.cpp:3:62: error: expected ‘(’ before ‘.’ token
3 |…
I was building my project and these are the errors that occured:-
server.c:-
#include"../Comman/headers.h"
2 #include"../Comman/dataStruct.h"
3 #include"declerations.h&qu…
Iam getting this error while using cast:-
const_cast.cpp: In function ‘int main()’:
const_cast.cpp:6:15: error: expected ‘’ before ‘(’ token
const_cast.cpp:8:20: error: expected ‘’ before ‘(’ token
T…
I was executing a code given in the notes, but I thinke there's some more to add into it:-define _GNU_SOURCE
#include
#include
#include
#include
#include
#define CHILD 1
#define PARENT 2
#define…
A zombie process is created when the parent process gets executed much longer than the child, resulting in abnormal termination of child by the process having PID 1 or the init . Zombie processes mus…
Copy on write,basically implies that when a fork is done, it is assumed that the parent's VAS is copied to the process, but it is not the actual case, as if it was like that, it would be creatin…
I am working on c++ assignment 5, and am getting infinite loop there:-,here is the code for main:-#include"headers.h"
#include"declarations.h"
int main(){
Convert c1;
Convert c2(…