Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

glibware soft solutions


{ City } 503
< Country > india
* Profession * business
User No # 125964
Total Questions Posted # 32
Total Answers Posted # 337

Total Answers Posted for My Questions # 44
Total Views for My Questions # 39050

Users Marked my Answers as Correct # 0
Users Marked my Answers as Wrong # 0
Answers / { glibware soft solutions }

Question { 858 }

What is the purpose of #pragma directives in C?


Answer

#pragma provides compiler-specific instructions.
Example:
#pragma pack(1) // Forces 1-byte alignment for structures
struct Example {
char a;
int b;
};

Is This Answer Correct ?    0 Yes 0 No

Question { 839 }

How does memset() work in C?


Answer

memset() initializes memory to a specific value.

Is This Answer Correct ?    0 Yes 0 No


Question { 892 }

What is the difference between exit() and _exit()?


Answer

• exit(): Cleans up resources (e.g., flushes buffers).
• _exit(): Terminates the program immediately without cleanup

Is This Answer Correct ?    0 Yes 0 No

Question { 814 }

What are dynamically linked and statically linked libraries?


Answer

• Static linking: Combines library code into the final executable.
• Dynamic linking: Links libraries at runtime.

Is This Answer Correct ?    0 Yes 0 No

Question { 1004 }

How does the assert() function work?


Answer

assert() checks a condition at runtime. If false, it terminates the program.

Is This Answer Correct ?    0 Yes 0 No

Question { 931 }

What is the purpose of the fflush() function in C?


Answer

fflush() clears the output/input buffer.vv

Is This Answer Correct ?    0 Yes 0 No

Question { 943 }

What is the difference between fork() and vfork()?


Answer

• fork(): Creates a child process with a separate memory space.
• vfork(): Shares the memory space with the parent until exec() or _exit() is called.

Is This Answer Correct ?    0 Yes 0 No

Question { 843 }

What are signals in C?


Answer

Signals are software interrupts used to notify a process of an event.

Is This Answer Correct ?    0 Yes 0 No

Question { 1306 }

What is the difference between UI and UX design?


Answer

UI (User Interface) focuses on the look and feel of a product, such as layout, colors, and typography. UX (User Experience) is about the overall experience a user has while interacting with the product, including usability, functionality, and accessibility.

Is This Answer Correct ?    0 Yes 0 No

Question { 1071 }

Why is UX important in product design?


Answer

Good UX improves user satisfaction, reduces friction, enhances engagement, and ensures users achieve their goals effectively. It can also reduce customer support costs and boost product adoption.

Is This Answer Correct ?    0 Yes 0 No

Question { 1071 }

Why is UX important in product design?


Answer

Good UX improves user satisfaction, reduces friction, enhances engagement, and ensures users achieve their goals effectively. It can also reduce customer support costs and boost product adoption.

Is This Answer Correct ?    0 Yes 0 No

Question { 1071 }

Why is UX important in product design?


Answer

Good UX improves user satisfaction, reduces friction, enhances engagement, and ensures users achieve their goals effectively. It can also reduce customer support costs and boost product adoption.

Is This Answer Correct ?    0 Yes 0 No

Question { 1071 }

Why is UX important in product design?


Answer

Good UX improves user satisfaction, reduces friction, enhances engagement, and ensures users achieve their goals effectively. It can also reduce customer support costs and boost product adoption.

Is This Answer Correct ?    0 Yes 0 No

Question { 905 }

What are the key principles of UI design?


Answer

• Consistency: Ensure design elements remain uniform.
• Clarity: Avoid confusion and make navigation intuitive.
• Feedback: Provide users with responses to their actions.
• Accessibility: Design for all users, including those with disabilities.
• Flexibility: Adapt designs for different screen sizes and resolutions.

Is This Answer Correct ?    0 Yes 0 No

Question { 894 }

How do you approach designing for different devices (responsive design)?


Answer

I follow a mobile-first approach, ensuring the design works on smaller screens and then scaling up for larger screens. I use flexible grids, scalable assets, and test across devices to ensure consistency.

Is This Answer Correct ?    0 Yes 0 No

Prev    1   ... 3   ... 5   ... 7   ... 9   ... 11   ... 13   ... 15   ... 17    18   [19]    20  ... 21   ... 23    Next