Pages
(এখানে সরান ...)
হোম
Constraints in DBMS
SQL DDL and DML Explained Simply with Examples
Key Responsibilities of a Database Administrator (DBA)
Data Integrity vs. Data Inconsistency in DBMS
DBMS Layered Architecture Made Easy
Employee DBMS: Keys & Queries Explained Simply
Library Database Design & Table Modification
Library Database Design Explained
SQL to Relational Algebra
Relational Algebra: Schema Design
Reducing Data Redundancy for Better Database Integrity
Concurrency Issues in Retail: Managing with Oracle
Analyze DBMS Schema of a Bank Management System
SQL Queries for Creating, Populating, and Retrieving Department Data of an University
SQL Operations on Student Table: Insert, Update, Delete, and Select Queries Explained
Designing Employee Table with Key SQL Constraints for Data Integrity
Oracle Aggregate Functions Explained
🔢 Oracle COUNT() Function Guide
🧩 Oracle LISTAGG() Function Tutorial
📈 Oracle MAX() Function Guide
📉 Oracle MIN() Function Guide
🔢 Oracle AVG() Function Explained
➕ Oracle SUM() Function Guide
🚦 Oracle Trigger Tutorial
⏳ Oracle BEFORE INSERT Trigger: Prevent Out-of-Stock Orders
✅ Oracle AFTER INSERT Trigger Tutorial
✏️ Oracle BEFORE UPDATE Trigger Tutorial
🔄 Oracle AFTER UPDATE Trigger Tutorial
🛑 Oracle BEFORE DELETE Trigger Tutorial
🗑️ Oracle AFTER DELETE Trigger Tutorial
▶️ Oracle Trigger Video Tutorial
Create Oracle Triggers for Inventory Billing with Tax & VAT
✅ Practice: Top Earners & Latest Hires
🧱 CREATE & ALTER TABLE in SQL with Explanation
📌 SQL Virtual Columns Tutorial
🏗 Practice: Create SQL Project Table
📚 SQL Data Types Explained
🈷️ SQL NCHAR, NVARCHAR2 & INTERVAL
🛡️ NOT NULL, UNIQUE, CHECK, and DEFAULT in SQL Explained
👉Practice: Choose Right SQL Data Types
🗝️ PRIMARY KEY vs FOREIGN KEY in SQL with CASCADE Explained
🛡️ NOT NULL, UNIQUE, CHECK, and DEFAULT in SQL Explained
Designing a Simple University Database with SQL
🗃️ Basic SQL Table Design & Data Management Tutorial
🔄 SQL MERGE (UPSERT) Tutorial
🎯 Oracle SQL Lab: Insert, Update, Delete
🌐 Oracle SQL: GTT vs PTT (Temporary Tables)
🛠️ Session-Specific Data with Oracle Temporary Tables
👁️ Oracle SQL Views: Create, Drop & Update
🔍 Oracle SQL: WITH CHECK OPTION & Inline Views
📊 Build Report Views in Oracle SQL: Practice Tutorial
📊 Build Report Views in Oracle SQL: Practice Tutorial
🚀 Oracle SQL Indexes: Create, Drop, Unique, Function-based & Bitmap
🚀 Oracle SQL Indexes: Create, Drop, Unique, Function-based & Bitmap
🎯 Practice Oracle SQL: Use Synonyms for Object Access
▼
Write a program using c/c++/java, which can calculate any kind of
equation. Implement the concept of Lexical with Semantic Analysis.
Sample input: x = (a+b)/2 + 4*b.
<< Go to Index Page >>
Write a c program to count vowel, consonant, arithmetic operator,
special character, word and sentence from a string in a file and save
the output in another file
<< Go to Index Page >>
Write a c program to count vowel, consonant, arithmetic operator,
special character, word and sentence from a string in a file and save
the output in another file
<< Go to Index Page >>
Write a c program to count word and sentence from a given string as like "I love Bangladesh."
<< Go to Index Page >>
Write a c program to count vowel and consonant from a given string as like "I love Bangladesh"
# include <stdio.h> main(){ int i , con=0 , vow=0 , space=0 , sentence=0; char ch[]="i love bangladesh."; for(i=0;ch[i]!='\0';i++){
if(ch[i]=='A' || ch[i]=='a' || ch[i]=='E' || ch[i]=='e' ||
ch[i]=='I' || ch[i]=='i' || ch[i]=='O' || ch[i]=='o' || ch[i]=='U' ||
ch[i]=='u'){ vow++; } else if(ch[i]==' '){ space++; } else if(ch[i]=='.'){ sentence++; } else{ con++; } } printf("number of consonant is : %d \n",con); printf("number of vowel is : %d \n",vow); }
<< Go to Index Page >>